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-07-20 19:28:00 -04:00
|
|
|
version = "0.85.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"
|
2022-05-05 06:41:59 -04:00
|
|
|
data-url = "0.1.1"
|
2022-07-20 19:28:00 -04:00
|
|
|
deno_core = { version = "0.144.0", path = "../../core" }
|
|
|
|
deno_tls = { version = "0.49.0", path = "../tls" }
|
2021-11-28 13:07:03 -05:00
|
|
|
dyn-clone = "1"
|
2022-05-05 06:41:59 -04:00
|
|
|
http = "0.2.6"
|
2022-06-15 13:48:53 -04:00
|
|
|
reqwest = { version = "0.11.11", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
2022-05-05 06:41:59 -04:00
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
2022-04-02 13:54:40 -04:00
|
|
|
tokio = { version = "1.17", features = ["full"] }
|
2022-05-05 06:41:59 -04:00
|
|
|
tokio-stream = "0.1.8"
|
|
|
|
tokio-util = { version = "0.7.1", features = ["io"] }
|