2021-01-12 02:13:41 +09:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-09-18 15:20:55 +02:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_fetch"
|
2021-10-05 21:40:39 +02:00
|
|
|
version = "0.43.0"
|
2020-09-18 15:20:55 +02:00
|
|
|
authors = ["the Deno authors"]
|
2021-08-02 10:19:27 -04:00
|
|
|
edition = "2018"
|
2020-09-18 15:20:55 +02: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 15:20:55 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-09-02 23:38:44 +02:00
|
|
|
bytes = "1.1.0"
|
2021-04-10 23:38:15 +02:00
|
|
|
data-url = "0.1.0"
|
2021-10-05 21:40:39 +02:00
|
|
|
deno_core = { version = "0.102.0", path = "../../core" }
|
|
|
|
deno_tls = { version = "0.7.0", path = "../tls" }
|
2021-05-17 14:44:40 +02:00
|
|
|
http = "0.2.4"
|
2021-07-09 17:15:50 +02:00
|
|
|
reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
2021-09-02 23:38:44 +02:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-07-09 17:15:50 +02:00
|
|
|
tokio-stream = "0.1.7"
|
2021-05-17 14:44:40 +02:00
|
|
|
tokio-util = "0.6.7"
|