Cargo.toml 593 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "idna"
  3. version = "0.2.3"
  4. authors = ["The rust-url developers"]
  5. description = "IDNA (Internationalizing Domain Names in Applications) and Punycode."
  6. repository = "https://github.com/servo/rust-url/"
  7. license = "MIT OR Apache-2.0"
  8. autotests = false
  9. edition = "2018"
  10. rust-version = "1.51"
  11. [lib]
  12. doctest = false
  13. [[test]]
  14. name = "tests"
  15. harness = false
  16. [[test]]
  17. name = "unit"
  18. [dev-dependencies]
  19. assert_matches = "1.3"
  20. bencher = "0.1"
  21. tester = "0.9"
  22. serde_json = "1.0"
  23. [dependencies]
  24. unicode-bidi = "0.3"
  25. unicode-normalization = "0.1.17"
  26. [[bench]]
  27. name = "all"
  28. harness = false