summaryrefslogtreecommitdiff
path: root/extensions/url/Cargo.toml
diff options
context:
space:
mode:
authorAndy Hayden <andyhayden1@gmail.com>2021-04-30 12:51:48 -0700
committerGitHub <noreply@github.com>2021-04-30 15:51:48 -0400
commit684c357136fd44f9d5a1b8bb4402400ed1354677 (patch)
treeebc14b1d01b6643dd4d588516692dffc0f8fcb52 /extensions/url/Cargo.toml
parentabaec7a88e991188d885bede652f35d76ab4f340 (diff)
Rename crate_ops to extensions (#10431)
Diffstat (limited to 'extensions/url/Cargo.toml')
-rw-r--r--extensions/url/Cargo.toml27
1 files changed, 27 insertions, 0 deletions
diff --git a/extensions/url/Cargo.toml b/extensions/url/Cargo.toml
new file mode 100644
index 000000000..de7a3cb0a
--- /dev/null
+++ b/extensions/url/Cargo.toml
@@ -0,0 +1,27 @@
+# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+
+[package]
+name = "deno_url"
+version = "0.5.0"
+edition = "2018"
+description = "URL API implementation for Deno"
+authors = ["the Deno authors"]
+license = "MIT"
+readme = "README.md"
+repository = "https://github.com/denoland/deno"
+
+[lib]
+path = "lib.rs"
+
+[dependencies]
+deno_core = { version = "0.86.0", path = "../../core" }
+idna = "0.2.2"
+percent-encoding = "2.1.0"
+serde = { version = "1.0.125", features = ["derive"] }
+
+[dev-dependencies]
+bencher = "0.1"
+
+[[bench]]
+name = "url_ops"
+harness = false