2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 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"
|
2022-05-12 12:43:00 -04:00
|
|
|
version = "0.52.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
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
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
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "URL API implementation for Deno"
|
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
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-05-12 12:43:00 -04:00
|
|
|
deno_core = { version = "0.134.0", path = "../../core" }
|
2022-05-05 06:41:59 -04:00
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
2021-08-18 17:21:33 -04:00
|
|
|
serde_repr = "0.1.7"
|
2022-03-04 17:08:04 -05:00
|
|
|
urlpattern = "0.1.6"
|
2021-04-19 09:42:59 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-05-12 12:43:00 -04:00
|
|
|
deno_bench_util = { version = "0.46.0", path = "../../bench_util" }
|
|
|
|
deno_webidl = { version = "0.52.0", path = "../webidl" }
|
2021-04-19 09:42:59 -04:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "url_ops"
|
|
|
|
harness = false
|