2021-10-17 17:40:22 +00:00
|
|
|
[package]
|
|
|
|
name = "progenitor"
|
2022-09-11 00:19:08 +00:00
|
|
|
version = "0.2.1-dev"
|
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"
|
2022-12-27 19:55:57 +00:00
|
|
|
repository = "https://github.com/oxidecomputer/progenitor.git"
|
|
|
|
readme = "../README.md"
|
|
|
|
keywords = ["openapi", "openapiv3", "sdk", "generator", "proc_macro"]
|
|
|
|
categories = ["api-bindings", "compilers"]
|
2023-01-17 03:21:36 +00:00
|
|
|
build = "build.rs"
|
2021-10-17 17:40:22 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-09-11 00:19:08 +00:00
|
|
|
progenitor-client = { version = "0.2.1-dev", path = "../progenitor-client" }
|
|
|
|
progenitor-impl = { version = "0.2.1-dev", path = "../progenitor-impl" }
|
|
|
|
progenitor-macro = { version = "0.2.1-dev", path = "../progenitor-macro" }
|
2021-10-29 14:16:39 +00:00
|
|
|
anyhow = "1.0"
|
2022-01-15 02:01:59 +00:00
|
|
|
openapiv3 = "1.0.0"
|
2023-04-25 16:11:52 +00:00
|
|
|
rustfmt-wrapper = "0.2.0"
|
2022-07-03 02:09:38 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-10-29 14:16:39 +00:00
|
|
|
serde_json = "1.0"
|
2023-01-14 16:58:57 +00:00
|
|
|
serde_yaml = "0.9"
|
2023-05-01 21:24:56 +00:00
|
|
|
clap = { version = "4.2.5", features = ["derive"] }
|
2022-01-05 20:02:46 +00:00
|
|
|
|
2023-01-17 03:21:36 +00:00
|
|
|
[build-dependencies]
|
2023-02-13 16:25:12 +00:00
|
|
|
built = { version = "0.6", features = ["git2"] }
|
2023-01-17 22:24:44 +00:00
|
|
|
project-root = "0.2"
|
2023-01-17 03:21:36 +00:00
|
|
|
|
2022-01-05 20:02:46 +00:00
|
|
|
[dev-dependencies]
|
2023-01-10 07:10:55 +00:00
|
|
|
base64 = "0.21"
|
2022-01-05 20:02:46 +00:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2023-03-20 14:52:58 +00:00
|
|
|
futures = "0.3.27"
|
2022-09-08 21:36:19 +00:00
|
|
|
percent-encoding = "2.2"
|
2022-09-28 20:40:07 +00:00
|
|
|
rand = "0.8"
|
2023-05-01 21:25:16 +00:00
|
|
|
regress = "0.6.0"
|
2023-04-03 21:54:47 +00:00
|
|
|
reqwest = { version = "0.11.16", features = ["json", "stream"] }
|
2023-02-28 21:40:19 +00:00
|
|
|
schemars = { version = "0.8.12", features = ["uuid1"] }
|
2023-02-06 17:00:06 +00:00
|
|
|
uuid = { version = "1.3", features = ["serde", "v4"] }
|