forked from Deuxfleurs/garage
39 lines
976 B
TOML
39 lines
976 B
TOML
[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"
|
|
|
|
[[bin]]
|
|
name = "convert"
|
|
path = "bin/convert.rs"
|
|
required-features = ["cli"]
|
|
|
|
[dependencies]
|
|
err-derive = "0.3"
|
|
hexdump = "0.1"
|
|
tracing = "0.1.30"
|
|
|
|
heed = { version = "0.11", default-features = false, features = ["lmdb"], optional = true }
|
|
rusqlite = { version = "0.27", optional = true }
|
|
sled = { version = "0.34", optional = true }
|
|
|
|
# cli deps
|
|
clap = { version = "3.1.18", optional = true, features = ["derive", "env"] }
|
|
pretty_env_logger = { version = "0.4", optional = true }
|
|
|
|
[dev-dependencies]
|
|
mktemp = "0.4"
|
|
|
|
[features]
|
|
bundled-libs = [ "rusqlite/bundled" ]
|
|
cli = ["clap", "pretty_env_logger"]
|
|
lmdb = [ "heed" ]
|
|
sqlite = [ "rusqlite" ]
|