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
22 changes: 11 additions & 11 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.7.2"
version = "0.8.0"
edition = "2024"
rust-version = "1.92"
authors = ["init4"]
Expand Down Expand Up @@ -35,20 +35,20 @@ incremental = false

[workspace.dependencies]
# internal
signet-hot = { version = "0.7.2", path = "./crates/hot" }
signet-hot-mdbx = { version = "0.7.2", path = "./crates/hot-mdbx" }
signet-cold = { version = "0.7.2", path = "./crates/cold" }
signet-cold-mdbx = { version = "0.7.2", path = "./crates/cold-mdbx" }
signet-cold-sql = { version = "0.7.2", path = "./crates/cold-sql" }
signet-storage = { version = "0.7.2", path = "./crates/storage" }
signet-storage-types = { version = "0.7.2", path = "./crates/types" }
signet-hot = { version = "0.8.0", path = "./crates/hot" }
signet-hot-mdbx = { version = "0.8.0", path = "./crates/hot-mdbx" }
signet-cold = { version = "0.8.0", path = "./crates/cold" }
signet-cold-mdbx = { version = "0.8.0", path = "./crates/cold-mdbx" }
signet-cold-sql = { version = "0.8.0", path = "./crates/cold-sql" }
signet-storage = { version = "0.8.0", path = "./crates/storage" }
signet-storage-types = { version = "0.8.0", path = "./crates/types" }

# External, in-house
signet-libmdbx = { version = "0.8.0" }

signet-evm = "0.16.0-rc.11"
signet-types = "0.16.0-rc.11"
signet-zenith = "0.16.0-rc.11"
signet-evm = "0.17.1"
signet-types = "0.17.1"
signet-zenith = "0.17.1"

# trevm
trevm = { version = "0.34.0", features = ["full_env_cfg"] }
Expand Down
6 changes: 4 additions & 2 deletions crates/types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ mod sharded;
pub use sharded::ShardedKey;
pub use signet_evm::{Account, EthereumHardfork, genesis_header};
pub use signet_types::{
ConfirmationMeta, Confirmed, Receipt, TxLocation,
primitives::{SealedHeader, TransactionSigned},
ConfirmationMeta, Confirmed, Receipt, TxLocation, primitives::TransactionSigned,
};

/// A sealed header with a cached hash.
pub type SealedHeader = alloy::consensus::Sealed<alloy::consensus::Header>;

/// A recovered transaction type.
pub type RecoveredTx = Recovered<TransactionSigned>;