Initial working implementation (MVP)

This commit is contained in:
Martino Ferrari
2026-04-11 21:11:15 +02:00
parent dca378b5ef
commit 1a39b3a54e
35 changed files with 7457 additions and 147 deletions
+36
View File
@@ -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" }