2022-06-08 10:01:44 +02:00
|
|
|
[package]
|
|
|
|
name = "garage_db"
|
2024-03-01 15:14:06 +01:00
|
|
|
version = "0.9.2"
|
2022-06-08 10:01:44 +02:00
|
|
|
authors = ["Alex Auvolat <alex@adnab.me>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "AGPL-3.0"
|
|
|
|
description = "Abstraction over multiple key/value storage engines that supports transactions"
|
|
|
|
repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage"
|
|
|
|
readme = "../../README.md"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-05 13:02:02 +01:00
|
|
|
err-derive.workspace = true
|
|
|
|
hexdump.workspace = true
|
|
|
|
tracing.workspace = true
|
2022-06-08 10:01:44 +02:00
|
|
|
|
2024-02-05 13:02:02 +01:00
|
|
|
heed = { workspace = true, optional = true }
|
|
|
|
rusqlite = { workspace = true, optional = true }
|
|
|
|
sled = { workspace = true, optional = true }
|
2022-06-08 10:01:44 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-05 13:02:02 +01:00
|
|
|
mktemp.workspace = true
|
2022-06-08 10:01:44 +02:00
|
|
|
|
|
|
|
[features]
|
2023-05-17 14:30:53 +02:00
|
|
|
default = [ "sled", "lmdb", "sqlite" ]
|
2023-06-26 11:15:11 +02:00
|
|
|
bundled-libs = [ "rusqlite?/bundled" ]
|
2022-09-06 17:09:43 +02:00
|
|
|
lmdb = [ "heed" ]
|
|
|
|
sqlite = [ "rusqlite" ]
|