vsdb_core 8.1.0

A std-collection-like database
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "vsdb_core"
version = "8.1.0"
authors = ["hui.fan@mail.ru"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A std-collection-like database"
homepage = "https://github.com/rust-util-collections/vsdb"
readme = "README.md"
keywords = [
    "kv",
    "leveldb",
    "rocksdb",
    "std",
]
categories = [
    "database-implementations",
    "data-structures",
    "algorithms",
    "caching",
]
license = "GPL-3.0"
repository = "https://github.com/rust-util-collections/vsdb/tree/master/core"

[features]
default = ["mdbx_backend"]
mdbx_backend = ["libmdbx"]
rocks_backend = ["rocksdb"]

[lib]
name = "vsdb_core"
path = "src/lib.rs"

[[test]]
name = "basic_mapx_raw_test"
path = "tests/basic_mapx_raw_test.rs"

[[bench]]
name = "basic"
path = "benches/basic.rs"

[dependencies.libmdbx]
version = "0.6.6"
optional = true

[dependencies.parking_lot]
version = "0.12.1"

[dependencies.rand]
version = "0.9.2"

[dependencies.rocksdb]
version = "0.24.0"
features = ["bindgen-runtime"]
optional = true
default-features = false

[dependencies.ruc]
version = "9.0.0"

[dependencies.serde]
version = "1.0.136"
features = ["derive"]

[dependencies.threadpool]
version = "1.8.1"

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.hex]
version = "0.4"

[dev-dependencies.msgpack]
version = "1.1.1"
package = "rmp-serde"