Skip to content

Commit

Permalink
Change cargo toml to pull dev and not rustSDK-1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gRoussac committed Oct 17, 2023
1 parent 97d00ea commit db73246
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit db73246

Please sign in to comment.