2021-10-17 17:40:22 +00:00
|
|
|
[package]
|
|
|
|
name = "progenitor-macro"
|
2024-05-15 17:30:58 +00:00
|
|
|
version = "0.7.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 - macros"
|
2022-12-27 19:55:57 +00:00
|
|
|
repository = "https://github.com/oxidecomputer/progenitor.git"
|
|
|
|
readme = "../README.md"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
2021-10-17 17:40:22 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-12-13 09:24:12 +00:00
|
|
|
openapiv3 = "2.0.0"
|
2022-01-15 02:01:59 +00:00
|
|
|
proc-macro2 = "1.0"
|
2024-05-15 17:30:58 +00:00
|
|
|
progenitor-impl = { version = "0.7.0", path = "../progenitor-impl" }
|
2021-10-29 14:16:39 +00:00
|
|
|
quote = "1.0"
|
2024-05-27 14:26:29 +00:00
|
|
|
schemars = "0.8.21"
|
2022-01-15 02:01:59 +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-03-20 17:33:23 +00:00
|
|
|
serde_tokenstream = "0.2.0"
|
|
|
|
syn = { version = "2.0", features = ["full", "extra-traits"] }
|