Files
tcptop/Cargo.toml
Zachary D. Rowitsch f3ce244b5d test(03-01): add failing CSV writer tests (TDD RED)
- Add serde, csv, chrono workspace deps; tempfile dev-dep
- Add csv_writer module stub to lib.rs
- Create 6 CSV tests: header, field count, overwrite, timestamp consistency, rate precision, state/rtt
2026-03-22 00:48:54 -04:00

24 lines
727 B
TOML

[workspace]
members = ["tcptop", "tcptop-common", "tcptop-ebpf"]
default-members = ["tcptop"]
resolver = "2"
[workspace.dependencies]
aya = { version = "0.13.1", features = ["async_tokio"] }
aya-log = "0.2"
tokio = { version = "1", features = ["full"] }
anyhow = "1"
thiserror = "2"
clap = { version = "4.6", features = ["derive"] }
log = "0.4"
env_logger = "0.11"
nix = { version = "0.29", features = ["user"] }
procfs = "0.18"
signal-hook = "0.3"
ratatui = { version = "0.30.0", features = ["crossterm"] }
crossterm = { version = "0.29.0", features = ["event-stream"] }
futures = "0.3"
serde = { version = "1", features = ["derive"] }
csv = "1.4"
chrono = { version = "0.4", default-features = false, features = ["clock"] }