diff --git a/Cargo.lock b/Cargo.lock index 122661d..05d2d53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -776,9 +776,9 @@ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" [[package]] name = "libsqlite3-sys" -version = "0.32.0" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbb8270bb4060bd76c6e96f20c52d80620f1d82a3470885694e41e0f81ef6fe7" +checksum = "947e6816f7825b2b45027c2c32e7085da9934defa535de4a6a46b10a4d5257fa" dependencies = [ "cc", "pkg-config", @@ -1133,9 +1133,9 @@ checksum = "cfc4a2303eff8c4ba350c0c1151f4f71437f9cf57ccd95a08f15b2c90e13f7ce" [[package]] name = "rusqlite" -version = "0.34.0" +version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37e34486da88d8e051c7c0e23c3f15fd806ea8546260aa2fec247e97242ec143" +checksum = "a22715a5d6deef63c637207afbe68d0c72c3f8d0022d7cf9714c442d6157606b" dependencies = [ "bitflags 2.9.0", "fallible-iterator", diff --git a/Cargo.toml b/Cargo.toml index 13d543e..a5c485c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -83,7 +83,7 @@ md5 = { version = "0.7", default-features = false } physis = { git = "https://github.com/redstrate/physis", default-features = false } # Used for data persistence -rusqlite = { version = "0.34", features = ["bundled"], default-features = false } +rusqlite = { version = "0.35", features = ["bundled"], default-features = false } # needed for c-style bitflags # cannot upgrade to 2.0.0, breaking changes that aren't recoverable: https://github.com/bitflags/bitflags/issues/314