2022-06-02 12:59:26 +00:00
|
|
|
[package]
|
|
|
|
name = "garage_db"
|
|
|
|
version = "0.8.0"
|
|
|
|
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"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
err-derive = "0.3"
|
|
|
|
|
|
|
|
sled = "0.34"
|
2022-06-02 17:58:47 +00:00
|
|
|
rusqlite = "0.27"
|
2022-06-02 12:59:26 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
mktemp = "0.4"
|