scepter 0.1.5

Composable primitives for planet-scale time-series routing, indexing, and aggregation.
Documentation
[package]
name = "scepter"
version = "0.1.5"
edition = "2021"
rust-version = "1.74"
description = "Composable primitives for planet-scale time-series routing, indexing, and aggregation."
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/copyleftdev/scepter"
homepage = "https://copyleftdev.github.io/scepter/"
documentation = "https://docs.rs/scepter"
keywords = ["timeseries", "index", "sharding", "observability", "metrics"]
categories = ["algorithms", "data-structures", "database-implementations"]
include = [
    "Cargo.toml",
    "README.md",
    "CHANGELOG.md",
    "LICENSE-APACHE",
    "LICENSE-MIT",
    "deny.toml",
    "src/**/*.rs",
    "tests/**/*.rs",
    "benches/**/*.rs",
    "examples/**/*.rs",
]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[features]
default = []
arrow = ["dep:arrow-array", "dep:arrow-schema"]
cbor = ["dep:ciborium", "dep:serde"]
compressed-postings = ["dep:roaring"]
zstd = ["dep:zstd"]
wire = ["cbor", "zstd"]

[dependencies]
arrow-array = { version = "54.3.1", optional = true }
arrow-schema = { version = "54.3.1", optional = true }
ciborium = { version = "0.2.2", optional = true }
roaring = { version = "0.11.1", optional = true }
serde = { version = "1", features = ["derive"], optional = true }
zstd = { version = "0.13.3", optional = true, default-features = false }

[dev-dependencies]
criterion = "0.7"
proptest = "1.11"

[[bench]]
name = "critical_paths"
harness = false