[package] name = "rocksdb" description = "Rust wrapper for Facebook's RocksDB embeddable database" version = "0.13.0" edition = "2018" authors = ["Tyler Neely ", "David Greenberg "] license = "Apache-2.0" keywords = ["database", "embedded", "LSM-tree", "persistence"] homepage = "https://github.com/rust-rocksdb/rust-rocksdb" exclude = [ ".gitignore", ".travis.yml", "deploy.sh", "test/**/*", ] [features] default = ["snappy", "lz4", "zstd", "zlib", "bzip2"] valgrind = [] snappy = ["librocksdb-sys/snappy"] lz4 = ["librocksdb-sys/lz4"] zstd = ["librocksdb-sys/zstd"] zlib = ["librocksdb-sys/zlib"] bzip2 = ["librocksdb-sys/bzip2"] [dependencies] libc = "0.2" librocksdb-sys = { path = "librocksdb-sys", version = "6.4.6" } [dev-dependencies] trybuild = "1.0.21" tempfile = "3.1.0"