Cargo.toml 401 B

1234567891011121314
  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. [lib]
  9. test = false
  10. [dependencies]
  11. matches = "0.1"
  12. percent-encoding = { version = "2.1.0", path = "../percent_encoding" }