diff options
Diffstat (limited to 'vendor/percent-encoding/Cargo.toml')
-rw-r--r-- | vendor/percent-encoding/Cargo.toml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vendor/percent-encoding/Cargo.toml b/vendor/percent-encoding/Cargo.toml index 53d0b6307..048ffc900 100644 --- a/vendor/percent-encoding/Cargo.toml +++ b/vendor/percent-encoding/Cargo.toml @@ -13,12 +13,14 @@ edition = "2018" rust-version = "1.51" name = "percent-encoding" -version = "2.2.0" +version = "2.3.0" authors = ["The rust-url developers"] description = "Percent encoding and decoding" +categories = ["no_std"] license = "MIT OR Apache-2.0" repository = "https://github.com/servo/rust-url/" [features] alloc = [] -default = ["alloc"] +default = ["std"] +std = ["alloc"] |