2022-06-08 08:01:44 +00:00
|
|
|
[package]
|
|
|
|
name = "garage_db"
|
2024-01-16 15:28:17 +00:00
|
|
|
version = "0.9.1"
|
2022-06-08 08:01:44 +00: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 12:02:02 +00:00
|
|
|
err-derive.workspace = true
|
|
|
|
hexdump.workspace = true
|
|
|
|
tracing.workspace = true
|
2022-06-08 08:01:44 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
heed = { workspace = true, optional = true }
|
|
|
|
rusqlite = { workspace = true, optional = true }
|
|
|
|
sled = { workspace = true, optional = true }
|
2022-06-08 08:01:44 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-05 12:02:02 +00:00
|
|
|
mktemp.workspace = true
|
2022-06-08 08:01:44 +00:00
|
|
|
|
|
|
|
[features]
|
2023-05-17 12:30:53 +00:00
|
|
|
default = [ "sled", "lmdb", "sqlite" ]
|
2023-06-26 09:15:11 +00:00
|
|
|
bundled-libs = [ "rusqlite?/bundled" ]
|
2022-09-06 15:09:43 +00:00
|
|
|
lmdb = [ "heed" ]
|
|
|
|
sqlite = [ "rusqlite" ]
|