[package]
edition = "2024"
name = "wedb_embed"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded database engine providing Redis-like APIs, built on fjall / 嵌入式数据库引擎,提供类似 Redis 的接口,底层基于 fjall 开发"
homepage = "https://webc.site"
documentation = "https://docs.rs/wedb_embed"
readme = "README.md"
keywords = [
"redis",
"database",
"embedded",
"storage-engine",
"lsm-tree",
]
categories = [
"database-implementations",
"data-structures",
"embedded",
"caching",
"algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/webc-site/wedb_embed"
[features]
bench = [
"dep:mimalloc",
"fjall",
]
default = ["fjall"]
fjall = ["dep:fjall"]
[lib]
name = "wedb_embed"
path = "src/lib.rs"
[[test]]
name = "bitmap"
path = "tests/bitmap.rs"
[[test]]
name = "bloom"
path = "tests/bloom.rs"
[[test]]
name = "cuckoo"
path = "tests/cuckoo.rs"
[[test]]
name = "geo"
path = "tests/geo.rs"
[[test]]
name = "hash"
path = "tests/hash.rs"
[[test]]
name = "hll"
path = "tests/hll.rs"
[[test]]
name = "hnsw"
path = "tests/hnsw.rs"
[[test]]
name = "json"
path = "tests/json.rs"
[[test]]
name = "list"
path = "tests/list.rs"
[[test]]
name = "meta"
path = "tests/meta.rs"
[[test]]
name = "namespace"
path = "tests/namespace.rs"
[[test]]
name = "search"
path = "tests/search.rs"
[[test]]
name = "set"
path = "tests/set.rs"
[[test]]
name = "sortedint"
path = "tests/sortedint.rs"
[[test]]
name = "stream"
path = "tests/stream.rs"
[[test]]
name = "string"
path = "tests/string.rs"
[[test]]
name = "tdigest"
path = "tests/tdigest.rs"
[[test]]
name = "timeseries"
path = "tests/timeseries.rs"
[[test]]
name = "zset"
path = "tests/zset.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[[bench]]
name = "footprint"
path = "benches/footprint.rs"
harness = false
[[bench]]
name = "redis_vs_wedb"
path = "benches/redis_vs_wedb.rs"
harness = false
[dependencies.bitcode]
version = "0.6.9"
[dependencies.bytes]
version = "1.12.1"
[dependencies.coarsetime]
version = "0.1.37"
[dependencies.fastalp]
version = "0.1.17"
[dependencies.fastrand]
version = "2.5.0"
[dependencies.fjall]
version = "3.1.10"
optional = true
[dependencies.hipstr]
version = "0.8.0"
features = ["serde"]
[dependencies.itoa]
version = "1.0.18"
[dependencies.memchr]
version = "2.8.3"
[dependencies.mimalloc]
version = "0.1.52"
optional = true
default-features = false
[dependencies.papaya]
version = "0.2.5"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.paste]
version = "1.0.15"
[dependencies.rapidhash]
version = "4.5.1"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.simsimd]
version = "6.5.16"
[dependencies.sonic-rs]
version = "0.5.8"
[dependencies.strum]
version = "0.28.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.20"
[dependencies.ts_]
version = "0.1.4"
features = ["sec"]
[dependencies.wedb_embed_engine]
version = "0.1.7"
[dependencies.wedb_resp]
version = "0.1.0"
[dependencies.zmij]
version = "1.0.23"
[dev-dependencies.anyhow]
version = "1.0.104"
[dev-dependencies.aok]
version = "0.1.18"
[dev-dependencies.ctor]
version = "1.0.13"
[dev-dependencies.divan]
version = "0.1.21"
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.log]
version = "0.4.34"
[dev-dependencies.log_init]
version = "0.1.39"
[dev-dependencies.mimalloc]
version = "0.1.52"
default-features = false
[dev-dependencies.tempfile]
version = "3.27.0"