-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (38 loc) · 955 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
41
42
43
44
[workspace]
members = [
"adm",
"common",
"lldpd-client",
"lldpd",
"xtask",
]
resolver = "2"
[workspace.dependencies]
# intra-package dependencies
lldpd-client = { path = "lldpd-client" }
common = { path = "common" }
# oxide dependencies from github
omicron-zone-package = "0.11.1"
# public dependencies from crates.io
anyhow = "1.0"
camino = { version = "1.1", features = ["serde1"] }
chrono = "0.4"
dropshot = "0.10.0"
futures = "0.3"
http = "0.2.9"
progenitor = "0.8.0"
reqwest = "0.12"
schemars = "0.8"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
signal-hook = "0.3"
signal-hook-tokio = { version = "0.3", features = [ "futures-v0_3" ] }
slog = { version = "2.7", features = [ "release_max_level_debug", "max_level_trace" ] }
slog-async = "2.6"
slog-bunyan = "2.4"
slog-term = "2.6"
structopt = "0.3"
thiserror = "1.0"
tokio = { version = "1.38.1", features = ["full"]}
uuid = { version = "1.10.0" }