Cargo.toml 956 B

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