-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (27 loc) · 979 Bytes
/
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
[package]
name = "parse-tcp"
description = "tcp reassembler"
version = "0.1.0"
repository = "https://github.com/hellomouse/kinesin"
edition = "2021"
authors = ["iczero <[email protected]>"]
license = "MPL-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.7", features = ["derive"] }
color-eyre = "0.6.2"
crossbeam-channel = "0.5.8"
etherparse = "0.15.0"
eyre = "0.6.8"
kinesin-rdt = { version = "0.1.1", path = '../kinesin-rdt' }
libc = "0.2.147"
parking_lot = "0.12.1"
pcap-parser = "0.15.0"
# pcap-parser = { path = '../../pcap-parser' }
# pcap-parser = { git = "https://github.com/iczero/pcap-parser", branch = "unexpected-eof" }
serde = { version = "1.0.185", features = ["derive"] }
serde_json = "1.0.105"
tracing = "0.1.37"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
uuid = { version = "1.4.1", features = ["v4", "serde"] }