summaryrefslogtreecommitdiff
path: root/extensions/fetch/Cargo.toml
diff options
context:
space:
mode:
authorAndy Hayden <andyhayden1@gmail.com>2021-04-30 12:51:48 -0700
committerGitHub <noreply@github.com>2021-04-30 15:51:48 -0400
commit684c357136fd44f9d5a1b8bb4402400ed1354677 (patch)
treeebc14b1d01b6643dd4d588516692dffc0f8fcb52 /extensions/fetch/Cargo.toml
parentabaec7a88e991188d885bede652f35d76ab4f340 (diff)
Rename crate_ops to extensions (#10431)
Diffstat (limited to 'extensions/fetch/Cargo.toml')
-rw-r--r--extensions/fetch/Cargo.toml26
1 files changed, 26 insertions, 0 deletions
diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml
new file mode 100644
index 000000000..d2ed10714
--- /dev/null
+++ b/extensions/fetch/Cargo.toml
@@ -0,0 +1,26 @@
+# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+
+[package]
+name = "deno_fetch"
+version = "0.27.0"
+edition = "2018"
+description = "Fetch API implementation for Deno"
+authors = ["the Deno authors"]
+license = "MIT"
+readme = "README.md"
+repository = "https://github.com/denoland/deno"
+
+[lib]
+path = "lib.rs"
+
+[dependencies]
+bytes = "1.0.1"
+data-url = "0.1.0"
+deno_core = { version = "0.86.0", path = "../../core" }
+deno_file = { version = "0.4.0", path = "../file" }
+http = "0.2.3"
+reqwest = { version = "0.11.2", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
+serde = { version = "1.0.125", features = ["derive"] }
+tokio = { version = "1.4.0", features = ["full"] }
+tokio-stream = "0.1.5"
+tokio-util = "0.6.5"