From 950626fe9e81b6006a46e99a8f2b7197c0ae21e3 Mon Sep 17 00:00:00 2001 From: Mikayla Maki Date: Fri, 28 Oct 2022 11:36:41 -0700 Subject: [PATCH] Upgraded migration library to remove panic --- Cargo.lock | 3 +-- crates/db/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b56abbdf0c..903bca4412 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4839,8 +4839,7 @@ dependencies = [ [[package]] name = "rusqlite_migration" version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eda44233be97aea786691f9f6f7ef230bcf905061f4012e90f4f39e6dcf31163" +source = "git+https://github.com/cljoly/rusqlite_migration?rev=c433555d7c1b41b103426e35756eb3144d0ebbc6#c433555d7c1b41b103426e35756eb3144d0ebbc6" dependencies = [ "log", "rusqlite", diff --git a/crates/db/Cargo.toml b/crates/db/Cargo.toml index 1eeac03375..e0b932003e 100644 --- a/crates/db/Cargo.toml +++ b/crates/db/Cargo.toml @@ -18,7 +18,7 @@ lazy_static = "1.4.0" log = { version = "0.4.16", features = ["kv_unstable_serde"] } parking_lot = "0.11.1" 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_rusqlite = "0.31.0"