-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathCargo.toml
36 lines (34 loc) · 972 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "progenitor-impl"
version = "0.4.0"
edition = "2021"
license = "MPL-2.0"
description = "An OpenAPI client generator - core implementation"
repository = "https://github.com/oxidecomputer/progenitor.git"
readme = "../README.md"
[dependencies]
heck = "0.4.1"
http = "0.2.9"
getopts = "0.2"
indexmap = "2.0.0"
openapiv3 = "1.0.3"
proc-macro2 = "1.0"
quote = "1.0"
regex = "1.9"
schemars = { version = "0.8.12", features = ["chrono", "uuid1"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
syn = { version = "2.0", features = ["parsing"] }
thiserror = "1.0"
# change when publishing
typify = { version = "0.0.14" }
#typify = { git = "https://github.com/oxidecomputer/typify" }
unicode-ident = "1.0.12"
[dev-dependencies]
dropshot = { git = "https://github.com/oxidecomputer/dropshot", default-features = false }
expectorate = "1.0"
http = "0.2.9"
hyper = "0.14.27"
rustfmt-wrapper = "0.2.0"
serde_yaml = "0.9"
serde_json = "1.0.107"