-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
119 lines (110 loc) · 3.7 KB
/
Cargo.toml
File metadata and controls
119 lines (110 loc) · 3.7 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[workspace]
members = [
"aal",
"asic",
"aal_macros",
"common",
"dpd",
"dpd-api",
"dpd-client",
"dpd-types",
"dropshot-apis",
"packet",
"pcap",
"swadm",
"tfportd",
"uplinkd",
"xtask",
]
resolver = "2"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[workspace.dependencies]
# intra-package dependencies
aal = { path = "aal" }
aal_macros = { path = "aal_macros" }
asic = { path = "asic" }
dpd-api = { path = "dpd-api" }
dpd-client = { path = "dpd-client" }
dpd-types = { path = "dpd-types" }
common = { path = "common" }
packet = { path = "packet" }
pcap = { path = "pcap" }
# oxide dependencies from github
internal-dns-resolver = { git = "https://github.com/oxidecomputer/omicron", branch = "main" }
internal-dns-types = { git = "https://github.com/oxidecomputer/omicron", branch = "main" }
ispf = { git = "https://github.com/oxidecomputer/ispf" }
gateway-client = { git = "https://github.com/oxidecomputer/omicron", branch = "main" }
gateway-types = { git = "https://github.com/oxidecomputer/omicron", branch = "main" }
libnet = { git = "https://github.com/oxidecomputer/netadm-sys" }
nexus-client = { git = "https://github.com/oxidecomputer/omicron", branch = "main" }
omicron-common = { git = "https://github.com/oxidecomputer/omicron", branch= "main" }
oximeter = { git = "https://github.com/oxidecomputer/omicron", branch = "main" }
oximeter-producer = { git = "https://github.com/oxidecomputer/omicron", branch = "main" }
oximeter-instruments = { git = "https://github.com/oxidecomputer/omicron", branch = "main", default-features = false, features = ["kstat"] }
oxnet = { version = "0.1.4", default-features = false, features = ["schemars", "serde"] }
propolis = { git = "https://github.com/oxidecomputer/propolis" }
smf = { git = "https://github.com/illumos/smf-rs" }
softnpu-lib = { git = "https://github.com/oxidecomputer/softnpu" , package = "softnpu" , branch = "main"}
tofino = { git = "https://github.com/oxidecomputer/tofino", branch = "main" }
transceiver-controller = { git = "https://github.com/oxidecomputer/transceiver-control", branch = "main" }
# public dependencies from crates.io
anyhow = "1.0"
bytes = "1.6"
camino = { version = "1.1", features = ["serde1"] }
cfg-if = "1"
chrono = "0.4"
clap = { version = "4.6", features = [ "derive" ] }
colored = "3"
csv = "1.3"
curl = "0.4"
display-error-chain = "0.2"
dropshot = "0.16.7"
dropshot-api-manager = "0.5.2"
dropshot-api-manager-types = "0.5.2"
expectorate = "1"
futures = "0.3"
http = "1.4.0"
humantime = "2.3"
kstat-rs = "0.2.4"
lazy_static = "1.5"
libc = "0.2"
mockall = "0.13.1"
omicron-zone-package = "0.12"
openssl = "0.10"
oxide-tokio-rt = "0.1.2"
parking_lot = "0.12"
pretty_assertions = "1.4"
proc-macro2 = "1.0"
progenitor = "0.13"
rand = "0.9"
regex = "1.12"
regress = "0.10"
reqwest = { version = "0.13", default-features = false }
reqwest012 = { package = "reqwest", version = "0.12", default-features = false }
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.8"
slog-bunyan = "2.5"
slog-term = "2.9"
socket2 = { version = "0.6", features = ["all"] }
strum = { version = "0.27", features = [ "derive" ] }
syn = { version = "2.0", features = ["extra-traits"]}
tabwriter = { version = "1", features = ["ansi_formatting"] }
thiserror = "1.0"
tokio = "1.37"
toml = "0.9"
usdt = "0.6"
uuid = { version = "1.10", features = [ "v4", "serde" ] }
internet-checksum = "0.2"
#
# It's common during development to use a local copy of various complex
# dependencies. If you want to use those, uncomment one of these blocks.
#