scepter 0.1.5

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

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

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

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

[[example]]
name = "mini_engine"
path = "examples/mini_engine.rs"

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

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

[[bench]]
name = "critical_paths"
path = "benches/critical_paths.rs"
harness = false

[dependencies.arrow-array]
version = "54.3.1"
optional = true

[dependencies.arrow-schema]
version = "54.3.1"
optional = true

[dependencies.ciborium]
version = "0.2.2"
optional = true

[dependencies.roaring]
version = "0.11.1"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.zstd]
version = "0.13.3"
optional = true
default-features = false

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

[dev-dependencies.proptest]
version = "1.11"