Working on better plotting

This commit is contained in:
Martino Ferrari
2026-04-12 16:20:44 +02:00
parent 1a39b3a54e
commit 41410e4e3d
10 changed files with 2088 additions and 1064 deletions
+16 -17
View File
@@ -1,36 +1,35 @@
[workspace]
resolver = "2"
members = [
"rmon-common",
"rmon-agent",
"rmon-common",
"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"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
toml = "0.8"
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"
futures = "0.3"
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"
uuid = { version = "1.7", features = ["v4"] }
egui_tiles = "0.10"
eframe = "0.29"
egui = "0.29"
egui_plot = "0.29"
chrono = "0.4"
itertools = "0.12"
byteorder = "1.5"
bytes = "1.5"
bincode = "1.3"
rmon-common = { path = "rmon-common" }