From 53f820df23e5c3ccaa65fba42fda61609d4f62f8 Mon Sep 17 00:00:00 2001 From: Devin Turner <5410284+l1h3r@users.noreply.github.com> Date: Tue, 27 Oct 2020 19:45:10 +0000 Subject: [PATCH] Use local identity_crypto crate (#61) --- identity_core/Cargo.toml | 2 +- identity_proof/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/identity_core/Cargo.toml b/identity_core/Cargo.toml index f5075ddef2..bc9bb2a56e 100644 --- a/identity_core/Cargo.toml +++ b/identity_core/Cargo.toml @@ -30,7 +30,7 @@ url = { version = "2.1", default-features = false, features = ["serde"] } serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", features = ["preserve_order"] } -identity_crypto = { git = "https://github.com/iotaledger/identity.rs", branch = "feat/identity-signature-suites" } +identity_crypto = { path = "../identity_crypto" } identity_diff = { path = "../identity_diff", version = "0.1.0", features = ["diff_derive"] } # parser crates diff --git a/identity_proof/Cargo.toml b/identity_proof/Cargo.toml index 1b48d618c6..4713d3dd9c 100644 --- a/identity_proof/Cargo.toml +++ b/identity_proof/Cargo.toml @@ -19,5 +19,5 @@ identity_crypto = { path = "../identity_crypto" } serde = { version = "1.0", features = ["derive"] } serde_jcs = { git = "https://github.com/l1h3r/serde_jcs", branch = "main", default-features = false } serde_json = { version = "1.0", features = ["preserve_order"] } -sodiumoxide = { version = "0.2", default-features = false } +sodiumoxide = { version = "0.2", default-features = false, features = ["std"] } thiserror = "1.0"