From e7e2651f03afc1e5fe4c6fb5d952e62d74dcb46d Mon Sep 17 00:00:00 2001 From: Rakan Alhneiti Date: Thu, 11 Apr 2024 08:36:57 +0300 Subject: [PATCH] Fix compilation --- Cargo.lock | 2 ++ bin/common/Cargo.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index d4d3d39..409b77c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2635,9 +2635,11 @@ dependencies = [ name = "raiden-bin-common" version = "0.0.1" dependencies = [ + "ethsign", "raiden-blockchain", "raiden-primitives", "rpassword", + "serde_json", "web3", ] diff --git a/bin/common/Cargo.toml b/bin/common/Cargo.toml index 62e328b..28d2825 100644 --- a/bin/common/Cargo.toml +++ b/bin/common/Cargo.toml @@ -12,6 +12,8 @@ rust-version = "1.59" [dependencies] # 3rd Party +ethsign = { version = "0.8.0" } +serde_json = { version = "1.0.59", default-features = false } rpassword = { version = "5.0.1", default-features = false } web3 = { version = "0.18.0", default-features = false, features = [ "http", "signing", "ws-tls-tokio" ] }