blob: 80d0cb2e16680c032b23c17d6d2c7f2b76439436 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_fetch"
version = "0.37.0"
authors = ["the Deno authors"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"
description = "Fetch API implementation for Deno"
[lib]
path = "lib.rs"
[dependencies]
bytes = "1.0.1"
data-url = "0.1.0"
deno_core = { version = "0.96.0", path = "../../core" }
deno_tls = { version = "0.1.0", path = "../tls" }
deno_web = { version = "0.45.0", path = "../web" }
http = "0.2.4"
lazy_static = "1.4.0"
reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.126", features = ["derive"] }
tokio = { version = "1.8.1", features = ["full"] }
tokio-stream = "0.1.7"
tokio-util = "0.6.7"
|