fork of https://github.com/rust-rocksdb/rust-rocksdb for nextgraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
417 B
25 lines
417 B
[package]
|
|
|
|
name = "rocksdb"
|
|
description = "A Rust wrapper for Facebook's RocksDB embeddable database."
|
|
version = "0.0.8"
|
|
authors = ["Tyler Neely <t@jujit.su>", "David Greenberg <dsg123456789@gmail.com>"]
|
|
license = "Apache-2.0"
|
|
exclude = [
|
|
".gitignore",
|
|
".travis.yml",
|
|
"deploy.sh",
|
|
"test/**/*",
|
|
]
|
|
|
|
[features]
|
|
default=[]
|
|
valgrind=[]
|
|
|
|
[[test]]
|
|
|
|
name = "test"
|
|
path = "test/test.rs"
|
|
|
|
[dependencies]
|
|
libc = "0.1.8"
|
|
|