Skip to content
Merged
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ incremental = false
[workspace.dependencies]
# internal
signet-hot = { version = "0.0.1", path = "./crates/hot" }
signet-hot-mdbx = { version = "0.0.1", path = "./crates/hot-mdbx" }
signet-mdbx-hot = { version = "0.0.1", path = "./crates/mdbx-hot" }
signet-cold = { version = "0.0.1", path = "./crates/cold" }
signet-cold-mdbx = { version = "0.0.1", path = "./crates/cold-mdbx" }
signet-storage = { version = "0.0.1", path = "./crates/storage" }
signet-storage-types = { version = "0.0.1", path = "./crates/types" }

Expand Down
30 changes: 30 additions & 0 deletions crates/cold-mdbx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[package]
name = "signet-cold-mdbx"
description = "MDBX table definitions for signet-cold storage"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
keywords = ["mdbx", "storage", "cold-storage", "blockchain"]
categories = ["database-implementations"]

[dependencies]
alloy.workspace = true
signet-cold = { version = "0.0.1", path = "../cold" }
signet-hot.workspace = true
signet-hot-mdbx.workspace = true
signet-storage-types.workspace = true
thiserror.workspace = true

[dev-dependencies]
signet-hot-mdbx = { workspace = true, features = ["test-utils"] }
signet-libmdbx.workspace = true
tempfile.workspace = true
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }

[features]
default = []
test-utils = ["signet-cold/test-utils"]
Loading