temporal_segment_log 0.1.0

Temporal Segment Log (TSL): High-throughput time-ordered data structure
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"
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"