2021-01-11 12:13:41 -05:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-08-07 10:55:02 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_web"
|
2021-07-01 18:13:40 -04:00
|
|
|
version = "0.41.1"
|
2020-08-07 10:55:02 -04:00
|
|
|
edition = "2018"
|
|
|
|
description = "Collection of Web APIs"
|
|
|
|
authors = ["the Deno authors"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-07-05 09:34:37 -04:00
|
|
|
async-trait = "0.1.50"
|
2021-06-05 17:10:07 -04:00
|
|
|
base64 = "0.13.0"
|
2021-06-28 14:59:23 -04:00
|
|
|
deno_core = { version = "0.92.0", path = "../../core" }
|
2021-06-05 17:10:07 -04:00
|
|
|
encoding_rs = "0.8.28"
|
|
|
|
serde = "1.0"
|
2021-07-09 11:15:50 -04:00
|
|
|
tokio = "1.8.1"
|
2021-07-07 12:13:56 -04:00
|
|
|
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
2020-08-07 10:55:02 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-05-17 08:44:40 -04:00
|
|
|
futures = "0.3.15"
|