-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 869 Bytes
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 869 Bytes
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
[package]
name = "usnetd"
version = "0.1.0"
authors = ["Kai Lüke <kailueke@riseup.net>"]
license = "MIT"
[lib]
name = "libusnetd"
path = "src/lib.rs"
[[bin]]
name = "usnetd"
path = "src/main.rs"
[dependencies]
smoltcp = "0.7"
byteorder = { version = "1.0", default-features = false }
usnet_devices = { git = "https://github.com/ANLAB-KAIST/usnet_devices" }
log = { version = "0.4.0", features = ["release_max_level_debug"] }
env_logger = "0.5.10"
hashbrown = "0.1"
nix = "0.11.0"
serde = "1.0.53"
serde_derive = "1.0.53"
serde_json = "1.0.17"
dotenv = { git = "https://github.com/apiraino/rust-dotenv", rev = "5cfd95025b8e38de76937cfca525562115396ae2" }
clap = "2.31.2"
ctrlc = { version = "3.0", features = ["termination"] }
lazy_static = "1.1.0"
[features]
default = []
pcap = []
netmap = ["usnet_devices/netmap"]
[profile.release]
codegen-units = 1
lto = true