Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -416,10 +416,15 @@ http = { version = "0.2.9", default-features = false }
http-1 = { package = "http", version = "1.0", default-features = false, features = ["std"] }
http-serde = "1.1.3"
http-body = { version = "0.4.6", default-features = false }
http-body-1 = { package = "http-body", version = "1", default-features = false }
http-body-util = { version = "0.1", default-features = false }
humantime.workspace = true
hyper = { version = "0.14.32", default-features = false, features = ["client", "runtime", "http1", "http2", "server", "stream", "backports", "deprecated"] }
hyper-1 = { package = "hyper", version = "1", default-features = false, features = ["client", "http1", "http2"] }
hyper-openssl = { version = "0.9.2", default-features = false }
hyper-openssl-1 = { package = "hyper-openssl", version = "0.10", default-features = false, features = ["client-legacy"] }
hyper-proxy = { version = "0.9.1", default-features = false, features = ["openssl-tls"] }
hyper-util = { version = "0.1", default-features = false, features = ["client", "client-legacy", "http1", "http2", "tokio"] }
indexmap.workspace = true
inventory = { version = "0.3.20", default-features = false }
ipnet = { version = "2", default-features = false, optional = true, features = ["serde", "std"] }
Expand Down
2 changes: 2 additions & 0 deletions src/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,8 @@ impl IntoIterator for QueryParameterValue {

pub type QueryParameters = HashMap<String, QueryParameterValue>;

mod client_v1;

#[cfg(test)]
mod transport_tests;

Expand Down
Loading
Loading