summaryrefslogtreecommitdiff
path: root/ext/url/Cargo.toml
blob: ddda173d8e923e2e01e7188c4dfbd0a585a7bfc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.

[package]
name = "deno_url"
version = "0.51.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"
description = "URL API implementation for Deno"

[lib]
path = "lib.rs"

[dependencies]
deno_core = { version = "0.133.0", path = "../../core" }
serde = { version = "1.0.136", features = ["derive"] }
serde_repr = "0.1.7"
urlpattern = "0.1.6"

[dev-dependencies]
deno_bench_util = { version = "0.45.0", path = "../../bench_util" }
deno_webidl = { version = "0.51.0", path = "../webidl" }

[[bench]]
name = "url_ops"
harness = false