[package]
edition = "2024"
name = "ada-idna"
version = "0.1.0"
authors = ["ada-idna contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast IDNA (Internationalized Domain Names in Applications) implementation in Rust"
readme = "README.md"
keywords = [
"idna",
"unicode",
"punycode",
"domain",
"url",
]
categories = [
"text-processing",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ada-url/idna-rust"
[lib]
name = "ada_idna"
path = "src/lib.rs"
[[test]]
name = "identifier_tests"
path = "tests/identifier_tests.rs"
[[test]]
name = "mapping_tests"
path = "tests/mapping_tests.rs"
[[test]]
name = "punycode_tests"
path = "tests/punycode_tests.rs"
[[test]]
name = "to_ascii_tests"
path = "tests/to_ascii_tests.rs"
[[test]]
name = "to_unicode_tests"
path = "tests/to_unicode_tests.rs"
[[test]]
name = "wpt_tests"
path = "tests/wpt_tests.rs"
[dependencies]
[dev-dependencies]