diff --git a/consensus/types/Cargo.toml b/consensus/types/Cargo.toml index 78c6f871cb..feea855c84 100644 --- a/consensus/types/Cargo.toml +++ b/consensus/types/Cargo.toml @@ -8,7 +8,7 @@ authors = [ edition = { workspace = true } [features] -default = ["sqlite", "legacy-arith"] +default = ["legacy-arith"] # Allow saturating arithmetic on slots and epochs. Enabled by default, but deprecated. legacy-arith = [] sqlite = ["dep:rusqlite"] diff --git a/validator_client/slashing_protection/Cargo.toml b/validator_client/slashing_protection/Cargo.toml index b80da6c786..86df6d01fe 100644 --- a/validator_client/slashing_protection/Cargo.toml +++ b/validator_client/slashing_protection/Cargo.toml @@ -23,7 +23,7 @@ serde = { workspace = true } serde_json = { workspace = true } tempfile = { workspace = true } tracing = { workspace = true } -types = { workspace = true } +types = { workspace = true, features = ["sqlite"] } [dev-dependencies] rayon = { workspace = true }