Cargo.toml 427 B

123456789101112131415
  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 OR Apache-2.0"
  8. edition = "2018"
  9. rust-version = "1.51"
  10. [lib]
  11. test = false
  12. [dependencies]
  13. percent-encoding = { version = "2.1.0", path = "../percent_encoding" }