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.
47 lines
1.5 KiB
47 lines
1.5 KiB
[package]
|
|
name = "librocksdb-sys"
|
|
version = "0.11.0+8.3.2"
|
|
edition = "2018"
|
|
rust-version = "1.60"
|
|
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://git.nextgraph.org/NextGraph/rust-rocksdb"
|
|
keywords = [ "bindings", "ffi", "rocksdb" ]
|
|
categories = [ "api-bindings", "database", "external-ffi-bindings" ]
|
|
links = "rocksdb"
|
|
|
|
[features]
|
|
default = [ "static" ]
|
|
jemalloc = ["tikv-jemalloc-sys"]
|
|
static = ["libz-sys?/static", "bzip2-sys?/static"]
|
|
io-uring = []
|
|
snappy = []
|
|
lz4 = ["lz4-sys"]
|
|
zstd = ["zstd-sys"]
|
|
zlib = ["libz-sys"]
|
|
bzip2 = ["bzip2-sys"]
|
|
rtti = []
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
tikv-jemalloc-sys = { version = "0.5", features = ["unprefixed_malloc_on_supported_platforms"], optional = true }
|
|
lz4-sys = { version = "1.9", optional = true }
|
|
zstd-sys = { version = "2.0", features = ["zdict_builder"], optional = true }
|
|
libz-sys = { version = "1.1", default-features = false, optional = true }
|
|
bzip2-sys = { version = "0.1", default-features = false, optional = true }
|
|
|
|
[target.'cfg(not(any(target_os = "linux",target_os = "darwin",target_os = "openbsd")))'.dependencies.openssl]
|
|
version = "0.10"
|
|
features = ["vendored"]
|
|
|
|
[dev-dependencies]
|
|
const-cstr = "0.3"
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.0", features = ["parallel"] }
|
|
bindgen = { version = "0.65", default-features = false, features = ["runtime"] }
|
|
glob = "0.3"
|
|
pkg-config = { version = "0.3" }
|
|
|