forked from loafle/openapi-generator-original
* Upgrade to rust-hyper to use hyper 1.0 * Update rust-hyper samples for hyper 1.0 upgrade * update cargo * update samples * update samples * update doc * Default client configuration for rust-hyper --------- Co-authored-by: Krishna Rajendran <krishna@emptybox.org>
21 lines
679 B
TOML
21 lines
679 B
TOML
[package]
|
|
name = "empty-object-hyper"
|
|
version = "1.0.0"
|
|
authors = ["OpenAPI Generator team and contributors"]
|
|
description = "Ensure rust supports empty objects using serde::Value"
|
|
# Override this license by providing a License Object in the OpenAPI.
|
|
license = "Unlicense"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = { version = "^1.0", features = ["derive"] }
|
|
serde_json = "^1.0"
|
|
url = "^2.5"
|
|
uuid = { version = "^1.8", features = ["serde", "v4"] }
|
|
hyper = { version = "^1.3.1", features = ["full"] }
|
|
hyper-util = { version = "0.1.5", features = ["client", "client-legacy", "http1", "http2"] }
|
|
http-body-util = { version = "0.1.2" }
|
|
http = "~0.2"
|
|
base64 = "~0.7.0"
|
|
futures = "^0.3"
|