[package]
edition = "2021"
rust-version = "1.74"
name = "scepter"
version = "0.1.1"
build = false
include = [
"Cargo.toml",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"deny.toml",
"src/**/*.rs",
"tests/**/*.rs",
"benches/**/*.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://github.com/copyleftdev/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",
]
[lib]
name = "scepter"
path = "src/lib.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]
[dev-dependencies.criterion]
version = "0.7"
[dev-dependencies.proptest]
version = "1.11"