2021-04-20 01:27:36 -04:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
chore: split web op crate (#9635)
This commit starts splitting out the deno_web op crate into multiple
smaller crates. This commit splits out WebIDL and URL API, but in the
future I want to split out each spec into its own crate. That means we
will have (in rough order of loading): `webidl`, `dom`, `streams`,
`console`, `encoding`, `url`, `file`, `fetch`, `websocket`, and
`webgpu` crates.
2021-03-12 10:17:18 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_url"
|
2021-06-08 14:34:18 -04:00
|
|
|
version = "0.8.0"
|
chore: split web op crate (#9635)
This commit starts splitting out the deno_web op crate into multiple
smaller crates. This commit splits out WebIDL and URL API, but in the
future I want to split out each spec into its own crate. That means we
will have (in rough order of loading): `webidl`, `dom`, `streams`,
`console`, `encoding`, `url`, `file`, `fetch`, `websocket`, and
`webgpu` crates.
2021-03-12 10:17:18 -05:00
|
|
|
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]
|
2021-06-08 14:34:18 -04:00
|
|
|
deno_core = { version = "0.89.0", path = "../../core" }
|
2021-05-17 08:44:40 -04:00
|
|
|
idna = "0.2.3"
|
2021-04-20 08:47:22 -04:00
|
|
|
percent-encoding = "2.1.0"
|
2021-04-08 12:46:14 -04:00
|
|
|
serde = { version = "1.0.125", features = ["derive"] }
|
2021-04-19 09:42:59 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-06-08 14:34:18 -04:00
|
|
|
deno_bench_util = { version = "0.2.0", path = "../../bench_util" }
|
2021-04-19 09:42:59 -04:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "url_ops"
|
|
|
|
harness = false
|