mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
04ba8df711
Bumped versions for 1.39.0 Please ensure: - [x] Target branch is correct (`vX.XX` if a patch release, `main` if minor) - [x] Crate versions are bumped correctly - [x] deno_std version is incremented in the code (see `cli/deno_std.rs`) - [x] Releases.md is updated correctly (think relevancy and remove reverts) To make edits to this PR: ```shell git fetch upstream release_1_39.0 && git checkout -b release_1_39.0 upstream/release_1_39.0 ``` cc @mmastrac --------- Co-authored-by: mmastrac <mmastrac@users.noreply.github.com> Co-authored-by: Matt Mastracci <matthew@mastracci.com>
41 lines
882 B
TOML
41 lines
882 B
TOML
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_web"
|
|
version = "0.159.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 = "0.8"
|
|
bytes.workspace = true
|
|
deno_core.workspace = true
|
|
encoding_rs.workspace = true
|
|
flate2 = { workspace = true, features = ["default"] }
|
|
futures.workspace = true
|
|
serde = "1.0.149"
|
|
tokio.workspace = true
|
|
uuid = { workspace = true, features = ["serde"] }
|
|
windows-sys.workspace = true
|
|
|
|
[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
|