blob: 6b3750bf7b706ccec73796cb54c77914538762ee [file] [log] [blame]
Jeff Vander Stoepa4352c12020-12-17 22:14:52 +01001[package]
2name = "idna"
Joel Galenson0582a092021-05-19 15:42:32 -07003version = "0.2.3"
Jeff Vander Stoepa4352c12020-12-17 22:14:52 +01004authors = ["The rust-url developers"]
5description = "IDNA (Internationalizing Domain Names in Applications) and Punycode."
6repository = "https://github.com/servo/rust-url/"
7license = "MIT/Apache-2.0"
8autotests = false
Haibo Huanga03885d2021-02-09 17:23:28 -08009edition = "2018"
Jeff Vander Stoepa4352c12020-12-17 22:14:52 +010010
11[lib]
12doctest = false
Jeff Vander Stoepa4352c12020-12-17 22:14:52 +010013
14[[test]]
15name = "tests"
16harness = false
17
18[[test]]
19name = "unit"
20
21[dev-dependencies]
Haibo Huanga03885d2021-02-09 17:23:28 -080022assert_matches = "1.3"
23bencher = "0.1"
Jeff Vander Stoepa4352c12020-12-17 22:14:52 +010024rustc-test = "0.3"
25serde_json = "1.0"
26
27[dependencies]
28unicode-bidi = "0.3"
Joel Galensonc87e8a22021-04-01 16:59:09 -070029unicode-normalization = "0.1.17"
Jeff Vander Stoepa4352c12020-12-17 22:14:52 +010030matches = "0.1"
Haibo Huanga03885d2021-02-09 17:23:28 -080031
32[[bench]]
33name = "all"
34harness = false