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-02-24 14:40:57 -05:00
|
|
|
version = "0.61.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-02-24 14:40:57 -05:00
|
|
|
deno_core = { version = "0.120.0", path = "../../core" }
|
|
|
|
deno_tls = { version = "0.25.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"
|
2021-12-06 18:48:11 -05:00
|
|
|
reqwest = { version = "0.11.7", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-07-09 11:15:50 -04:00
|
|
|
tokio-stream = "0.1.7"
|
2021-05-17 08:44:40 -04:00
|
|
|
tokio-util = "0.6.7"
|