Cargo.toml 440 B

12345678910111213141516
  1. [package]
  2. name = "form_urlencoded"
  3. version = "1.0.1"
  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. rust-version = "1.45"
  10. [lib]
  11. test = false
  12. [dependencies]
  13. matches = "0.1"
  14. percent-encoding = { version = "2.1.0", path = "../percent_encoding" }