-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
36 lines (30 loc) · 843 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
30
31
32
33
34
35
36
[package]
name = "trafficengine"
version = "0.2.11"
authors = ["Rainer Stademann <[email protected]>"]
[lib]
name = "traffic_lib"
path = "src/lib.rs"
[[bin]]
name = "trafficengine"
path = "src/bin.rs"
[dependencies]
# we are using here e2de from branch e2d2-rs-v1 of https://github.com/rstade/NetBricks
e2d2 = { version = "=1.0.7", path = "../../work/NetBricks/framework", features = ["performance"] }
netfcts={ version="0.2.2", path = "../netfcts" }
fnv = "*"
log = ">=0.4"
env_logger = ">=0.5"
ctrlc = { version = ">=3.1", features = ["termination"] }
time = ">=0.1.0"
toml = "~0.4"
separator = ">= 0.3"
serde = "1.0"
serde_derive = ">=1.0"
eui48 = { version= ">=0.4", features=["serde"] }
uuid = { version = ">=0.7", features = ["v4", "serde"] }
bincode = "*"
serde_json = "*"
ipnet = ">=1.0"
[features]
profiling =[]