Skip to content
Merged
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
58 changes: 29 additions & 29 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.18.0"
version = "0.19.0"
edition = "2024"
rust-version = "1.88"
authors = ["init4"]
Expand Down Expand Up @@ -34,34 +34,34 @@ debug = false
incremental = false

[workspace.dependencies]
signet-blobber = { version = "0.18.0", path = "crates/blobber" }
signet-block-processor = { version = "0.18.0", path = "crates/block-processor" }
signet-genesis = { version = "0.18.0", path = "crates/genesis" }
signet-host-reth = { version = "0.18.0", path = "crates/host-reth" }
signet-host-rpc = { version = "0.18.0", path = "crates/host-rpc" }
signet-node = { version = "0.18.0", path = "crates/node" }
signet-node-config = { version = "0.18.0", path = "crates/node-config" }
signet-node-tests = { version = "0.18.0", path = "crates/node-tests" }
signet-node-types = { version = "0.18.0", path = "crates/node-types" }
signet-rpc = { version = "0.18.0", path = "crates/rpc" }

init4-bin-base = { version = "0.21.0", features = ["alloy"] }

signet-bundle = "0.18"
signet-constants = "0.18"
signet-evm = "0.18"
signet-extract = "0.18"
signet-test-utils = "0.18"
signet-tx-cache = "0.18"
signet-types = "0.18"
signet-zenith = "0.18"
signet-journal = "0.18"
signet-storage = "0.9"
signet-cold = "0.9"
signet-hot = "0.9"
signet-hot-mdbx = "0.9"
signet-cold-mdbx = "0.9"
signet-storage-types = "0.9"
signet-blobber = { version = "0.19.0", path = "crates/blobber" }
signet-block-processor = { version = "0.19.0", path = "crates/block-processor" }
signet-genesis = { version = "0.19.0", path = "crates/genesis" }
signet-host-reth = { version = "0.19.0", path = "crates/host-reth" }
signet-host-rpc = { version = "0.19.0", path = "crates/host-rpc" }
signet-node = { version = "0.19.0", path = "crates/node" }
signet-node-config = { version = "0.19.0", path = "crates/node-config" }
signet-node-tests = { version = "0.19.0", path = "crates/node-tests" }
signet-node-types = { version = "0.19.0", path = "crates/node-types" }
signet-rpc = { version = "0.19.0", path = "crates/rpc" }

init4-bin-base = { version = "0.23.1", features = ["alloy"] }

signet-bundle = "0.19"
signet-constants = "0.19"
signet-evm = "0.19"
signet-extract = "0.19"
signet-test-utils = "0.19"
signet-tx-cache = "0.19"
signet-types = "0.19"
signet-zenith = "0.19"
signet-journal = "0.19"
signet-storage = "0.10"
signet-cold = "0.10"
signet-hot = "0.10"
signet-hot-mdbx = "0.10"
signet-cold-mdbx = "0.10"
signet-storage-types = "0.10"

# ajj
ajj = "0.7.0"
Expand Down
5 changes: 3 additions & 2 deletions crates/genesis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ Genesis configuration and utilities for the Signet Node.
This library contains the following:

- `GenesisSpec` - An enum representing different genesis specifications
(Mainnet, Parmigiana, Pecorino, Test, or custom file paths), which can be
used to load genesis data.
(Mainnet, Parmigiana, Gouda, Pecorino, Test, or custom file paths), which
can be used to load genesis data.
- `NetworkGenesis` - A struct containing both rollup and host genesis
configurations.
- `PARMIGIANA_GENESIS` / `PARMIGIANA_HOST_GENESIS` - The Parmigiana genesis
data.
- `GOUDA_GENESIS` - The Gouda rollup genesis. Host side reuses `PARMIGIANA_HOST_GENESIS`.
- `PECORINO_GENESIS` / `PECORINO_HOST_GENESIS` - The Pecorino genesis data.
- `TEST_GENESIS` / `TEST_HOST_GENESIS` - Local test genesis for testing
purposes.
Expand Down
Loading