Skip to content
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "init4-bin-base"

description = "Internal utilities for binaries produced by the init4 team"
keywords = ["init4", "bin", "base"]
version = "0.21.0"
version = "0.22.0"
edition = "2021"
rust-version = "1.92"
authors = ["init4", "James Prestwich", "evalir", "Fraser Hutchison"]
Expand All @@ -16,8 +16,8 @@ init4-from-env-derive = { version = "0.2.0", path = "from-env-derive" }

# Signet
signet-cold-sql = { version = "0.9.0", optional = true, default-features = false, features = ["postgres", "sqlite"] }
signet-constants = { version = "0.18.0" }
signet-tx-cache = { version = "0.18.0", optional = true }
signet-constants = "0.19.0"
signet-tx-cache = { version = "0.19.0", optional = true }

# alloy
alloy = { version = "1.0.35", optional = true, default-features = false, features = ["std", "signer-local", "consensus", "network"] }
Expand Down
1 change: 1 addition & 0 deletions src/utils/calc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ impl From<KnownChains> for SlotCalculator {
match value {
KnownChains::Mainnet => SlotCalculator::mainnet(),
KnownChains::Parmigiana => SlotCalculator::parmigiana_host(),
KnownChains::Gouda => SlotCalculator::parmigiana_host(),
#[allow(deprecated)]
KnownChains::Pecorino => SlotCalculator::pecorino_host(),
KnownChains::Test => SlotCalculator::new(
Expand Down