From 160f788ba08c2d3ea84e0f2f3905b4dc59034563 Mon Sep 17 00:00:00 2001 From: Abdulrahim Al Methiab Date: Thu, 2 Mar 2023 17:12:24 +0100 Subject: [PATCH 1/2] pin `form_urlencoded` --- identity_did/Cargo.toml | 2 +- identity_document/Cargo.toml | 2 +- identity_iota_client_legacy/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/identity_did/Cargo.toml b/identity_did/Cargo.toml index be99741ce4..ffc327093d 100644 --- a/identity_did/Cargo.toml +++ b/identity_did/Cargo.toml @@ -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 = { version = "=1.1.0", default-features = false } identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core" } serde.workspace = true strum.workspace = true diff --git a/identity_document/Cargo.toml b/identity_document/Cargo.toml index 2c57a8b0a8..a079a4dfe4 100644 --- a/identity_document/Cargo.toml +++ b/identity_document/Cargo.toml @@ -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 = { version = "=1.1.0", default-features = false } 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 } diff --git a/identity_iota_client_legacy/Cargo.toml b/identity_iota_client_legacy/Cargo.toml index 4e08bed50f..c27ca6016b 100644 --- a/identity_iota_client_legacy/Cargo.toml +++ b/identity_iota_client_legacy/Cargo.toml @@ -17,7 +17,7 @@ description = "Tangle Client integration for the IOTA DID Method." async-trait = { version = "0.1", default-features = false } bee-rest-api = { version = "0.1.7", default-features = false } brotli = { version = "3.3", default-features = false, features = ["std"] } -form_urlencoded = { version = "1.0" } +form_urlencoded = { version = "=1.1.0" } futures = { version = "0.3" } identity_core = { version = "0.7.0-alpha.1", path = "../identity_core", default-features = false } identity_credential = { version = "0.7.0-alpha.1", path = "../identity_credential", default-features = false, features = ["validator"] } From 9013c152fc3ae0065323ae0fe4d425c438786cc9 Mon Sep 17 00:00:00 2001 From: Abdulrahim Al Methiab Date: Fri, 3 Mar 2023 12:31:06 +0100 Subject: [PATCH 2/2] remove `default-features = false` --- identity_did/Cargo.toml | 2 +- identity_document/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/identity_did/Cargo.toml b/identity_did/Cargo.toml index ffc327093d..9f840b7cdd 100644 --- a/identity_did/Cargo.toml +++ b/identity_did/Cargo.toml @@ -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.1.0", default-features = false } +form_urlencoded = { version = "=1.1.0" } identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core" } serde.workspace = true strum.workspace = true diff --git a/identity_document/Cargo.toml b/identity_document/Cargo.toml index a079a4dfe4..8162484a96 100644 --- a/identity_document/Cargo.toml +++ b/identity_document/Cargo.toml @@ -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.1.0", default-features = false } +form_urlencoded = { version = "=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 }