Skip to content

Commit

Permalink
Merge pull request #2491 from coasys/reqwest-version-relax
Browse files Browse the repository at this point in the history
Relax version constraint on reqwest dependency
  • Loading branch information
mthom authored Aug 29, 2024
2 parents 5c39e2a + 808ea9f commit 12a61cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ ctrlc = { version = "3.4.4", optional = true }
hostname = { version = "0.4.0", optional = true }
libffi = { version = "3.2.0", optional = true }
native-tls = { version = "0.2.12", optional = true }
reqwest = { version = "0.11.27", optional = true }
# the version requirement of reqwest is kept low for compatibility with old deno versions
# that pin reqwest to 0.11.20
reqwest = { version = "0.11.0", optional = true }
rustyline = { version = "14.0.0", optional = true }
tokio = { version = "1.39.2", features = ["full"] }
warp = { version = "0.3.7", features = ["tls"], optional = true }
Expand Down

0 comments on commit 12a61cd

Please sign in to comment.