-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
88 lines (87 loc) · 2.35 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[workspace]
members = [
"agent",
"bin",
"bunyan",
"client",
"common",
"database",
"download",
"factory/aws",
"factory/lab",
"factory/propolis",
"github/client",
"github/database",
"github/dbtool",
"github/ghtool",
"github/hooktypes",
"github/server",
"github/testdata",
"server",
"sse",
"types",
"xtask",
]
resolver = "2"
[workspace.dependencies]
ansi-to-html = { version = "0.2", features = [ "lazy-init" ] }
anyhow = "1"
aws-config = "1"
aws-credential-types = "1"
aws-sdk-ec2 = "1"
aws-sdk-s3 = "1"
aws-types = "1"
base64 = "0.22"
bytes = "1.1"
chrono = { version = "0.4", features = [ "serde" ] }
dirs-next = "2"
dropshot = { git = "https://github.com/oxidecomputer/dropshot" }
futures = "0.3"
futures-core = "0.3"
getopts = "0.2"
glob = "0.3"
hiercmd = { git = "https://github.com/jclulow/hiercmd" }
hmac-sha256 = "1"
html-escape = "0.2"
http = "0.2"
http-range = "0.1"
hyper = "0.14"
ipnet = "2.8"
jmclib = { git = "https://github.com/jclulow/rust-jmclib", features = ["sqlite"] }
libc = "0.2.113"
new_mime_guess = "4"
octorust = { git = "https://github.com/oxidecomputer/third-party-api-clients", branch = "jclulow" }
pem = "2"
percent-encoding = "2.1"
progenitor = { git = "https://github.com/oxidecomputer/progenitor" }
rand = "0.8"
regex = "1"
reqwest = { version = "0.11", features = [ "json", "stream" ] }
rust-toolchain-file = "0.1"
rusty_ulid = "1"
schemars = { version = "0.8", features = [ "chrono" ] }
sea-query = { version = "0.30", default-features = false, features = [ "derive", "attr", "backend-sqlite" ] }
sea-query-rusqlite = "0.5"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
serde_repr = "0.1"
serde_urlencoded = "0.7"
serde_with = "1.10"
serde_yaml = "0.9"
sigpipe = "0.1"
slog = { version = "2.7", features = [ "release_max_level_debug" ] }
slog-bunyan = "2.4"
slog-term = "2.7"
smf = { git = "https://github.com/illumos/smf-rs.git" }
strip-ansi-escapes = "0.2"
strum = { version = "0.25", features = [ "derive" ] }
tempfile = "3.3"
thiserror = "1"
tlvc = { git = "https://github.com/oxidecomputer/tlvc", version = "0.3.1" }
tlvc-text = { git = "https://github.com/oxidecomputer/tlvc", version = "0.3.0" }
tokio = { version = "1", features = [ "full" ] }
tokio-stream = "0.1"
tokio-util = { version = "0.6.9", features = [ "io" ] }
toml = "0.8"
usdt = "0.5"
zone = { version = "0.3", features = [ "async" ], default-features = false }