summaryrefslogtreecommitdiff
path: root/op_crates/fetch/Cargo.toml
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2021-01-10 20:54:29 +0100
committerGitHub <noreply@github.com>2021-01-10 20:54:29 +0100
commit1a6ce29f3d11e5f0d0d022914e3f9fbcfa487294 (patch)
tree9e1940a9a7a7392e6818341eea67becfa26ebbfa /op_crates/fetch/Cargo.toml
parent2c1f74402c00a2975cdaf9199b6487e5fd8175ba (diff)
feat(fetch): req streaming + 0-copy resp streaming (#9036)
* feat(fetch): req streaming + 0-copy resp streaming * lint * lint * fix test * rm test.js * explicitly use CancelHandle::default() * Apply review suggestions Co-authored-by: Ben Noordhuis <info@bnoordhuis.nl> * fix test * Merge remote-tracking branch 'origin/master' into fetch_real_streaming * fix test * retrigger ci Co-authored-by: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'op_crates/fetch/Cargo.toml')
-rw-r--r--op_crates/fetch/Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml
index 2890bb349..855695475 100644
--- a/op_crates/fetch/Cargo.toml
+++ b/op_crates/fetch/Cargo.toml
@@ -15,5 +15,8 @@ path = "lib.rs"
[dependencies]
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"] }
serde = { version = "1.0.116", features = ["derive"] }
+tokio = { version = "0.2.22", features = ["full"] } \ No newline at end of file