2021-10-17 17:40:22 +00:00
|
|
|
[package]
|
|
|
|
name = "progenitor-impl"
|
2023-05-03 18:58:49 +00:00
|
|
|
version = "0.3.0"
|
2022-07-03 02:09:38 +00:00
|
|
|
edition = "2021"
|
2021-10-17 17:40:22 +00:00
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "An OpenAPI client generator - core implementation"
|
2022-12-27 19:55:57 +00:00
|
|
|
repository = "https://github.com/oxidecomputer/progenitor.git"
|
|
|
|
readme = "../README.md"
|
2021-10-17 17:40:22 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-06 16:59:57 +00:00
|
|
|
heck = "0.4.1"
|
2023-04-25 02:03:33 +00:00
|
|
|
http = "0.2.9"
|
2021-10-17 17:40:22 +00:00
|
|
|
getopts = "0.2"
|
2022-07-03 02:05:58 +00:00
|
|
|
indexmap = "1.9"
|
2022-01-15 02:01:59 +00:00
|
|
|
openapiv3 = "1.0.0"
|
2021-10-29 14:16:39 +00:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
2023-04-24 18:13:35 +00:00
|
|
|
regex = "1.8"
|
2023-02-28 21:40:19 +00:00
|
|
|
schemars = { version = "0.8.12", features = ["chrono", "uuid1"] }
|
2022-01-16 17:09:30 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-10-29 14:16:39 +00:00
|
|
|
serde_json = "1.0"
|
2023-03-20 17:33:23 +00:00
|
|
|
syn = { version = "2.0", features = ["parsing"] }
|
2021-10-29 14:16:39 +00:00
|
|
|
thiserror = "1.0"
|
2023-05-15 14:11:31 +00:00
|
|
|
# change when publishing
|
|
|
|
#typify = { version = "0.0.12" }
|
|
|
|
typify = { git = "https://github.com/oxidecomputer/typify" }
|
2023-03-06 19:23:36 +00:00
|
|
|
unicode-ident = "1.0.8"
|
2021-10-17 17:40:22 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-05-18 22:18:52 +00:00
|
|
|
dropshot = { git = "https://github.com/oxidecomputer/dropshot", default-features = false }
|
2022-03-15 23:11:47 +00:00
|
|
|
expectorate = "1.0"
|
2023-02-21 00:05:09 +00:00
|
|
|
http = "0.2.9"
|
2023-07-10 14:53:51 +00:00
|
|
|
hyper = "0.14.27"
|
2023-04-25 16:11:52 +00:00
|
|
|
rustfmt-wrapper = "0.2.0"
|
2023-01-14 16:58:57 +00:00
|
|
|
serde_yaml = "0.9"
|
2023-06-19 14:40:48 +00:00
|
|
|
serde_json = "1.0.97"
|