Skip to content

Commit

Permalink
added reqwest
Browse files Browse the repository at this point in the history
  • Loading branch information
idky137 committed Oct 8, 2024
1 parent 2c63a60 commit 058a395
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions zaino-fetch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ thiserror = { workspace = true }
# Miscellaneous Crate
prost = "0.12" # "0.13"
hyper = { version = "0.14.28", features = ["full"] } # { version = "1.4", features = ["full"] }
# reqwest = "0.12"
serde_json = { version = "1.0.117", features = ["preserve_order"] } # { version = "1.0", features = ["preserve_order"] } # The preserve_order feature in serde_jsonn is a dependency of jsonrpc-core
serde = { version = "1.0.201", features = ["derive"] } # { version = "1.0", features = ["derive"] }
hyper-tls = "0.5" # "0.6"
Expand Down
1 change: 1 addition & 0 deletions zaino-fetch/src/jsonrpc/connector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use http::Uri;
use hyper::{http, Body, Client, Request};
use hyper_tls::HttpsConnector;
// use reqwest::{Client, Url};
use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::sync::atomic::{AtomicI32, Ordering};
Expand Down

0 comments on commit 058a395

Please sign in to comment.