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"
|
2022-01-06 07:20:42 -05:00
|
|
|
version = "0.62.0"
|
2020-08-07 10:55:02 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2020-08-07 10:55:02 -04: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 10:55:02 -04:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-09-02 17:38:44 -04:00
|
|
|
async-trait = "0.1.51"
|
2021-06-05 17:10:07 -04:00
|
|
|
base64 = "0.13.0"
|
2022-01-06 07:20:42 -05:00
|
|
|
deno_core = { version = "0.113.0", path = "../../core" }
|
2021-10-29 01:01:42 -04:00
|
|
|
encoding_rs = "0.8.29"
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = "1.0.129"
|
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-07-07 12:13:56 -04:00
|
|
|
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|