1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14rust-version = "1.51" 15name = "idna" 16version = "0.5.0" 17authors = ["The rust-url developers"] 18autotests = false 19description = "IDNA (Internationalizing Domain Names in Applications) and Punycode." 20categories = ["no_std"] 21license = "MIT OR Apache-2.0" 22repository = "https://github.com/servo/rust-url/" 23 24[package.metadata.docs.rs] 25rustdoc-args = ["--generate-link-to-definition"] 26 27[lib] 28doctest = false 29 30[[test]] 31name = "tests" 32harness = false 33 34[[test]] 35name = "unit" 36 37[[bench]] 38name = "all" 39harness = false 40 41[dependencies.unicode-bidi] 42version = "0.3.10" 43features = ["hardcoded-data"] 44default-features = false 45 46[dependencies.unicode-normalization] 47version = "0.1.22" 48default-features = false 49 50[dev-dependencies.assert_matches] 51version = "1.3" 52 53[dev-dependencies.bencher] 54version = "0.1" 55 56[dev-dependencies.serde_json] 57version = "1.0" 58 59[dev-dependencies.tester] 60version = "0.9" 61 62[features] 63alloc = [] 64default = ["std"] 65std = [ 66 "alloc", 67 "unicode-bidi/std", 68 "unicode-normalization/std", 69] 70