mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 19:08:52 +00:00
c97b63d2bb
* [Rust] Use serde Value for objects This hopefully fixes the previous TODO; it at least fixes compilation errors for the specific swagger model I'm working with. * [Rust] Update Cargo.toml to specify versions Letting the version float freely is scary, to say the least. This gives it a better chance at being future-proof. When the crate author had a recommended selector I picked that, otherwise I went semver compatible. * [Rust] Regenerate the example
18 lines
297 B
TOML
18 lines
297 B
TOML
[package]
|
|
name = "petstore_client"
|
|
version = "1.0.0"
|
|
authors = ["Swagger Codegen team and contributors"]
|
|
|
|
[dependencies]
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_yaml = "0.7"
|
|
serde_json = "1.0"
|
|
base64 = "~0.7.0"
|
|
futures = "0.1.16"
|
|
hyper = "0.11.6"
|
|
url = "1.5"
|
|
|
|
[dev-dependencies]
|
|
tokio-core = "*"
|