Skip to content

Commit f14ed0f

Browse files
committed
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. Also requires l1h3r/did_url#2 to land (since this crate depends on `did_url`).
1 parent cbc2309 commit f14ed0f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

identity_did/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "Agnostic implementation of the Decentralized Identifiers (DID) st
1212

1313
[dependencies]
1414
did_url = { version = "0.1", default-features = false, features = ["std", "serde"] }
15-
form_urlencoded = { version = "1.0.1", default-features = false }
15+
form_urlencoded = "1.1.0"
1616
identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core" }
1717
serde.workspace = true
1818
strum.workspace = true

identity_document/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description = "Method-agnostic implementation of the Decentralized Identifiers (
1313

1414
[dependencies]
1515
did_url = { version = "0.1", default-features = false, features = ["std", "serde"] }
16-
form_urlencoded = { version = "1.0.1", default-features = false }
16+
form_urlencoded = "1.1.0"
1717
identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core" }
1818
identity_did = { version = "=0.7.0-alpha.5", path = "../identity_did" }
1919
identity_verification = { version = "=0.7.0-alpha.5", path = "../identity_verification", default-features = false }

0 commit comments

Comments
 (0)