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.
35 lines
986 B
35 lines
986 B
[package]
|
|
name = "librocksdb-sys"
|
|
version = "6.20.3"
|
|
edition = "2018"
|
|
authors = ["Karl Hobley <karlhobley10@gmail.com>", "Arkadiy Paronyan <arkadiy@ethcore.io>"]
|
|
license = "MIT/Apache-2.0/BSD-3-Clause"
|
|
description = "Native bindings to librocksdb"
|
|
readme = "README.md"
|
|
repository = "https://github.com/rust-rocksdb/rust-rocksdb"
|
|
keywords = [ "bindings", "ffi", "rocksdb" ]
|
|
categories = [ "api-bindings", "database", "external-ffi-bindings" ]
|
|
links = "rocksdb"
|
|
|
|
[features]
|
|
default = [ "static" ]
|
|
jemalloc = ["tikv-jemalloc-sys"]
|
|
static = []
|
|
snappy = []
|
|
lz4 = []
|
|
zstd = []
|
|
zlib = []
|
|
bzip2 = []
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
tikv-jemalloc-sys = { version = "0.4", features = ["unprefixed_malloc_on_supported_platforms"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
const-cstr = "0.3"
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.0", features = ["parallel"] }
|
|
bindgen = { version = "0.59", default-features = false, features = ["runtime"] }
|
|
glob = "0.3"
|
|
|