From 61cd19a52d41d60c1987ecf269f7aa8e4d527310 Mon Sep 17 00:00:00 2001 From: Alex Wied Date: Thu, 14 Apr 2022 16:21:02 -0400 Subject: [PATCH] Cargo.toml: Rename hdwallet source This change fixes the following build error on Nix: error: source `https://github.com/nuttycom/hdwallet` defines source https://github.com/nuttycom/hdwallet?rev=9b4c1bdbe0517e3a7a8f285d6048a37d472ba3bc, but that source is already defined by `https://github.com/nuttycom/hdwallet.git` note: Sources are not allowed to be defined multiple times. make[2]: *** [Makefile:9325: cargo-build-bins] Error 101 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 212c2a245..18a1d68eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -761,7 +761,7 @@ dependencies = [ [[package]] name = "hdwallet" version = "0.3.0" -source = "git+https://github.com/nuttycom/hdwallet?rev=9b4c1bdbe0517e3a7a8f285d6048a37d472ba3bc#9b4c1bdbe0517e3a7a8f285d6048a37d472ba3bc" +source = "git+https://github.com/nuttycom/hdwallet.git?rev=9b4c1bdbe0517e3a7a8f285d6048a37d472ba3bc#9b4c1bdbe0517e3a7a8f285d6048a37d472ba3bc" dependencies = [ "lazy_static", "rand_core 0.6.3", diff --git a/Cargo.toml b/Cargo.toml index f6fa4088f..dca295334 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,7 +84,7 @@ panic = 'abort' codegen-units = 1 [patch.crates-io] -hdwallet = { git = "https://github.com/nuttycom/hdwallet", rev = "9b4c1bdbe0517e3a7a8f285d6048a37d472ba3bc" } +hdwallet = { git = "https://github.com/nuttycom/hdwallet.git", rev = "9b4c1bdbe0517e3a7a8f285d6048a37d472ba3bc" } zcash_address = { git = "https://github.com/zcash/librustzcash.git", rev = "d14e7a707ce01cefcbc82651dad48f002185dded" } zcash_encoding = { git = "https://github.com/zcash/librustzcash.git", rev = "d14e7a707ce01cefcbc82651dad48f002185dded" } zcash_history = { git = "https://github.com/zcash/librustzcash.git", rev = "d14e7a707ce01cefcbc82651dad48f002185dded" }