21 lines
789 B
TOML
21 lines
789 B
TOML
[package]
|
|
name = "tcp-test"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
pcap-sys = { path = "../../pcap-sys" }
|
|
packets = { path = "../../packets" }
|
|
nl-sys = { path = "../../nl-sys" }
|
|
rand = "0.8.5"
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
anyhow = "1.0.75"
|
|
tokio-stream = { version = "0.1.14", features = ["full"] }
|
|
#smoltcp = { version = "0.10", features = ["socket-tcp", "phy-raw_socket", "std", "async", "medium-ethernet", "proto-ipv4", "reassembly-buffer-size-65536", "fragmentation-buffer-size-65536", "proto-ipv4-fragmentation", "log", "verbose"] }
|
|
libc = "0.2.148"
|
|
log = { version = "0.4.20", features = [ "kv_unstable" ] }
|
|
simple_logger = "4.2.0"
|
|
ringbuf = "0.3.3"
|