Cargo.toml 880 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "url"
  3. version = "1.3.0"
  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. [workspace]
  12. members = [".", "idna"]
  13. [[test]]
  14. name = "unit"
  15. [[test]]
  16. name = "data"
  17. harness = false
  18. [lib]
  19. test = false
  20. [dev-dependencies]
  21. rustc-test = "0.1"
  22. rustc-serialize = "0.3"
  23. [features]
  24. query_encoding = ["encoding"]
  25. heap_size = ["heapsize"]
  26. [dependencies]
  27. encoding = {version = "0.2", optional = true}
  28. heapsize = {version = ">=0.1.1, <0.4", optional = true}
  29. idna = { version = "0.1.0", path = "./idna" }
  30. matches = "0.1"
  31. rustc-serialize = {version = "0.3", optional = true}
  32. serde = {version = ">=0.6.1, <0.9", optional = true}