diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-01-12 08:50:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 23:50:02 -0800 |
commit | 275a5c65a20529cd4a3d775b8d8c6e9b261c76b1 (patch) | |
tree | 9f861e36e70be809d5586128a24b9f7b4332e09e /op_crates/fetch/Cargo.toml | |
parent | 36ff7bdf575e0547fabd8957ee778cc4224d5956 (diff) |
upgrade: tokio 1.0 (#8779)
Co-authored-by: Bert Belder <bertbelder@gmail.com>
Diffstat (limited to 'op_crates/fetch/Cargo.toml')
-rw-r--r-- | op_crates/fetch/Cargo.toml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml index 6916685fb..9c088ac60 100644 --- a/op_crates/fetch/Cargo.toml +++ b/op_crates/fetch/Cargo.toml @@ -14,9 +14,10 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] +bytes = "1.0.1" deno_core = { version = "0.75.0", path = "../../core" } - -bytes = "0.5.6" -reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } +reqwest = { version = "0.11.0", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } serde = { version = "1.0.116", features = ["derive"] } -tokio = { version = "0.2.22", features = ["full"] }
\ No newline at end of file +tokio = { version = "1.0.1", features = ["full"] } +tokio-stream = "0.1.1" +tokio-util = "0.6.0" |