Skip to content

Commit

Permalink
Merge pull request #9 from cspr-rad/support-casper-2-rc4
Browse files Browse the repository at this point in the history
Update to support casper 2.0.0-rc4
  • Loading branch information
xcthulhu authored Sep 24, 2024
2 parents 9f27877 + e0e8a58 commit fbb5719
Show file tree
Hide file tree
Showing 113 changed files with 58 additions and 7,993 deletions.
11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "casper-litmus"
version = "0.1.1"
version = "0.2.0"
edition = "2021"

[dependencies]
base16 = { version = "0.2.1", default-features = false, features = ["alloc"] }
blake2b_simd = { version = "1.0.2", default-features = false }
casper-types = "4.0.1"
casper-types = { git = "https://github.com/casper-network/casper-node.git", branch = "feat-2.0", features = ["datasize", "json-schema", "std"] }
casper-storage = { git = "https://github.com/casper-network/casper-node.git", branch = "feat-2.0" }
ed25519-dalek = { version = "2.0.0", default-features = false, features = [
"alloc",
"zeroize",
Expand All @@ -17,6 +18,7 @@ k256 = { version = "0.13.1", default-features = false, features = [
"sha256",
] }
serde = { version = "1.0.195", default-features = false, features = ["derive"] }
serde-map-to-array = "1"
time = { version = "0.3.31", default-features = false, features = [
"serde",
"formatting",
Expand All @@ -25,10 +27,7 @@ time = { version = "0.3.31", default-features = false, features = [

[dev-dependencies]
bincode = "1.3.3"
casper-hashing = "3.0.0"
casper-execution-engine = "7.0.1"
casper-types = { version = "4.0.1", features = ["gens"] }
casper-node = "1.5.6"
casper-execution-engine = { git = "https://github.com/casper-network/casper-node.git", branch = "feat-2.0" }
hex = "0.4.3"
once_cell = "1.19.0"
serde_json = "1.0.111"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.75.0"
channel = "stable"
components = ["rustfmt", "clippy"]
Loading

0 comments on commit fbb5719

Please sign in to comment.