-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
87 lines (83 loc) · 2.4 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
[workspace]
members = [
"cli",
"sdk",
"sdk-httpmock",
"test-common",
"xtask",
]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.81"
assert_cmd = "2.0.14"
async-trait = "0.1.79"
base64 = "0.21.7"
built = { version = "0.7.1", features = ["git2"] }
chrono = { version = "0.4.35", features = ["serde"] }
clap = { version = "4.5.3", features = ["derive", "string", "env"] }
clap_complete = "4.5.1"
dialoguer = "0.10.4"
dirs = "4.0.0"
dropshot = { git = "https://github.com/oxidecomputer/dropshot" }
env_logger = "0.10.2"
expectorate = { version = "1.1.0", features = ["predicates"] }
futures = "0.3.30"
httpmock = "0.6.8"
indicatif = "0.17"
log = "0.4.21"
newline-converter = "0.3.0"
oauth2 = "4.4.2"
open = "4.2.0"
oxide = { path = "sdk", version = "0.3.0" }
oxide-httpmock = { path = "sdk-httpmock", version = "0.3.0" }
predicates = "3.1.0"
pretty_assertions = "1.4.0"
progenitor = { git = "https://github.com/oxidecomputer/progenitor" }
progenitor-client = "0.5.0"
rand = "0.8.5"
rcgen = "0.10.0"
regex = "1.10.3"
regress = "0.9.0"
reqwest = "0.11.27"
rustfmt-wrapper = "0.2.1"
schemars = { version = "0.8.16", features = ["chrono", "uuid1"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
similar = "2.4.0"
tabwriter = "1.4.0"
thiserror = { version = "1", default-features = false }
tempfile = "3.10.1"
test-common = { path = "test-common" }
thouart = { git = "https://github.com/oxidecomputer/thouart.git" }
tokio = { version = "1.36.0", features = ["full"] }
tokio-tungstenite = "0.20.1"
toml = "0.8.12"
toml_edit = "0.22.9"
url = "2.5.0"
uuid = { version = "1.7.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.6.2"
# 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 = [
"x86_64-unknown-linux-gnu",
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
# Publish jobs to run in CI
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" }