Skip to content

Commit b58dccf

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 the `facebook-fb-login-deauth-callback` uses `default-features = false` on `form_urlencoded` (which previously did nothing), it will break once that change lands.
1 parent 8d68dc6 commit b58dccf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

facebook-fb-login-deauth-callback/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ readme = "README.md"
1616
facebook-signed-request = { path = "../facebook-signed-request", version = "^0.1" }
1717

1818
http = { version = "0.2", default-features = false }
19-
form_urlencoded = { version = "1", default-features = false }
19+
form_urlencoded = "1.1.0"

0 commit comments

Comments
 (0)