1[package] 2name = "idna" 3version = "0.5.0" 4authors = ["The rust-url developers"] 5description = "IDNA (Internationalizing Domain Names in Applications) and Punycode." 6categories = ["no_std"] 7repository = "https://github.com/servo/rust-url/" 8license = "MIT OR Apache-2.0" 9autotests = false 10edition = "2018" 11rust-version = "1.51" 12 13[lib] 14doctest = false 15 16[features] 17default = ["std"] 18std = ["alloc", "unicode-bidi/std", "unicode-normalization/std"] 19alloc = [] 20 21[[test]] 22name = "tests" 23harness = false 24 25[[test]] 26name = "unit" 27 28[dev-dependencies] 29assert_matches = "1.3" 30bencher = "0.1" 31tester = "0.9" 32serde_json = "1.0" 33 34[dependencies] 35unicode-bidi = { version = "0.3.10", default-features = false, features = ["hardcoded-data"] } 36unicode-normalization = { version = "0.1.22", default-features = false } 37 38[[bench]] 39name = "all" 40harness = false 41 42[package.metadata.docs.rs] 43rustdoc-args = ["--generate-link-to-definition"] 44