1[package]
2name = "data-url"
3version = "0.3.1"
4authors = ["Simon Sapin <simon.sapin@exyr.org>"]
5description = "Processing of data: URL according to WHATWG’s Fetch Standard"
6categories = ["no_std"]
7repository = "https://github.com/servo/rust-url"
8license = "MIT OR Apache-2.0"
9edition = "2018"
10autotests = false
11rust-version = "1.51"
12
13[features]
14default = ["std"]
15std = ["alloc"]
16alloc = []
17
18[dev-dependencies]
19tester = "0.9"
20serde = {version = "1.0", features = ["derive"]}
21serde_json = "1.0"
22
23[lib]
24test = false
25
26[[test]]
27name = "wpt"
28harness = false
29
30[package.metadata.docs.rs]
31rustdoc-args = ["--generate-link-to-definition"]
32