forked from NEWSLabNTU/ddshark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (35 loc) · 1.03 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "ddshark"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = { version = "1.0.72", features = ["backtrace"] }
clap = { version = "4.3.17", features = ["derive"] }
crossterm = "0.26.1"
flume = "0.10.14"
hex = "0.4.3"
itertools = "0.11.0"
serde = { version = "1.0.173", features = ["derive"] }
tracing = "0.1.37"
rustdds = { path = "RustDDS" }
pcap = { version = "1.1.0", features = ["capture-stream"] }
bytes = "1.4.0"
etherparse = "0.13.0"
opentelemetry = "0.19.0"
opentelemetry_api = { version = "0.19.0", features = ["metrics"] }
opentelemetry_sdk = { version = "0.19.0", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.12.0", features = ["tonic", "metrics"] }
opentelemetry-semantic-conventions = "0.11.0"
libc = "0.2"
gethostname = "0.4.3"
mac_address = "1.1.5"
ratatui = "0.22.0"
tracing-subscriber = "0.3.17"
rbtree-defrag-buffer = "0.1.0"
chrono = "0.4.31"
csv = "1.3.0"
futures = "0.3.29"
tokio = { version = "1.33.0", features = ["rt-multi-thread"] }
tokio-util = "0.7.10"
ctrlc = "3.4.1"
[dev-dependencies]