summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 5d91b0f2ae96f42c1676add903648df62653bf02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "rocksdb"
description = "Rust wrapper for Facebook's RocksDB embeddable database"
version = "0.6.1"
authors = ["Tyler Neely <t@jujit.su>", "David Greenberg <dsg123456789@gmail.com>"]
license = "Apache-2.0"
keywords = ["database", "embedded", "LSM-tree", "persistence"]
homepage = "https://github.com/spacejam/rust-rocksdb"
exclude = [
    ".gitignore",
    ".travis.yml",
    "deploy.sh",
    "test/**/*",
]

[features]
default = []
valgrind = []

[[test]]
name = "test"
path = "test/test.rs"

[dependencies]
libc = "0.2"
librocksdb-sys = { path = "librocksdb-sys", version = "0.4.1" }