Skip to content

Commit

Permalink
add http/2 support (#1020)
Browse files Browse the repository at this point in the history
* added http/2 support
* updated deps
  • Loading branch information
epi052 authored Nov 8, 2023
1 parent a28ff85 commit c3c6fc6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 22 deletions.
35 changes: 17 additions & 18 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ lazy_static = "1.4"
dirs = "5.0"

[dependencies]
scraper = "0.17"
scraper = "0.18"
futures = "0.3"
tokio = { version = "1.29", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
log = "0.4"
env_logger = "0.10"
reqwest = { version = "0.11", features = ["socks", "native-tls"] }
reqwest = { version = "0.11", features = ["socks", "native-tls-alpn"] }
# uses feature unification to add 'serde' to reqwest::Url
url = { version = "2.4", features = ["serde"] }
serde_regex = "1.1"
clap = { version = "4.3", features = ["wrap_help", "cargo"] }
lazy_static = "1.4"
toml = "0.7"
toml = "0.8"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
uuid = { version = "1.4", features = ["v4"] }
Expand All @@ -52,7 +52,7 @@ console = "0.15"
openssl = { version = "0.10", features = ["vendored"] }
dirs = "5.0"
regex = "1.9"
crossterm = "0.26"
crossterm = "0.27"
rlimit = "0.10"
ctrlc = "3.4"
anyhow = "1.0"
Expand Down

0 comments on commit c3c6fc6

Please sign in to comment.