progenitor/Cargo.toml

70 lines
2.0 KiB
TOML
Raw Permalink Normal View History

[workspace]
members = [
"cargo-progenitor",
"example-build",
"example-macro",
2023-04-26 04:50:04 +00:00
"example-wasm",
"progenitor",
"progenitor-client",
"progenitor-impl",
"progenitor-macro",
]
2021-06-19 07:36:13 +00:00
resolver = "2"
2024-06-21 02:04:05 +00:00
[workspace.dependencies]
progenitor = { version = "0.7.0", path = "progenitor" }
progenitor-client = { version = "0.7.0", path = "progenitor-client" }
progenitor-impl = { version = "0.7.0", path = "progenitor-impl" }
progenitor-macro = { version = "0.7.0", path = "progenitor-macro" }
anyhow = "1.0.86"
base64 = "0.22.1"
built = { version = "0.7.4", features = ["cargo-lock", "git2"] }
2024-06-21 02:04:05 +00:00
bytes = "1.6.0"
chrono = { version = "0.4.0", features = ["serde"] }
clap = { version = "4.5.8", features = ["derive"] }
2024-06-21 02:04:05 +00:00
dropshot = { git = "https://github.com/oxidecomputer/dropshot", default-features = false }
env_logger = "0.10.2"
expectorate = "1.1.0"
futures = "0.3.30"
futures-core = "0.3.30"
heck = "0.5.0"
http = "0.2.9"
hyper = "0.14.29"
2024-06-21 02:04:05 +00:00
indexmap = "2.2.6"
openapiv3 = "2.0.0"
percent-encoding = "2.3.0"
2024-06-21 02:04:05 +00:00
proc-macro2 = "1.0.86"
project-root = "0.2.2"
quote = "1.0.36"
rand = "0.8.5"
regex = "1.10.5"
regress = "0.10.0"
reqwest = { version = "0.11.27", features = ["json", "stream"] }
rustfmt-wrapper = "0.2.1"
schemars = { version = "0.8.21", features = ["chrono", "uuid1"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.119"
2024-06-21 02:04:05 +00:00
serde_urlencoded = "0.7.1"
serde_yaml = "0.9"
syn = { version = "2.0.69", features = ["parsing"] }
2024-06-21 02:04:05 +00:00
thiserror = "1.0.61"
tokio = { version = "1.38.0", features = ["rt", "net"] }
2024-06-21 02:04:05 +00:00
# change when publishing
# typify = { version = "0.1.0" }
typify = { git = "https://github.com/oxidecomputer/typify" }
unicode-ident = "1.0.12"
uuid = { version = "1.9.1", features = ["serde", "v4"] }
2024-06-21 02:04:05 +00:00
#[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" }