From 2ad610928e5841c6a6c9e76f9ccc42c3cbd0c61b Mon Sep 17 00:00:00 2001 From: sebasti810 Date: Sun, 14 Jul 2024 15:26:35 +0200 Subject: [PATCH] fix: use latest keystore-version without features --- Cargo.lock | 10 +++++++++- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 23416bed..ce95da0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4054,15 +4054,23 @@ dependencies = [ "rayon", ] +[[package]] +name = "keyring" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f32930aef50aff920e88e6cf66b70a6d587a6f2bae6aeade5c1e583661a40f8e" + [[package]] name = "keystore" version = "0.1.0" -source = "git+https://github.com/deltadevsde/keystore?rev=40f21a41afd0654091bb0881665288034ab8533f#40f21a41afd0654091bb0881665288034ab8533f" +source = "git+https://github.com/deltadevsde/keystore?rev=389d6232a44b160d60d5931bc2b751775dc3ec9b#389d6232a44b160d60d5931bc2b751775dc3ec9b" dependencies = [ "aes-gcm", + "base64 0.22.1", "dotenvy", "ed25519-dalek", "hex 0.4.3", + "keyring", "mockall", "rand 0.8.5", "security-framework", diff --git a/Cargo.toml b/Cargo.toml index 41b41be7..558febcd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ ahash = "0.8.7" celestia-rpc = "0.2.0" celestia-types = "0.2.0" mockall = "0.12.1" -keystore = { git = "https://github.com/deltadevsde/keystore", rev = "40f21a41afd0654091bb0881665288034ab8533f" } +keystore = { git = "https://github.com/deltadevsde/keystore", rev = "389d6232a44b160d60d5931bc2b751775dc3ec9b" } pyroscope = "0.5.7" pyroscope_pprofrs = "0.2.7" toml = "0.8.14"