2017-11-01 01:39:54 +03:00
|
|
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
|
|
#
|
|
|
|
# When uploading crates to the registry Cargo will automatically
|
|
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
2023-11-20 12:42:59 +03:00
|
|
|
# to registry (e.g., crates.io) dependencies.
|
2017-11-01 01:39:54 +03:00
|
|
|
#
|
2023-11-20 12:42:59 +03:00
|
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
|
|
# will likely look very different (and much more reasonable).
|
|
|
|
# See Cargo.toml.orig for the original contents.
|
2017-11-01 01:32:11 +03:00
|
|
|
|
2017-11-01 01:39:54 +03:00
|
|
|
[package]
|
2023-11-20 12:42:59 +03:00
|
|
|
edition = "2018"
|
|
|
|
rust-version = "1.56"
|
2016-10-19 21:37:59 +03:00
|
|
|
name = "url"
|
2023-11-29 13:09:05 +03:00
|
|
|
version = "2.5.0"
|
2016-10-19 21:37:59 +03:00
|
|
|
authors = ["The rust-url developers"]
|
2023-11-29 13:09:05 +03:00
|
|
|
include = [
|
|
|
|
"src/**/*",
|
|
|
|
"LICENSE-*",
|
|
|
|
"README.md",
|
|
|
|
"tests/**",
|
|
|
|
]
|
2016-10-19 21:37:59 +03:00
|
|
|
description = "URL library for Rust, based on the WHATWG URL Standard"
|
2017-06-01 02:35:32 +03:00
|
|
|
documentation = "https://docs.rs/url"
|
2023-11-29 13:09:05 +03:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = [
|
|
|
|
"url",
|
|
|
|
"parser",
|
|
|
|
]
|
|
|
|
categories = [
|
|
|
|
"parser-implementations",
|
|
|
|
"web-programming",
|
|
|
|
"encoding",
|
|
|
|
]
|
2023-11-20 12:42:59 +03:00
|
|
|
license = "MIT OR Apache-2.0"
|
2017-11-01 01:39:54 +03:00
|
|
|
repository = "https://github.com/servo/rust-url"
|
2023-11-29 13:09:05 +03:00
|
|
|
|
2023-11-20 12:42:59 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["serde"]
|
|
|
|
rustdoc-args = ["--generate-link-to-definition"]
|
2016-10-19 21:37:59 +03:00
|
|
|
|
2023-11-20 12:42:59 +03:00
|
|
|
[package.metadata.playground]
|
|
|
|
features = ["serde"]
|
2021-12-08 05:18:29 +03:00
|
|
|
|
|
|
|
[[test]]
|
2023-11-20 12:42:59 +03:00
|
|
|
name = "url_wpt"
|
|
|
|
path = "tests/wpt.rs"
|
2021-12-08 05:18:29 +03:00
|
|
|
harness = false
|
|
|
|
|
2018-12-01 17:58:03 +03:00
|
|
|
[[bench]]
|
|
|
|
name = "parse_url"
|
2023-11-20 12:42:59 +03:00
|
|
|
path = "benches/parse_url.rs"
|
2018-12-01 17:58:03 +03:00
|
|
|
harness = false
|
2023-11-29 13:09:05 +03:00
|
|
|
|
2023-11-20 12:42:59 +03:00
|
|
|
[dependencies.form_urlencoded]
|
2023-11-29 13:09:05 +03:00
|
|
|
version = "1.2.1"
|
2023-10-25 16:26:47 +03:00
|
|
|
|
2023-11-20 12:42:59 +03:00
|
|
|
[dependencies.idna]
|
2023-11-29 13:09:05 +03:00
|
|
|
version = "0.5.0"
|
2017-11-01 01:39:54 +03:00
|
|
|
|
|
|
|
[dependencies.percent-encoding]
|
2023-11-29 13:09:05 +03:00
|
|
|
version = "2.3.1"
|
2017-11-01 01:39:54 +03:00
|
|
|
|
2018-03-09 23:42:17 +03:00
|
|
|
[dependencies.serde]
|
2019-08-17 19:29:07 +03:00
|
|
|
version = "1.0"
|
|
|
|
features = ["derive"]
|
2017-11-01 01:39:54 +03:00
|
|
|
optional = true
|
2023-11-29 13:09:05 +03:00
|
|
|
|
2018-12-01 17:58:03 +03:00
|
|
|
[dev-dependencies.bencher]
|
|
|
|
version = "0.1"
|
|
|
|
|
2023-11-20 12:42:59 +03:00
|
|
|
[dev-dependencies.serde]
|
|
|
|
version = "1.0"
|
|
|
|
features = ["derive"]
|
2021-12-08 05:18:29 +03:00
|
|
|
|
2017-11-01 01:39:54 +03:00
|
|
|
[dev-dependencies.serde_json]
|
2019-08-17 19:29:07 +03:00
|
|
|
version = "1.0"
|
2018-03-09 23:42:17 +03:00
|
|
|
|
2023-11-20 12:42:59 +03:00
|
|
|
[features]
|
|
|
|
debugger_visualizer = []
|
|
|
|
default = []
|
|
|
|
expose_internals = []
|