Upgraded migration library to remove panic

This commit is contained in:
Mikayla Maki 2022-10-28 11:36:41 -07:00
parent 9156d488ca
commit 950626fe9e
2 changed files with 2 additions and 3 deletions

3
Cargo.lock generated
View file

@ -4839,8 +4839,7 @@ dependencies = [
[[package]] [[package]]
name = "rusqlite_migration" name = "rusqlite_migration"
version = "1.0.0" version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/cljoly/rusqlite_migration?rev=c433555d7c1b41b103426e35756eb3144d0ebbc6#c433555d7c1b41b103426e35756eb3144d0ebbc6"
checksum = "eda44233be97aea786691f9f6f7ef230bcf905061f4012e90f4f39e6dcf31163"
dependencies = [ dependencies = [
"log", "log",
"rusqlite", "rusqlite",

View file

@ -18,7 +18,7 @@ lazy_static = "1.4.0"
log = { version = "0.4.16", features = ["kv_unstable_serde"] } log = { version = "0.4.16", features = ["kv_unstable_serde"] }
parking_lot = "0.11.1" parking_lot = "0.11.1"
rusqlite = { version = "0.28.0", features = ["bundled", "serde_json"] } rusqlite = { version = "0.28.0", features = ["bundled", "serde_json"] }
rusqlite_migration = "1.0.0" rusqlite_migration = { git = "https://github.com/cljoly/rusqlite_migration", rev = "c433555d7c1b41b103426e35756eb3144d0ebbc6" }
serde = { workspace = true } serde = { workspace = true }
serde_rusqlite = "0.31.0" serde_rusqlite = "0.31.0"