Cargo.toml 843 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "url"
  3. version = "1.2.2"
  4. authors = ["The rust-url developers"]
  5. description = "URL library for Rust, based on the WHATWG URL Standard"
  6. documentation = "http://servo.github.io/rust-url/url/index.html"
  7. repository = "https://github.com/servo/rust-url"
  8. readme = "README.md"
  9. keywords = ["url", "parser"]
  10. license = "MIT/Apache-2.0"
  11. [[test]]
  12. name = "unit"
  13. [[test]]
  14. name = "data"
  15. harness = false
  16. [lib]
  17. test = false
  18. [dev-dependencies]
  19. rustc-test = "0.1"
  20. rustc-serialize = "0.3"
  21. [features]
  22. query_encoding = ["encoding"]
  23. heap_size = ["heapsize"]
  24. [dependencies]
  25. encoding = {version = "0.2", optional = true}
  26. heapsize = {version = ">=0.1.1, <0.4", optional = true}
  27. idna = { version = "0.1.0", path = "./idna" }
  28. matches = "0.1"
  29. rustc-serialize = {version = "0.3", optional = true}
  30. serde = {version = ">=0.6.1, <0.9", optional = true}