aboutsummaryrefslogtreecommitdiff
path: root/src/db/Cargo.toml
blob: ca189a6703a32576c5a466b8eb902396c23734de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[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"
hexdump = "0.1"

sled = "0.34"
rusqlite = "0.27"

[dev-dependencies]
mktemp = "0.4"