diff options
Diffstat (limited to 'ext/web/Cargo.toml')
-rw-r--r-- | ext/web/Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml new file mode 100644 index 000000000..6160ef89f --- /dev/null +++ b/ext/web/Cargo.toml @@ -0,0 +1,26 @@ +# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. + +[package] +name = "deno_web" +version = "0.45.0" +authors = ["the Deno authors"] +edition = "2018" +license = "MIT" +readme = "README.md" +repository = "https://github.com/denoland/deno" +description = "Collection of Web APIs" + +[lib] +path = "lib.rs" + +[dependencies] +async-trait = "0.1.50" +base64 = "0.13.0" +deno_core = { version = "0.96.0", path = "../../core" } +encoding_rs = "0.8.28" +serde = "1.0" +tokio = { version = "1.8.1", features = ["full"] } +uuid = { version = "0.8.2", features = ["v4", "serde"] } + +[dev-dependencies] +futures = "0.3.15" |