25 lines
606 B
TOML
25 lines
606 B
TOML
[package]
|
|
name = "progenitor-impl"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
license = "MPL-2.0"
|
|
repository = "https://github.com/oxidecomputer/progenitor.git"
|
|
description = "An OpenAPI client generator - core implementation"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
getopts = "0.2"
|
|
indexmap = "1.7.0"
|
|
openapiv3 = "1.0.0-beta.2"
|
|
proc-macro2 = "1.0.29"
|
|
quote = "1.0.9"
|
|
regex = "1.5.4"
|
|
rustfmt-wrapper = "0.1.0"
|
|
schemars = "0.8.5"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "1.0.68"
|
|
typify = { git = "https://github.com/oxidecomputer/typify" }
|
|
thiserror = "1.0.30"
|
|
|
|
[dev-dependencies]
|
|
expectorate = "1.0.4" |