Skip to content

Commit

Permalink
Remove unused features from reqwest (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
krant authored Nov 7, 2023
1 parent 87f2686 commit fea5941
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 @@ -43,7 +43,7 @@ tracing = "0.1"
pin-project-lite = "0.2"
dunce = "1"
bytes = { version = "1.4.0", features = ["serde"], optional = true }
reqwest = { version = "0.11.20", features = [ "brotli", "gzip", "deflate", "native-tls-alpn", "stream" ] }
reqwest = { version = "0.11.20", default-features = false }

[target.'cfg(windows)'.dependencies]
winreg = "0.51"
Expand Down
2 changes: 1 addition & 1 deletion src/browser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl Browser {

// Connect to an already running chromium instance with a given `HandlerConfig`.
///
/// If the URL is a http(s) URL, it will first attempt to retrieve the Websocket URL from the `json/version` endpoint.
/// If the URL is a http URL, it will first attempt to retrieve the Websocket URL from the `json/version` endpoint.
pub async fn connect_with_config(
url: impl Into<String>,
config: HandlerConfig,
Expand Down

0 comments on commit fea5941

Please sign in to comment.