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 this crate uses `default-features = false` on `form_urlencoded` (which previously did nothing), it will break once that change lands.

Also requires l1h3r/did_url#2 to land (since this crate depends on `did_url`).
  • Loading branch information
madsmtm committed Mar 1, 2023
1 parent cbc2309 commit f14ed0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion identity_did/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description = "Agnostic implementation of the Decentralized Identifiers (DID) st

[dependencies]
did_url = { version = "0.1", default-features = false, features = ["std", "serde"] }
form_urlencoded = { version = "1.0.1", default-features = false }
form_urlencoded = "1.1.0"
identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core" }
serde.workspace = true
strum.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion identity_document/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description = "Method-agnostic implementation of the Decentralized Identifiers (

[dependencies]
did_url = { version = "0.1", default-features = false, features = ["std", "serde"] }
form_urlencoded = { version = "1.0.1", default-features = false }
form_urlencoded = "1.1.0"
identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core" }
identity_did = { version = "=0.7.0-alpha.5", path = "../identity_did" }
identity_verification = { version = "=0.7.0-alpha.5", path = "../identity_verification", default-features = false }
Expand Down

0 comments on commit f14ed0f

Please sign in to comment.