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-06-21 10:37:34 -04:00
|
|
|
version = "0.41.0"
|
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-06-05 17:10:07 -04:00
|
|
|
base64 = "0.13.0"
|
2021-06-21 10:37:34 -04:00
|
|
|
deno_core = { version = "0.91.0", path = "../../core" }
|
2021-06-05 17:10:07 -04:00
|
|
|
encoding_rs = "0.8.28"
|
|
|
|
serde = "1.0"
|
2021-06-21 13:53:52 -04:00
|
|
|
tokio = "1.7"
|
2021-06-10 09:26:10 -04:00
|
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|
2020-08-07 10:55:02 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-05-17 08:44:40 -04:00
|
|
|
futures = "0.3.15"
|