2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-09-18 09:20:55 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_fetch"
|
2022-04-20 21:50:16 -04:00
|
|
|
version = "0.71.0"
|
2020-09-18 09:20:55 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2020-09-18 09:20:55 -04:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "Fetch API implementation for Deno"
|
2020-09-18 09:20:55 -04:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-09-02 17:38:44 -04:00
|
|
|
bytes = "1.1.0"
|
2021-04-10 17:38:15 -04:00
|
|
|
data-url = "0.1.0"
|
2022-04-20 21:50:16 -04:00
|
|
|
deno_core = { version = "0.130.0", path = "../../core" }
|
|
|
|
deno_tls = { version = "0.35.0", path = "../tls" }
|
2021-11-28 13:07:03 -05:00
|
|
|
dyn-clone = "1"
|
2021-05-17 08:44:40 -04:00
|
|
|
http = "0.2.4"
|
2022-03-14 23:12:59 -04:00
|
|
|
reqwest = { version = "0.11.10", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
2022-04-02 13:54:40 -04:00
|
|
|
tokio = { version = "1.17", features = ["full"] }
|
2021-07-09 11:15:50 -04:00
|
|
|
tokio-stream = "0.1.7"
|
2022-04-07 14:40:20 -04:00
|
|
|
tokio-util = { version = "0.7.0", features = ["io"] }
|