-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (37 loc) · 881 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
37
38
39
40
[workspace]
members = [
"cmd/bridgectl",
"cmd/catlog",
"cmd/findbridge",
"cmd/getbridgeconfig",
"cmd/mionps",
"cmd/mionparamspace",
"cmd/setbridgeconfig",
"pkg/cat-dev",
"pkg/log",
]
resolver = "3"
[workspace.dependencies]
bytes = "^1.9.0"
fnv = "^1.0.7"
futures = "^0.3.31"
mac_address = "^1.1.7"
miette = { version = "^7.4.0", features = ["fancy"] }
network-interface = "^2.0.0"
time = "^0.3.37"
tracing = { version = "^0.1.41", features = ["valuable"] }
tokio = { version = "^1.43.0", features = ["full", "tracing"] }
valuable = { version = "^0.1.0", features = ["derive"] }
[workspace.package]
authors = ["Cynthia <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/rem-verse/sprig"
version = "0.0.8"
[profile.release]
codegen-units = 1
opt-level = 3
lto = "fat"
panic = "abort"
split-debuginfo = "packed"
strip = "none"