1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-05 20:27:45 +00:00

Update rusqlite to 0.35

This commit is contained in:
Joshua Goins 2025-05-02 23:10:22 -04:00
parent 29aba2748b
commit 056ab27d39
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated
View file

@ -776,9 +776,9 @@ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
[[package]] [[package]]
name = "libsqlite3-sys" name = "libsqlite3-sys"
version = "0.32.0" version = "0.33.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbb8270bb4060bd76c6e96f20c52d80620f1d82a3470885694e41e0f81ef6fe7" checksum = "947e6816f7825b2b45027c2c32e7085da9934defa535de4a6a46b10a4d5257fa"
dependencies = [ dependencies = [
"cc", "cc",
"pkg-config", "pkg-config",
@ -1133,9 +1133,9 @@ checksum = "cfc4a2303eff8c4ba350c0c1151f4f71437f9cf57ccd95a08f15b2c90e13f7ce"
[[package]] [[package]]
name = "rusqlite" name = "rusqlite"
version = "0.34.0" version = "0.35.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37e34486da88d8e051c7c0e23c3f15fd806ea8546260aa2fec247e97242ec143" checksum = "a22715a5d6deef63c637207afbe68d0c72c3f8d0022d7cf9714c442d6157606b"
dependencies = [ dependencies = [
"bitflags 2.9.0", "bitflags 2.9.0",
"fallible-iterator", "fallible-iterator",

View file

@ -83,7 +83,7 @@ md5 = { version = "0.7", default-features = false }
physis = { git = "https://github.com/redstrate/physis", default-features = false } physis = { git = "https://github.com/redstrate/physis", default-features = false }
# Used for data persistence # 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 # needed for c-style bitflags
# cannot upgrade to 2.0.0, breaking changes that aren't recoverable: https://github.com/bitflags/bitflags/issues/314 # cannot upgrade to 2.0.0, breaking changes that aren't recoverable: https://github.com/bitflags/bitflags/issues/314