-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (85 loc) · 2.5 KB
/
Cargo.toml
File metadata and controls
88 lines (85 loc) · 2.5 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
[workspace]
members = [
"cli",
"integration-tests",
"mock-server",
"sdk",
"sdk-httpmock",
"test-common",
"xtask",
]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.102"
assert_cmd = "2.2.0"
async-trait = "0.1.89"
base64 = "0.22.1"
built = { version = "0.8.0", features = ["git2"] }
bytes = "1.11.1"
camino = { version = "1.2", features = ["serde1"] }
chrono = { version = "0.4.44", features = ["serde"] }
clap = { version = "4.6.0", features = ["derive", "string", "env", "wrap_help", "unstable-ext"] }
clap_complete = "4.6.0"
colored = "3.1.1"
crossterm = { version = "0.29.0", features = [ "event-stream" ] }
dialoguer = "0.12.0"
dirs = "6.0.0"
dropshot = "0.17.0"
env_logger = "0.11.10"
expectorate = { version = "1.2.0", features = ["predicates"] }
flume = "0.12.0"
futures = "0.3.32"
http = "1.4.0"
httpmock = "0.8.3"
humantime = "2.3.0"
indicatif = "0.18.4"
libc = "0.2.184"
log = "0.4.29"
md5 = "0.8.0"
newline-converter = "0.3.0"
oauth2 = { version = "5.0.0", default-features = false }
oauth2-reqwest = "0.1.0-alpha.3"
open = "5.3.3"
oxide = { path = "sdk", version = "0.16.0" }
oxide-httpmock = { path = "sdk-httpmock", version = "0.16.0" }
oxnet = "0.1.4"
predicates = "3.1.4"
pretty_assertions = "1.4.1"
progenitor = { git = "https://github.com/oxidecomputer/progenitor", default-features = false }
progenitor-client = "0.13.0"
rand = "0.9.2"
ratatui = "0.30.0"
rcgen = { version = "0.14.7", features = ["pem"] }
regex = "1.12.3"
regress = "0.11.1"
reqwest = "0.13.2"
rustc_version = "0.4.1"
rustfmt-wrapper = "0.2.1"
schemars = { version = "0.8.20", features = ["chrono", "uuid1"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.149"
similar = "3.0.0"
support-bundle-viewer = "0.1.2"
tabwriter = "1.4.1"
thiserror = "2.0.18"
tempfile = "3.27.0"
test-common = { path = "test-common" }
thouart = { git = "https://github.com/oxidecomputer/thouart" }
tokio = { version = "1.51.0", features = ["full"] }
tokio-util = "0.7.18"
toml = "1.0.7"
toml_edit = "0.25.8"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json"] }
url = "2.5.8"
uuid = { version = "1.23.0", 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."crates-io"]
#progenitor-client = { path = "../progenitor/progenitor-client" }
#[patch."https://github.com/oxidecomputer/typify"]
#typify = { path = "../typify/typify" }