forked from SPIN-UMass/censorlab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (47 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
53 lines (47 loc) · 1.46 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "censorlab"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitvec = "1.0"
byteorder = "1.4"
clap = { version = "4", features = ["cargo", "derive"] }
coz = "0.1"
dns-parser = "0.8.0"
# epoll = {version = "4.3" }
fnv = "1.0"
if-addrs = "0.15"
iptables = "0.5"
lalrpop-util = { version = "0.21", features = ["lexer", "unicode"] }
libc = "*"
mac_address = "1.1"
ndarray = "0.17"
nfq = "0.2"
num = "0.4"
ort = { version = "=2.0.0-rc.11", default-features = false, features = ["alternative-backend", "ndarray", "std"] }
ort-tract = "0.2"
pcap-parser = "0.16"
procfs = "0.16"
regex = "1.10"
rustpython-vm = { git = "https://github.com/RustPython/RustPython", features=["jit"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = "3"
smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", branch="main", default-features=false, features=["proto-ipv4", "proto-ipv6", "std", "medium-ethernet", "medium-ip", "phy-raw_socket", "socket-raw"] }
tls-parser = "0.12"
thiserror = "1"
tokio = {version="1.40", features=["fs", "io-util", "macros", "net", "rt", "rt-multi-thread", "signal", "sync", "time"]}
tokio-byteorder = "0.3"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["env-filter"] }
[build-dependencies]
lalrpop = "0.21"
[features]
default = []
wire = []
[dev-dependencies]
tempfile = "3"
[profile.release]
debug = 1