mirror of
https://github.com/moghtech/komodo.git
synced 2025-12-05 19:17:36 -06:00
* Add webhooks page to docs * supports * supports * periphery Dockerfile * add comments. Remove unneeded default config * add FILE SYSTEM log * remove log * filter disks included in periphery disk report, on periphery side * dockerized periphery * all in one compose file docs * remove some unused deps
69 lines
1.7 KiB
TOML
69 lines
1.7 KiB
TOML
[package]
|
|
name = "monitor_core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "core"
|
|
path = "src/main.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# local
|
|
monitor_client = { workspace = true, features = ["mongo"] }
|
|
periphery_client.workspace = true
|
|
formatting.workspace = true
|
|
logger.workspace = true
|
|
git.workspace = true
|
|
# mogh
|
|
serror = { workspace = true, features = ["axum"] }
|
|
merge_config_files.workspace = true
|
|
async_timing_util.workspace = true
|
|
partial_derive2.workspace = true
|
|
derive_variants.workspace = true
|
|
mongo_indexed.workspace = true
|
|
resolver_api.workspace = true
|
|
toml_pretty.workspace = true
|
|
run_command.workspace = true
|
|
mungos.workspace = true
|
|
slack.workspace = true
|
|
svi.workspace = true
|
|
# external
|
|
ordered_hash_map.workspace = true
|
|
urlencoding.workspace = true
|
|
aws-sdk-ec2.workspace = true
|
|
aws-sdk-ecr.workspace = true
|
|
aws-config.workspace = true
|
|
tokio-util.workspace = true
|
|
axum-extra.workspace = true
|
|
tower-http.workspace = true
|
|
serde_json.workspace = true
|
|
serde_yaml.workspace = true
|
|
typeshare.workspace = true
|
|
octorust.workspace = true
|
|
tracing.workspace = true
|
|
reqwest.workspace = true
|
|
futures.workspace = true
|
|
nom_pem.workspace = true
|
|
anyhow.workspace = true
|
|
dotenvy.workspace = true
|
|
bcrypt.workspace = true
|
|
base64.workspace = true
|
|
tokio.workspace = true
|
|
serde.workspace = true
|
|
regex.workspace = true
|
|
axum.workspace = true
|
|
toml.workspace = true
|
|
uuid.workspace = true
|
|
envy.workspace = true
|
|
rand.workspace = true
|
|
hmac.workspace = true
|
|
sha2.workspace = true
|
|
jwt.workspace = true
|
|
hex.workspace = true
|