-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
75 lines (72 loc) · 2.05 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
[workspace]
members = [
"cli",
"integration-tests",
"sdk",
"sdk-httpmock",
"test-common",
"xtask",
]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.95"
assert_cmd = "2.0.16"
async-trait = "0.1.86"
base64 = "0.22.1"
built = { version = "0.7.5", features = ["git2"] }
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "4.5.27", features = ["derive", "string", "env", "wrap_help"] }
clap_complete = "4.5.44"
colored = "2.2.0"
crossterm = { version = "0.27.0", features = [ "event-stream" ] }
dialoguer = "0.10.4"
dirs = "4.0.0"
dropshot = "0.13.0"
env_logger = "0.10.2"
expectorate = { version = "1.1.0", features = ["predicates"] }
futures = "0.3.31"
httpmock = "0.7.0"
humantime = "2"
indicatif = "0.17"
libc = "0.2.169"
log = "0.4.25"
md5 = "0.7.0"
newline-converter = "0.3.0"
oauth2 = "5.0.0"
open = "4.2.0"
oxide = { path = "sdk", version = "0.9.0" }
oxide-httpmock = { path = "sdk-httpmock", version = "0.9.0" }
oxnet = { git = "https://github.com/oxidecomputer/oxnet" }
predicates = "3.1.3"
pretty_assertions = "1.4.1"
progenitor = { git = "https://github.com/oxidecomputer/progenitor", default-features = false }
progenitor-client = "0.9.1"
rand = "0.8.5"
ratatui = "0.26.3"
rcgen = "0.10.0"
regex = "1.11.1"
regress = "0.10.3"
reqwest = "0.12.12"
rustfmt-wrapper = "0.2.1"
schemars = { version = "0.8.20", features = ["chrono", "uuid1"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
similar = "2.7.0"
tabwriter = "1.4.1"
thiserror = "2.0.11"
tempfile = "3.16.0"
test-common = { path = "test-common" }
thouart = { git = "https://github.com/oxidecomputer/thouart" }
tokio = { version = "1.43.0", features = ["full"] }
toml = "0.8.19"
toml_edit = "0.22.23"
url = "2.5.4"
uuid = { version = "1.12.1", features = ["serde", "v4"] }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
#[patch."https://github.com/oxidecomputer/progenitor"]
#progenitor = { path = "../progenitor/progenitor" }
#[patch."https://github.com/oxidecomputer/typify"]
#typify = { path = "../typify/typify" }