blob: 942f1222af41430999c14244cab6154ab4cf5abc [file] [log] [blame]
Jeff Vander Stoepa4352c12020-12-17 22:14:52 +01001[package]
2name = "idna"
Jeff Vander Stoep2e710d12022-12-12 12:55:08 +01003version = "0.3.0"
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/"
Jeff Vander Stoep2e710d12022-12-12 12:55:08 +01007license = "MIT OR Apache-2.0"
Jeff Vander Stoepa4352c12020-12-17 22:14:52 +01008autotests = false
Haibo Huanga03885d2021-02-09 17:23:28 -08009edition = "2018"
Jeff Vander Stoep2e710d12022-12-12 12:55:08 +010010rust-version = "1.51"
Jeff Vander Stoepa4352c12020-12-17 22:14:52 +010011
12[lib]
13doctest = false
Jeff Vander Stoepa4352c12020-12-17 22:14:52 +010014
15[[test]]
16name = "tests"
17harness = false
18
19[[test]]
20name = "unit"
21
22[dev-dependencies]
Haibo Huanga03885d2021-02-09 17:23:28 -080023assert_matches = "1.3"
24bencher = "0.1"
Jeff Vander Stoep2e710d12022-12-12 12:55:08 +010025tester = "0.9"
Jeff Vander Stoepa4352c12020-12-17 22:14:52 +010026serde_json = "1.0"
27
28[dependencies]
29unicode-bidi = "0.3"
Joel Galensonc87e8a22021-04-01 16:59:09 -070030unicode-normalization = "0.1.17"
Haibo Huanga03885d2021-02-09 17:23:28 -080031
32[[bench]]
33name = "all"
34harness = false