Cargo.toml 480 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "idna"
  3. version = "0.1.0"
  4. authors = ["Simon Sapin <simon.sapin@exyr.org>"]
  5. description = "IDNA (Internationalizing Domain Names in Applications) and Punycode."
  6. repository = "https://github.com/servo/rust-url/"
  7. license = "MIT/Apache-2.0"
  8. [lib]
  9. doctest = false
  10. test = false
  11. [[test]]
  12. name = "tests"
  13. harness = false
  14. [dev-dependencies]
  15. rustc-test = "0.1"
  16. rustc-serialize = "0.3"
  17. [dependencies]
  18. unicode-bidi = "0.2.3"
  19. unicode-normalization = "0.1.2"
  20. matches = "0.1"