-
Notifications
You must be signed in to change notification settings - Fork 66
/
Cargo.toml
69 lines (63 loc) · 2.11 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
[workspace]
members = [
"cargo-progenitor",
"example-build",
"example-macro",
"example-wasm",
"progenitor",
"progenitor-client",
"progenitor-impl",
"progenitor-macro",
]
resolver = "2"
[workspace.dependencies]
progenitor = { version = "0.8.0", path = "progenitor" }
progenitor-client = { version = "0.8.0", path = "progenitor-client" }
progenitor-impl = { version = "0.8.0", path = "progenitor-impl" }
progenitor-macro = { version = "0.8.0", path = "progenitor-macro" }
anyhow = "1.0.93"
base64 = "0.22.1"
built = { version = "0.7.4", features = ["cargo-lock", "git2"] }
bytes = "1.8.0"
chrono = { version = "0.4.0", default-features = false, features = ["serde"] }
clap = { version = "4.5.20", default-features = false, features = ["derive", "std"] }
dropshot = { git = "https://github.com/oxidecomputer/dropshot", default-features = false }
env_logger = "0.10.2"
expectorate = "1.1.0"
futures = "0.3.31"
futures-core = "0.3.31"
heck = "0.5.0"
http = "1.1.0"
hyper = "1.4.1"
indexmap = "2.6.0"
openapiv3 = "2.0.0"
percent-encoding = "2.3.0"
proc-macro2 = "1.0.89"
project-root = "0.2.2"
quote = "1.0.37"
rand = "0.8.5"
regex = "1.11.1"
regress = "0.10.1"
reqwest = { version = "0.12.4", default-features = false, features = ["json", "stream"] }
rustfmt-wrapper = "0.2.1"
schemars = { version = "0.8.21", features = ["chrono", "uuid1"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.127"
serde_urlencoded = "0.7.1"
serde_yaml = "0.9"
syn = { version = "2.0.87", features = ["parsing"] }
thiserror = "1.0.69"
tokio = { version = "1.38.0", features = ["rt", "net"] }
# change when publishing
# typify = { version = "0.2.0" }
typify = { git = "https://github.com/oxidecomputer/typify" }
unicode-ident = "1.0.12"
uuid = { version = "1.11.0", features = ["serde", "v4"] }
#[patch."https://github.com/oxidecomputer/dropshot"]
#dropshot = { path = "../dropshot/dropshot" }
#[patch."https://github.com/oxidecomputer/typify"]
#typify = { path = "../typify/typify" }
#[patch.crates-io]
#serde_tokenstream = { path = "../serde_tokenstream" }
#typify = { path = "../typify/typify" }
#rustfmt-wrapper = { path = "../rustfmt-wrapper" }