Skip to content

Commit

Permalink
Don't disable default features of form_urlencoded
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
madsmtm authored Mar 1, 2023
1 parent 8d68dc6 commit b58dccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion facebook-fb-login-deauth-callback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ readme = "README.md"
facebook-signed-request = { path = "../facebook-signed-request", version = "^0.1" }

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

0 comments on commit b58dccf

Please sign in to comment.