Cargo.toml 418 B

123456789101112131415
  1. [package]
  2. name = "form_urlencoded"
  3. version = "1.0.0"
  4. authors = ["The rust-url developers"]
  5. description = "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms."
  6. repository = "https://github.com/servo/rust-url"
  7. license = "MIT/Apache-2.0"
  8. edition = "2018"
  9. [lib]
  10. test = false
  11. [dependencies]
  12. matches = "0.1"
  13. percent-encoding = { version = "2.1.0", path = "../percent_encoding" }