Cargo.toml 520 B

1234567891011121314151617181920
  1. [package]
  2. name = "uri"
  3. version = "0.3.0"
  4. authors = ["Jean Piere Dudey <jeandudey@hotmail.com>"]
  5. repository = "https://github.com/jeandudey/uri-rs.git"
  6. homepage = "https://github.com/jeandudey/uri-rs.git"
  7. license = "Apache-2.0"
  8. readme = "README.md"
  9. documentation = "http://jeandudey.github.io/uri-rs/"
  10. description = "uri is a library to help in the creation and parsing of an uri."
  11. [dependencies]
  12. regex = "0.1"
  13. clippy = {version = "0.0.64", optional = true}
  14. lazy_static = "0.2"
  15. [features]
  16. default = []
  17. dev = ["clippy"]