1[package] 2name = "idna" 3version = "0.3.0" 4authors = ["The rust-url developers"] 5description = "IDNA (Internationalizing Domain Names in Applications) and Punycode." 6repository = "https://github.com/servo/rust-url/" 7license = "MIT OR Apache-2.0" 8autotests = false 9edition = "2018" 10rust-version = "1.51" 11 12[lib] 13doctest = false 14 15[[test]] 16name = "tests" 17harness = false 18 19[[test]] 20name = "unit" 21 22[dev-dependencies] 23assert_matches = "1.3" 24bencher = "0.1" 25tester = "0.9" 26serde_json = "1.0" 27 28[dependencies] 29unicode-bidi = "0.3" 30unicode-normalization = "0.1.17" 31 32[[bench]] 33name = "all" 34harness = false 35