-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (66 loc) · 1.98 KB
/
Cargo.toml
File metadata and controls
71 lines (66 loc) · 1.98 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
[workspace]
members = [
"cargo-progenitor",
"example-build",
"example-macro",
"example-out-dir",
"example-wasm",
"progenitor",
"progenitor-client",
"progenitor-impl",
"progenitor-macro",
]
resolver = "3"
[workspace.package]
edition = "2024"
rust-version = "1.88"
license = "MPL-2.0"
[workspace.dependencies]
progenitor = { version = "0.14.0", path = "progenitor", default-features = false }
progenitor-client = { version = "0.14.0", path = "progenitor-client" }
progenitor-impl = { version = "0.14.0", path = "progenitor-impl" }
progenitor-macro = { version = "0.14.0", path = "progenitor-macro" }
anyhow = "1.0.102"
assert_cmd = "2.2.1"
base64 = "0.22.1"
bytes = "1.11.1"
chrono = { version = "0.4.44", default-features = false, features = ["serde"] }
clap = { version = "4.6.1" }
clap-cargo = "0.18.3"
dropshot = { version = "0.17.0", default-features = false }
env_logger = "0.11.10"
expectorate = { version = "1.2.0", features = ["predicates"] }
futures = "0.3.32"
futures-core = "0.3.32"
heck = "0.5.0"
http = "1.4.0"
hyper = "1.9.0"
indexmap = "2.14.0"
openapiv3 = "2.2.0"
percent-encoding = "2.3.2"
proc-macro2 = "1.0.106"
quote = "1.0.45"
rand = "0.10.1"
regex = "1.12.3"
regress = "0.11.1"
reqwest = { version = "0.13.2", default-features = false, features = ["json", "query", "stream"] }
rustfmt-wrapper = "0.2.1"
schemars = { version = "0.8.22", features = ["chrono", "uuid1"] }
semver = "1.0.28"
serde = { version = "1.0.226", features = ["derive"] }
serde_json = "1.0.149"
serde_urlencoded = "0.7.1"
serde_yaml = "0.9"
syn = { version = "2.0.117", features = ["parsing"] }
thiserror = "2.0.18"
tokio = { version = "1.52.1", features = ["rt", "net"] }
typify = { version = "0.6.2" }
url = "2.5.8"
unicode-ident = "1.0.24"
uuid = { version = "1.23.1", features = ["serde", "v4"] }
#[patch.crates-io]
#typify = { path = "../typify/typify" }
#[patch.crates-io]
#serde_tokenstream = { path = "../serde_tokenstream" }
#typify = { path = "../typify/typify" }
#rustfmt-wrapper = { path = "../rustfmt-wrapper" }