From 3fd6d45b3eb4b1001b90c57a21b28f0d9505e142 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Fri, 15 Sep 2023 13:59:29 -0400 Subject: [PATCH] Use base58-monero 2, removing a git dependency --- Cargo.lock | 6 ++++-- coins/monero/Cargo.toml | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f8933fe26..861421388 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -405,9 +405,11 @@ checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" [[package]] name = "base58-monero" -version = "1.1.0" -source = "git+https://github.com/monero-rs/base58-monero?rev=5045e8d2b817b3b6c1190661f504e879bc769c29#5045e8d2b817b3b6c1190661f504e879bc769c29" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "978e81a45367d2409ecd33369a45dda2e9a3ca516153ec194de1fbda4b9fb79d" dependencies = [ + "thiserror", "tiny-keccak", ] diff --git a/coins/monero/Cargo.toml b/coins/monero/Cargo.toml index 8a002fb42..982a939e2 100644 --- a/coins/monero/Cargo.toml +++ b/coins/monero/Cargo.toml @@ -52,7 +52,7 @@ hex = { version = "0.4", default-features = false, features = ["alloc"] } serde = { version = "1", default-features = false, features = ["derive", "alloc"] } serde_json = { version = "1", default-features = false, features = ["alloc"] } -base58-monero = { version = "1", git = "https://github.com/monero-rs/base58-monero", rev = "5045e8d2b817b3b6c1190661f504e879bc769c29", default-features = false, features = ["check"] } +base58-monero = { version = "2", default-features = false, features = ["check"] } # Used for the provided RPC digest_auth = { version = "0.3", optional = true } @@ -95,6 +95,8 @@ std = [ "hex/std", "serde/std", "serde_json/std", + + "base58-monero/std", ] http_rpc = ["digest_auth", "reqwest"]