cargo: replace url with percent-encoding
Turns out we were just using the re-export of the `percent-encoding` trait anyways. The `Url` type comes from `reqwest`.
... | ... | @@ -16,9 +16,9 @@ categories = ["web-programming", "api-bindings"] |
hyper = { version = "~0.11.9", default-features = false } | ||
itertools = "~0.7" | ||
log = "~0.4" | ||
percent-encoding = "^1.0" | ||
reqwest = "~0.8" | ||
serde_derive = "^1.0" | ||
url = "^1.4" | ||
chrono = { version = "~0.4", features = ["serde"] } | ||
error-chain = ">= 0.9, < 0.11" | ||
... | ... |
Please register or sign in to comment