[package]
edition = "2021"
name = "rotbl"
version = "0.2.10"
authors = ["Zhang Yanpo <drdr.xp@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read Only Table"
homepage = "https://github.com/drmingdrmer/rotbl"
documentation = "https://docs.rs/rotbl"
readme = "README.md"
keywords = [
"readonly",
"table",
"sstable",
]
categories = [
"algorithms",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/drmingdrmer/rotbl"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"-Z",
"unstable-options",
"--sort-modules-by-appearance",
]
[features]
[lib]
name = "rotbl"
path = "src/lib.rs"
[[bin]]
name = "dump-v001"
path = "src/v001/bin/dump.rs"
[[test]]
name = "api"
path = "tests/api/main.rs"
harness = false
[[test]]
name = "test_bincode_compat"
path = "tests/test_bincode_compat.rs"
[[test]]
name = "test_compat"
path = "tests/test_compat.rs"
[dependencies.bincode]
version = "2.0.0-rc.3"
features = ["serde"]
[dependencies.byteorder]
version = "1.4.3"
[dependencies.bytes]
version = "1.0"
[dependencies.clap]
version = "4.4.2"
features = ["derive"]
[dependencies.codeq]
version = "0.5.0"
[dependencies.futures]
version = "0.3"
[dependencies.futures-async-stream]
version = "0.2.9"
[dependencies.log]
version = "0.4.27"
[dependencies.moka]
version = "0.12"
features = ["sync"]
[dependencies.num-format]
version = "0.4.4"
[dependencies.seq-marked]
version = "0.3.1"
features = [
"seq-marked-bincode",
"seqv-serde",
]
[dependencies.serde]
version = "1.0.114"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0.57"
[dependencies.tokio]
version = "1.33.0"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.anyhow]
version = "1.0.63"
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.libtest-mimic]
version = "0.8.1"
[dev-dependencies.maplit]
version = "1.0.2"
[dev-dependencies.pretty_assertions]
version = "1.0.0"
[dev-dependencies.tempfile]
version = "3.4.0"