diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-18 15:20:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-18 09:20:55 -0400 |
| commit | 7845740637eb646c0b13dc541f043fd65136fc03 (patch) | |
| tree | 8576a376d72ffdfe4ffed983a2bed9e605d20e8b /op_crates/fetch/Cargo.toml | |
| parent | cead79f5b8ffd376d339b6e0c30e872bfe6820f6 (diff) | |
refactor: deno_fetch op crate (#7524)
Diffstat (limited to 'op_crates/fetch/Cargo.toml')
| -rw-r--r-- | op_crates/fetch/Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml new file mode 100644 index 000000000..66c03ee37 --- /dev/null +++ b/op_crates/fetch/Cargo.toml @@ -0,0 +1,19 @@ +# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. + +[package] +name = "deno_fetch" +version = "0.1.0" +edition = "2018" +description = "fetch Web API" +authors = ["the Deno authors"] +license = "MIT" +readme = "README.md" +repository = "https://github.com/denoland/deno" + +[lib] +path = "lib.rs" + +[dependencies] +deno_core = { version = "0.57.0", path = "../../core" } +reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } +serde = { version = "1.0.116", features = ["derive"] }
\ No newline at end of file |
