diff options
author | Alex <alex@adnab.me> | 2024-03-18 19:02:36 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2024-03-18 19:02:36 +0000 |
commit | 1a0bffae3491fae6af5a8d4defc5c6b84839e197 (patch) | |
tree | fcf59c762f2fd904a8c0567e7466f10a536ae77b /Cargo.toml | |
parent | fd2e19bf1bf301bc03aa29ffa3fe1e71008cbe50 (diff) | |
parent | b55f52a9b75359b02938ac003a6ea853b36a4f3e (diff) | |
download | garage-1a0bffae3491fae6af5a8d4defc5c6b84839e197.tar.gz garage-1a0bffae3491fae6af5a8d4defc5c6b84839e197.zip |
Merge pull request 'Use connection pooling in sqlite backend' (#779) from sqlite-r2d2 into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/779
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -76,7 +76,9 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } heed = { version = "0.11", default-features = false, features = ["lmdb"] } -rusqlite = "0.30.0" +rusqlite = "0.31.0" +r2d2 = "0.8" +r2d2_sqlite = "0.24" sled = "0.34" async-compression = { version = "0.4", features = ["tokio", "zstd"] } |