| 1 | [package] |
| 2 | name = "idna_adapter" |
| 3 | version = "1.2.0" |
| 4 | rust-version = "1.67.0" # Match ICU4X 1.4 |
| 5 | edition = "2021" |
| 6 | license = "Apache-2.0 OR MIT" |
| 7 | authors = ["The rust-url developers" ] |
| 8 | readme = "README.md" |
| 9 | description = "Back end adapter for idna" |
| 10 | categories = ["no-std" , "internationalization" ] |
| 11 | keywords = ["unicode" , "dns" , "idna" ] |
| 12 | documentation = "https://docs.rs/idna_adapter/latest/idna_adapter/" |
| 13 | homepage = "https://docs.rs/crate/idna_adapter/latest" # README link |
| 14 | repository = "https://github.com/hsivonen/idna_adapter" |
| 15 | |
| 16 | [dependencies] |
| 17 | icu_normalizer = "1.4.3" |
| 18 | icu_properties = "1.4.2" |
| 19 | |
| 20 | [features] |
| 21 | compiled_data = ["icu_normalizer/compiled_data" , "icu_properties/compiled_data" ] |
| 22 | |