vsdb 4.0.1

A std-collection-like database
Documentation
[[bench]]
name = "basic"
path = "benches/basic.rs"

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

[dependencies.parking_lot]
version = "0.12.1"

[dependencies.ruc]
version = "8.0.0"

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

[dependencies.serde_json]
optional = true
version = "1.0.87"

[dependencies.vsdb_core]
default-features = false
version = "4.0"

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

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

[dev-dependencies.rand]
version = "0.8.5"

[features]
compress = ["vsdb_core/compress"]
default = ["parity_backend", "compress", "msgpack_codec"]
json_codec = ["serde_ende", "serde_json"]
msgpack_codec = ["serde_ende", "msgpack"]
parity_backend = ["vsdb_core/parity_backend"]
rocks_backend = ["vsdb_core/rocks_backend"]
serde_ende = []

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

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

[package.metadata.docs.rs]

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

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

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

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

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

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

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

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

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

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

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