diff --git a/examples/Cargo.toml b/examples/Cargo.toml index f9b9ffebab..5829e0c995 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -13,9 +13,9 @@ identity_stronghold = { path = "../identity_stronghold", default-features = fals iota-sdk = { version = "1.0", default-features = false, features = ["tls", "client", "stronghold"] } primitive-types = "0.12.1" rand = "0.8.5" -tokio = { version = "1.29", default-features = false, features = ["rt"] } sd-jwt-payload = { version = "0.1.0", default-features = false, features = ["sha"] } serde_json = { version = "1.0", default-features = false } +tokio = { version = "1.29", default-features = false, features = ["rt"] } [lib] path = "utils/utils.rs" diff --git a/identity_credential/Cargo.toml b/identity_credential/Cargo.toml index 54889c7d35..0ba72f2a5c 100644 --- a/identity_credential/Cargo.toml +++ b/identity_credential/Cargo.toml @@ -24,13 +24,13 @@ itertools = { version = "0.11", default-features = false, features = ["use_std"] once_cell = { version = "1.18", default-features = false, features = ["std"] } reqwest = { version = "0.11", default-features = false, features = ["default-tls", "json", "stream"], optional = true } roaring = { version = "0.10", default-features = false, optional = true } +sd-jwt-payload = { version = "0.1.0", default-features = false, features = ["sha"] } serde.workspace = true +serde_json.workspace = true serde_repr = { version = "0.1", default-features = false, optional = true } strum.workspace = true thiserror.workspace = true url = { version = "2.5", default-features = false } -serde_json.workspace = true -sd-jwt-payload = { version = "0.1.0", default-features = false, features = ["sha"] } [dev-dependencies] identity_eddsa_verifier = { version = "=1.0.0", path = "../identity_eddsa_verifier", default-features = false, features = ["ed25519"] }