mirror of
https://github.com/denoland/deno.git
synced 2025-12-23 08:48:24 +00:00
Some checks are pending
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / build libs (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
Co-authored-by: David Sherret <dsherret@gmail.com>
43 lines
935 B
TOML
43 lines
935 B
TOML
# Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
[package]
|
|
name = "deno_web"
|
|
version = "0.249.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "Collection of Web APIs"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
base64-simd.workspace = true
|
|
bytes.workspace = true
|
|
deno_core.workspace = true
|
|
deno_error.workspace = true
|
|
deno_permissions.workspace = true
|
|
encoding_rs.workspace = true
|
|
flate2 = { workspace = true, features = ["default"] }
|
|
futures.workspace = true
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
uuid = { workspace = true, features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
deno_bench_util.workspace = true
|
|
deno_console.workspace = true
|
|
deno_url.workspace = true
|
|
deno_webidl.workspace = true
|
|
|
|
[[bench]]
|
|
name = "encoding"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "timers_ops"
|
|
harness = false
|