diff options
author | Alex Auvolat <alex@adnab.me> | 2024-03-14 17:24:53 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-03-15 10:57:22 +0100 |
commit | 8dff278b7227007d8a2c2f6c6d6f76c0c5d7a1ac (patch) | |
tree | 6fa6fff6b64a1f5f4c74b72cce9ca30c971f5d55 /src/db/Cargo.toml | |
parent | a80ce6ab5ad9834c3721eeb4f626d53c9a8bb1f4 (diff) | |
download | garage-8dff278b7227007d8a2c2f6c6d6f76c0c5d7a1ac.tar.gz garage-8dff278b7227007d8a2c2f6c6d6f76c0c5d7a1ac.zip |
[db-snapshot] Implement db snapshotting logic in garage_db
Diffstat (limited to 'src/db/Cargo.toml')
-rw-r--r-- | src/db/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/Cargo.toml b/src/db/Cargo.toml index d7c89620..324de74c 100644 --- a/src/db/Cargo.toml +++ b/src/db/Cargo.toml @@ -17,7 +17,7 @@ hexdump.workspace = true tracing.workspace = true heed = { workspace = true, optional = true } -rusqlite = { workspace = true, optional = true } +rusqlite = { workspace = true, optional = true, features = ["backup"] } sled = { workspace = true, optional = true } [dev-dependencies] |