Skip to content

Commit 6e8a078

Browse files
authored
Don't disable default features of form_urlencoded
In servo/rust-url#722, we would like to make the crate potentially not need `alloc` in the future, but to do so, we must now introduce a required `alloc` feature. Since this crate uses `default-features = false` on `form_urlencoded` (which previously did nothing), it will break once that change lands.
1 parent f1b5ce9 commit 6e8a078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include = ["src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
1212
readme = "README.md"
1313

1414
[dependencies]
15-
form_urlencoded = { version = "1.0", default-features = false }
15+
form_urlencoded = "1.0"
1616
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"], optional = true }
1717

1818
[dev-dependencies]

0 commit comments

Comments
 (0)