-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
93 lines (89 loc) · 2.52 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
89
90
91
92
93
[workspace]
members = [
"cli",
"sdk",
"sdk-httpmock",
"test-common",
"xtask",
]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.93"
assert_cmd = "2.0.16"
async-trait = "0.1.83"
base64 = "0.22.1"
built = { version = "0.7.5", features = ["git2"] }
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.21", features = ["derive", "string", "env", "wrap_help"] }
clap_complete = "4.5.38"
colored = "2.1.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.6.8"
humantime = "2"
indicatif = "0.17"
libc = "0.2.167"
log = "0.4.22"
md5 = "0.7.0"
newline-converter = "0.3.0"
oauth2 = "5.0.0-rc.1"
open = "4.2.0"
oxide = { path = "sdk", version = "0.8.0" }
oxide-httpmock = { path = "sdk-httpmock", version = "0.8.0" }
oxnet = { git = "https://github.com/oxidecomputer/oxnet" }
predicates = "3.1.2"
pretty_assertions = "1.4.1"
progenitor = { git = "https://github.com/oxidecomputer/progenitor" }
progenitor-client = "0.8.0"
rand = "0.8.5"
ratatui = "0.26.3"
rcgen = "0.10.0"
regex = "1.11.1"
regress = "0.10.1"
reqwest = "0.12.9"
rustfmt-wrapper = "0.2.1"
schemars = { version = "0.8.20", features = ["chrono", "uuid1"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
similar = "2.6.0"
tabwriter = "1.4.0"
thiserror = "2.0.3"
tempfile = "3.14.0"
test-common = { path = "test-common" }
thouart = { git = "https://github.com/oxidecomputer/thouart" }
tokio = { version = "1.41.1", features = ["full"] }
toml = "0.8.19"
toml_edit = "0.22.22"
url = "2.5.4"
uuid = { version = "1.11.0", features = ["serde", "v4"] }
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.22.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc"
]
# Which actions to run on pull requests
pr-run-mode = "plan"
# 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" }