mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-07 13:32:57 +00:00
32 lines
778 B
TOML
32 lines
778 B
TOML
[package]
|
|
name = "vm_monitor"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "vm-monitor"
|
|
path = "./src/bin/monitor.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
axum.workspace = true
|
|
clap.workspace = true
|
|
futures.workspace = true
|
|
inotify.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sysinfo.workspace = true
|
|
tokio.workspace = true
|
|
tokio-postgres.workspace = true
|
|
tokio-stream.workspace = true
|
|
tokio-util.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
workspace_hack = { version = "0.1", path = "../../workspace_hack" }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
cgroups-rs = "0.3.3"
|