From 074920a863c75e454fae089ee5b8c7f295d546ad Mon Sep 17 00:00:00 2001 From: Niko PLP Date: Wed, 22 May 2024 05:14:22 +0300 Subject: [PATCH] removed unused Cargo.toml --- librocksdb-sys/Cargo.toml | 47 --------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 librocksdb-sys/Cargo.toml diff --git a/librocksdb-sys/Cargo.toml b/librocksdb-sys/Cargo.toml deleted file mode 100644 index f343385..0000000 --- a/librocksdb-sys/Cargo.toml +++ /dev/null @@ -1,47 +0,0 @@ -[package] -name = "librocksdb-sys" -version = "0.11.0+8.3.2" -edition = "2018" -rust-version = "1.60" -authors = ["Karl Hobley ", "Arkadiy Paronyan "] -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" }