Initial working implementation (MVP)
This commit is contained in:
+36
@@ -0,0 +1,36 @@
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = [
|
||||
"rmon-common",
|
||||
"rmon-agent",
|
||||
"rmon-ui",
|
||||
]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["RMon Team"]
|
||||
license = "MIT"
|
||||
|
||||
[workspace.dependencies]
|
||||
anyhow = "1.0"
|
||||
bincode = "1.3"
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
tokio = { version = "1.36", features = ["full"] }
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
toml = "0.8"
|
||||
futures = "0.3"
|
||||
bytes = "1.5"
|
||||
itertools = "0.12"
|
||||
thiserror = "1.0"
|
||||
byteorder = "1.5"
|
||||
async-trait = "0.1"
|
||||
tokio-util = { version = "0.7", features = ["codec"] }
|
||||
regex = "1.10"
|
||||
notify = "6.1"
|
||||
clap = { version = "4.4", features = ["derive"] }
|
||||
tempfile = "3.10"
|
||||
libc = "0.2"
|
||||
rmon-common = { path = "rmon-common" }
|
||||
Reference in New Issue
Block a user