[package]
edition = "2021"
name = "temporal_segment_log"
version = "0.1.0"
authors = ["Vishwanath M M"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Temporal Segment Log (TSL): High-throughput time-ordered data structure"
readme = "README.md"
keywords = [
"temporal",
"log",
"data-structure",
"stream",
"index",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/vishwanathdvgmm/Temporal_Segment_Log"
[features]
python = ["pyo3"]
[lib]
name = "tsl"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "correctness"
path = "tests/correctness.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[bench]]
name = "ingest"
path = "benches/ingest.rs"
harness = false
[[bench]]
name = "mixed"
path = "benches/mixed.rs"
harness = false
[[bench]]
name = "query"
path = "benches/query.rs"
harness = false
[dependencies.crossbeam]
version = "0.8"
[dependencies.parking_lot]
version = "0.12"
[dependencies.pyo3]
version = "0.21"
features = ["extension-module"]
optional = true
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.rand]
version = "0.8"