bf2915d8bd
- tokio 'time' feature needed for tokio::time::interval in retransmit timer - SendState::new and RecvState::new must be pub for use from main.rs - prefix unused tx param with underscore
18 lines
373 B
TOML
18 lines
373 B
TOML
[package]
|
|
name = "gatuna"
|
|
version = "2.0.0"
|
|
edition = "2021"
|
|
license = "CC0-1.0"
|
|
|
|
[[bin]]
|
|
name = "gatunad"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "sync", "io-util", "time"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
pnet_datalink = "0.35"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|