Skip to content

Commit

Permalink
Implement Scale Encode and Decode Traits for Light Client (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
dharjeezy authored Mar 21, 2023
1 parent a326f56 commit 592d28a
Show file tree
Hide file tree
Showing 6 changed files with 785 additions and 41 deletions.
142 changes: 102 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@ base2 = { version = "0.3.1", default-features = false}
ethereum-consensus = { git = "https://github.com/polytope-labs/ethereum-consensus", rev = "d3fe0ad76613b52cdfbdea7c317ecdc35f271e4f", default-features = false }
ssz-rs = { git = "https://github.com/polytope-labs/ssz-rs", rev = "2e28a8800787392045fb3f8f1eaef6c65a8600d7", default-features = false }
hex-literal = { package = "hex-literal", version = "0.3.3", default-features = false }
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = [
"derive"
] }

[features]
default = ["std"]
std = [
"ssz-rs/std"
"ssz-rs/std",
'codec/std'
]
testing = []
Loading

0 comments on commit 592d28a

Please sign in to comment.