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"
|
|
|
|
|
2022-06-03 09:44:41 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "convert"
|
|
|
|
path = "bin/convert.rs"
|
|
|
|
required-features = ["cli"]
|
2022-06-02 12:59:26 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
err-derive = "0.3"
|
2022-06-03 08:44:54 +00:00
|
|
|
hexdump = "0.1"
|
2022-06-03 10:12:25 +00:00
|
|
|
log = "0.4"
|
2022-06-02 12:59:26 +00:00
|
|
|
|
|
|
|
sled = "0.34"
|
2022-06-02 17:58:47 +00:00
|
|
|
rusqlite = "0.27"
|
2022-06-02 12:59:26 +00:00
|
|
|
|
2022-06-03 09:44:41 +00:00
|
|
|
# cli deps
|
|
|
|
clap = { version = "3.1.18", optional = true, features = ["derive", "env"] }
|
|
|
|
|
2022-06-02 12:59:26 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
mktemp = "0.4"
|
2022-06-03 09:44:41 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
cli = ["clap"]
|