From 9ec2424ddf195b5f5e86717b0aecc2cc7e663a40 Mon Sep 17 00:00:00 2001 From: Sven Date: Mon, 6 May 2024 14:08:42 +0200 Subject: [PATCH] Update identity_ecdsa_verifier/Cargo.toml Co-authored-by: wulfraem --- identity_ecdsa_verifier/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/identity_ecdsa_verifier/Cargo.toml b/identity_ecdsa_verifier/Cargo.toml index f2d0fc025a..22e85c3dc6 100644 --- a/identity_ecdsa_verifier/Cargo.toml +++ b/identity_ecdsa_verifier/Cargo.toml @@ -12,13 +12,13 @@ rust-version.workspace = true workspace = true [dependencies] -identity_verification.workspace = true -k256 = { workspace = true, features = ["std", "ecdsa", "ecdsa-core"], optional = true } -p256 = { workspace = true, features = ["std", "ecdsa", "ecdsa-core"], optional = true } -signature.workspace = true +identity_verification = { version = "=1.2.0", path = "../identity_verification", default-features = false } +k256 = { version = "0.13.3", default-features = false, features = ["std", "ecdsa", "ecdsa-core"], optional = true } +p256 = { version = "0.13.2", default-features = false, features = ["std", "ecdsa", "ecdsa-core"], optional = true } +signature = { version = "2", default-features = false } [dev-dependencies] -josekit.workspace = true +josekit = "0.8.6" serde_json.workspace = true [features]