1diff --git a/consensus/types/Cargo.toml b/consensus/types/Cargo.toml
2index 46b88af66..c8c909234 100644
3--- a/consensus/types/Cargo.toml
4+++ b/consensus/types/Cargo.toml
5@@ -37,7 +37,7 @@ cached_tree_hash = { path = "../cached_tree_hash" }
6 serde_yaml = "0.8.13"
7 tempfile = "3.1.0"
8 derivative = "2.1.1"
9-rusqlite = { version = "0.28.0", features = ["bundled"], optional = true }
10+rusqlite = { version = "0.28.0", optional = true }
11 # The arbitrary dependency is enabled by default since Capella to avoid complexity introduced by
12 # `AbstractExecPayload`
13 arbitrary = { version = "1.0", features = ["derive"] }
14diff --git a/validator_client/slashing_protection/Cargo.toml b/validator_client/slashing_protection/Cargo.toml
15index 631e54dc4..dec95156b 100644
16--- a/validator_client/slashing_protection/Cargo.toml
17+++ b/validator_client/slashing_protection/Cargo.toml
18@@ -12,7 +12,7 @@ path = "tests/main.rs"
19 [dependencies]
20 tempfile = "3.1.0"
21 types = { path = "../../consensus/types" }
22-rusqlite = { version = "0.28.0", features = ["bundled"] }
23+rusqlite = { version = "0.28.0" }
24 r2d2 = "0.8.9"
25 r2d2_sqlite = "0.21.0"
26 serde = "1.0.116"