2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-08-07 16:55:02 +02:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_web"
|
2022-03-03 21:29:01 +05:30
|
|
|
version = "0.70.0"
|
2020-08-07 16:55:02 +02:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 15:03:37 +01:00
|
|
|
edition = "2021"
|
2020-08-07 16:55:02 +02:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "Collection of Web APIs"
|
2020-08-07 16:55:02 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-09-02 23:38:44 +02:00
|
|
|
async-trait = "0.1.51"
|
2021-06-05 23:10:07 +02:00
|
|
|
base64 = "0.13.0"
|
2022-03-03 21:29:01 +05:30
|
|
|
deno_core = { version = "0.121.0", path = "../../core" }
|
2021-10-28 22:01:42 -07:00
|
|
|
encoding_rs = "0.8.29"
|
2022-01-24 18:03:06 +01:00
|
|
|
flate2 = "1"
|
2021-09-02 23:38:44 +02:00
|
|
|
serde = "1.0.129"
|
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-07-07 18:13:56 +02:00
|
|
|
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
2022-02-15 12:17:30 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-03 21:29:01 +05:30
|
|
|
deno_bench_util = { version = "0.33.0", path = "../../bench_util" }
|
|
|
|
deno_url = { version = "0.39.0", path = "../url" }
|
|
|
|
deno_webidl = { version = "0.39.0", path = "../webidl" }
|
2022-02-15 12:17:30 +01:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "timers_ops"
|
|
|
|
harness = false
|