| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- [package]
- name = "idna"
- version = "1.0.0"
- authors = ["The rust-url developers"]
- description = "IDNA (Internationalizing Domain Names in Applications) and Punycode."
- categories = ["no_std"]
- repository = "https://github.com/servo/rust-url/"
- license = "MIT OR Apache-2.0"
- autotests = false
- edition = "2018"
- rust-version = "1.67"
- [lib]
- doctest = false
- [features]
- default = ["std", "compiled_data"]
- std = ["alloc"]
- alloc = []
- compiled_data = ["icu_normalizer/compiled_data", "icu_properties/compiled_data"]
- [[test]]
- name = "tests"
- harness = false
- [[test]]
- name = "unit"
- [[test]]
- name = "unitbis"
- [dev-dependencies]
- assert_matches = "1.3"
- bencher = "0.1"
- tester = "0.9"
- serde_json = "1.0"
- [dependencies]
- icu_normalizer = "1.4.3"
- icu_properties = "1.4.2"
- utf8_iter = "1.0.4"
- smallvec = { version = "1.13.1", features = ["const_generics"]}
- [[bench]]
- name = "all"
- harness = false
- [package.metadata.docs.rs]
- rustdoc-args = ["--generate-link-to-definition"]
|