Skip to content

Commit 9ee1d05

Browse files
committed
fix cocoon dependency preventing tools build
1 parent f155397 commit 9ee1d05

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.71.0"
2+
channel = "1.87.0"
33
components = ["rust-src", "rustfmt", "rust-std"]

src/jormungandr/testing/thor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ chain-core = { path = "../../../chain-libs/chain-core" }
1717
chain-vote = { path = "../../../chain-libs/chain-vote" }
1818
assert_fs = "1.0"
1919
serde = { version = "1.0", features = ["derive"] }
20-
cocoon = { git = "https://github.com/dkijania/cocoon.git" }
20+
cocoon = "0.4.3"
2121
dirs = "4.0.0"
2222
serde_yaml = "0.8"
2323
clap = { workspace = true }

src/jormungandr/testing/thor/src/cli/wallet_controller.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ impl WalletController {
120120
data: Vec<bech32::u5>,
121121
password: &str,
122122
) -> Result<(), Error> {
123-
let cocoon = Cocoon::new(password.as_bytes());
123+
let mut cocoon = Cocoon::new(password.as_bytes());
124124
let secret_file = self.config_manager.alias_secret_file(&alias)?;
125125
let mut file = File::create(&secret_file)?;
126126

src/vit-testing/iapyx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ image = "0.23"
5353
eccoxide = { git = "https://github.com/eugene-babichenko/eccoxide.git", branch = "fast-u64-scalar-mul", features = ["fast-u64-scalar-mul"], optional = true }
5454
rayon = "1"
5555
bincode = "1.3.3"
56-
cocoon = { git = "https://github.com/dkijania/cocoon.git" }
56+
cocoon = "0.4.3"
5757
vit-servicing-station-lib = { path = "../../vit-servicing-station/vit-servicing-station-lib" }
5858
prettytable-rs = "0.10.0"
5959
reqwest = { workspace = true }

0 commit comments

Comments
 (0)