diff options
author | Joris | 2025-02-07 09:17:26 +0100 |
---|---|---|
committer | Joris | 2025-02-07 09:17:26 +0100 |
commit | 5e2aee9248a00c8b213a8e07e4796d668bff519c (patch) | |
tree | 861fdc7f2b23cc8538cf479f44f62e700a77222f /Cargo.lock | |
parent | 463d58b37909c976d3f30bdb5a652f0e8a018b55 (diff) |
Apply SQL migrations at startup
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -104,6 +104,12 @@ dependencies = [ ] [[package]] +name = "anyhow" +version = "1.0.95" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" + +[[package]] name = "atomic-waker" version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -297,6 +303,7 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" name = "files" version = "0.1.0" dependencies = [ + "anyhow", "base64", "chrono", "const_format", @@ -309,6 +316,7 @@ dependencies = [ "log", "rand", "rand_core", + "rusqlite_migration", "tempfile", "tokio", "tokio-rusqlite", @@ -828,6 +836,16 @@ dependencies = [ ] [[package]] +name = "rusqlite_migration" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "923b42e802f7dc20a0a6b5e097ba7c83fe4289da07e49156fecf6af08aa9cd1c" +dependencies = [ + "log", + "rusqlite", +] + +[[package]] name = "rustc-demangle" version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" |