0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/extensions/web/Cargo.toml

27 lines
614 B
TOML
Raw Normal View History

# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_web"
2021-08-10 08:19:42 -04:00
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"
2021-08-10 08:19:42 -04:00
deno_core = { version = "0.96.0", path = "../../core" }
encoding_rs = "0.8.28"
serde = "1.0"
2021-07-12 20:16:49 -04:00
tokio = { version = "1.8.1", features = ["full"] }
uuid = { version = "0.8.2", features = ["v4", "serde"] }
[dev-dependencies]
2021-05-17 08:44:40 -04:00
futures = "0.3.15"