Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 82 additions & 4 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ members = [
"crates/service",
"crates/simple-ee",
"crates/snark-acct-types",
"crates/sps62-checkpoint-types",
"crates/state",
"crates/status",
"crates/storage",
Expand Down Expand Up @@ -396,6 +397,9 @@ sha2 = "0.10"
shrex = { version = "1", features = ["serde"] }
shrex_macros = "1"
sled = "0.34.7"
ssz = { git = "https://github.com/alpenlabs/ssz-gen", branch = "main" }
ssz_derive = { git = "https://github.com/alpenlabs/ssz-gen", branch = "main" }
ssz_types = { git = "https://github.com/alpenlabs/ssz-gen", branch = "main" }
tempfile = "3.10.1"
terrors = "0.3.0"
thiserror = "2.0.11"
Expand All @@ -406,6 +410,8 @@ tower = "0.5"
tracing = "0.1"
tracing-opentelemetry = "0.27"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
tree_hash = { git = "https://github.com/alpenlabs/ssz-gen", branch = "main" }
tree_hash_derive = { git = "https://github.com/alpenlabs/ssz-gen", branch = "main" }
uuid = { version = "1.0", features = ["v4", "serde"] }
zeroize = { version = "1.8.1", features = ["derive"] }

Expand Down
17 changes: 17 additions & 0 deletions crates/sps62-checkpoint-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "sps62-checkpoint-types"
version = "0.1.0"
edition = "2021"
description = "SPS-62 checkpoint types with SSZ serialization"

[lints]
workspace = true

[dependencies]
ssz = { workspace = true }
ssz_derive = { workspace = true }
ssz_types = { workspace = true }
tree_hash = { workspace = true }
tree_hash_derive = { workspace = true }

[dev-dependencies]
10 changes: 10 additions & 0 deletions crates/sps62-checkpoint-types/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//! SPS-62 checkpoint types with SSZ serialization.

#![warn(missing_debug_implementations)]
#![warn(missing_docs)]

mod types;

pub use ssz;
pub use tree_hash;
pub use types::*;
Loading
Loading