Skip to content

Commit

Permalink
Start
Browse files Browse the repository at this point in the history
  • Loading branch information
d-e-s-o committed Feb 12, 2024
1 parent 7336830 commit 2c12da7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ chrono = {version = "0.4.19", features = ["serde"]}
futures = {version = "0.3", default-features = false}
http = {version = "0.2", default-features = false}
http-endpoint = "0.5"
hyper = {version = "0.14", features = ["client", "http1", "stream"]}
hyper = {version = "1.0", features = ["client", "http1"]}
hyper-tls = {version = "0.5", default-features = false}
num-decimal = {version = "0.2.4", default-features = false, features = ["num-v04", "serde"]}
serde = {version = "1.0.103", features = ["derive"]}
Expand Down
2 changes: 1 addition & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ use http_endpoint::Endpoint;

use hyper::body::Bytes;
use hyper::body::HttpBody as _;
use hyper::body::Incoming as Body;
use hyper::client::Builder as HttpClientBuilder;
use hyper::client::HttpConnector;
use hyper::Body;
use hyper::Client as HttpClient;
use hyper::Error as HyperError;
use hyper_tls::HttpsConnector;
Expand Down

0 comments on commit 2c12da7

Please sign in to comment.