2021-10-17 17:40:22 +00:00
|
|
|
[package]
|
|
|
|
name = "progenitor-impl"
|
2023-12-16 01:03:14 +00:00
|
|
|
version = "0.5.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"
|
2024-02-13 18:08:53 +00:00
|
|
|
indexmap = "2.2.3"
|
2023-12-13 09:24:12 +00:00
|
|
|
openapiv3 = "2.0.0"
|
2021-10-29 14:16:39 +00:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
2023-10-23 21:59:39 +00:00
|
|
|
regex = "1.10"
|
2023-12-30 23:16:53 +00:00
|
|
|
schemars = { version = "0.8.16", 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
|
2024-02-28 21:08:56 +00:00
|
|
|
typify = { version = "0.0.16" }
|
|
|
|
#typify = { git = "https://github.com/oxidecomputer/typify" }
|
2023-09-24 04:12:24 +00:00
|
|
|
unicode-ident = "1.0.12"
|
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 }
|
2023-10-02 16:25:20 +00:00
|
|
|
expectorate = "1.1"
|
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-11-13 16:47:28 +00:00
|
|
|
rustfmt-wrapper = "0.2.1"
|
2023-01-14 16:58:57 +00:00
|
|
|
serde_yaml = "0.9"
|
2024-02-02 18:57:37 +00:00
|
|
|
serde_json = "1.0.113"
|