From db73246105eb5be5f3edb8803f8da55dc05cbc62 Mon Sep 17 00:00:00 2001 From: gRoussac Date: Tue, 17 Oct 2023 15:23:55 +0200 Subject: [PATCH] Change cargo toml to pull dev and not rustSDK-1.6 --- Cargo.toml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 30a52a21..4413d248 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,12 +26,10 @@ path = "src/main.rs" doc = false [dependencies] -casper-hashing = { version = "2.0.0", git = "https://github.com/casper-network/casper-node", branch = "rustSDK-1.6" } +casper-hashing = { version = "2.0.0" } async-trait = "0.1.59" base16 = "0.2.1" -casper-types = { version = "3.0.0", git = "https://github.com/casper-network/casper-node", branch = "rustSDK-1.6", features = [ - "std", -] } +casper-types = { version = "3.0.0", features = ["std"] } clap = { version = "4", features = ["cargo", "deprecated"] } clap_complete = "4" hex-buffer-serde = "0.4.0" @@ -58,6 +56,10 @@ sdk = ["casper-types/sdk"] [build-dependencies] vergen = { version = "7", default-features = false, features = ["git"] } +[patch.crates-io] +casper-hashing = { git = "https://github.com/casper-network/casper-node", branch = "dev" } +casper-types = { git = "https://github.com/casper-network/casper-node", branch = "dev" } + [package.metadata.deb] features = ["vendored-openssl"] revision = "0"