-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (36 loc) · 732 Bytes
/
Cargo.toml
File metadata and controls
37 lines (36 loc) · 732 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
[workspace]
members = [
"names",
"graph",
"packet",
"sched",
"fwd",
"log",
"counters",
"perf",
"api",
"msg",
"dpdk",
"main",
"ffis/dpdk",
"unix/socket",
"unix/epoll",
"unix/efd",
"unix/shm",
"gnodes/layer2/eth/decap",
"gnodes/layer2/eth/encap",
"gnodes/layer3/ipv4/parse",
"gnodes/layer3/ipv4/fwd",
"gnodes/interface",
"apis/log",
"apis/interface",
"apis/route",
"utils/r2cnt",
"utils/r2intf",
"utils/r2log",
"utils/r2rt",
]
# The development profile, used for `cargo build`
[profile.dev]
opt-level = 0 # Controls the --opt-level the compiler builds with
debug = true # Controls whether the compiler passes `-g`