diff --git a/Cargo.lock b/Cargo.lock index 76c062d502..824bd84626 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2540,9 +2540,9 @@ dependencies = [ [[package]] name = "libsqlite3-sys" -version = "0.17.3" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56d90181c2904c287e5390186be820e5ef311a3c62edebb7d6ca3d6a48ce041d" +checksum = "1e704a02bcaecd4a08b93a23f6be59d0bd79cd161e0963e9499165a0a35df7bd" dependencies = [ "cc", "pkg-config", @@ -3449,9 +3449,9 @@ dependencies = [ [[package]] name = "r2d2_sqlite" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e15ff794e7c8bb8ae20ccac5bac6a93a4a3af708dd801d4094f80da41196f33" +checksum = "ed60ebe88b27ac28c0563bc0fbeaecd302ff53e3a01e5ddc2ec9f4e6c707d929" dependencies = [ "r2d2", "rusqlite", @@ -3791,9 +3791,9 @@ dependencies = [ [[package]] name = "rusqlite" -version = "0.22.0" +version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57edf4c4cea4d7e0fab069acb5da9e8e8e5403c78abc81b1f37d83af02148ea5" +checksum = "45d0fd62e1df63d254714e6cb40d0a0e82e7a1623e7a27f679d851af092ae58b" dependencies = [ "bitflags 1.2.1", "fallible-iterator", @@ -3801,6 +3801,7 @@ dependencies = [ "libsqlite3-sys", "lru-cache", "memchr", + "smallvec 1.4.0", "time 0.1.43", ] diff --git a/consensus/types/Cargo.toml b/consensus/types/Cargo.toml index 3fc3619c40..c9cab41266 100644 --- a/consensus/types/Cargo.toml +++ b/consensus/types/Cargo.toml @@ -38,7 +38,7 @@ rand_xorshift = "0.2.0" cached_tree_hash = { path = "../cached_tree_hash" } serde_yaml = "0.8.11" tempfile = "3.1.0" -rusqlite = { version = "0.22.0", features = ["bundled"], optional = true } +rusqlite = { version = "0.23.1", features = ["bundled"], optional = true } arbitrary = { version = "0.4.4", features = ["derive"], optional = true } [dev-dependencies] diff --git a/validator_client/slashing_protection/Cargo.toml b/validator_client/slashing_protection/Cargo.toml index 65841aeab4..86e1fb4586 100644 --- a/validator_client/slashing_protection/Cargo.toml +++ b/validator_client/slashing_protection/Cargo.toml @@ -8,9 +8,9 @@ edition = "2018" tempfile = "3.1.0" types = { path = "../../consensus/types" } tree_hash = { path = "../../consensus/tree_hash" } -rusqlite = { version = "0.22.0", features = ["bundled"] } +rusqlite = { version = "0.23.1", features = ["bundled"] } r2d2 = "0.8.8" -r2d2_sqlite = "0.15" +r2d2_sqlite = "0.16.0" parking_lot = "0.9.0" [dev-dependencies]