-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
66 lines (62 loc) · 1.95 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[workspace]
members = [
"faux-mgs",
"gateway-messages",
"gateway-sp-comms",
"xtask",
]
default-members = [
"faux-mgs",
"gateway-messages",
"gateway-sp-comms",
]
resolver = "2"
[workspace.dependencies]
tlvc = { git = "https://github.com/oxidecomputer/tlvc.git", branch = "main" }
hubtools = { git = "https://github.com/oxidecomputer/hubtools.git", branch = "main"}
slog-error-chain = { git = "https://github.com/oxidecomputer/slog-error-chain.git", branch = "main", features = ["derive"] }
anyhow = "1.0"
async-trait = "0.1"
backoff = { version = "0.4.0", features = ["tokio"] }
bitflags = "2.6.0"
camino = "1.1.9"
clap = { version = "4.5", features = ["derive", "env"] }
futures = "0.3.31"
fxhash = "0.2.1"
glob = "0.3.1"
hex = "0.4.3"
hubpack = "0.1.2"
humantime = "2.1.0"
lru-cache = "0.1.2"
nix = { version = "0.27.1", features = ["net"] }
omicron-zone-package = "0.11.0"
once_cell = "1.20.2"
paste = "1.0.15"
rand = "0.8.5"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde-big-array = "0.5.1"
serde_json = "1.0.132"
serde_repr = { version = "0.1" }
sha2 = "0.10"
slog = { version = "2.7", features = ["max_level_trace", "release_max_level_trace"] }
slog-async = "2.8"
slog-term = "2.9"
smoltcp = { version = "0.9", default-features = false, features = ["proto-ipv6"] }
socket2 = "0.5.7"
ssh-agent-client-rs = "0.9.1"
ssh-key = { version = "0.6.7", features = ["p256"] }
static_assertions = "1.1.0"
strum_macros = "0.25"
string_cache = "0.8.7"
termios = "0.3"
thiserror = "1.0.67"
tokio = { version = "1.29", features = ["full"] }
tokio-stream = { version = "0.1", features = ["fs"] }
tokio-util = { version = "0.7", features = ["compat"] }
usdt = "0.5.0"
uuid = { version = "1.11", default-features = false }
version_check = "0.9.5"
zerocopy = "0.6.6"
zip = { version = "0.6.6", default-features = false, features = ["deflate", "bzip2"] }
gateway-messages.path = "gateway-messages"
gateway-sp-comms.path = "gateway-sp-comms"