mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
1a6ce29f3d
* 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>
22 lines
No EOL
641 B
TOML
22 lines
No EOL
641 B
TOML
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_fetch"
|
|
version = "0.18.0"
|
|
edition = "2018"
|
|
description = "provides fetch Web API to deno_core"
|
|
authors = ["the Deno authors"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
[lib]
|
|
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"] } |