[package]
edition = "2024"
rust-version = "1.95.0"
name = "tephra"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A DCB-compliant, immutable event store with global ordering."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/tqwewe/tephra"
resolver = "2"
[features]
async = [
"flume/async",
"dep:futures-core",
"dep:event-listener",
]
crash-points = ["seglog/crash-points"]
tracing = [
"dep:tracing",
"seglog/tracing",
]
[lib]
name = "tephra"
path = "src/lib.rs"
[[test]]
name = "index"
path = "tests/index.rs"
[[test]]
name = "read"
path = "tests/read.rs"
[[test]]
name = "subscribe"
path = "tests/subscribe.rs"
[[test]]
name = "writer"
path = "tests/writer.rs"
[[bench]]
name = "condition_path"
path = "benches/condition_path.rs"
harness = false
[[bench]]
name = "read_path"
path = "benches/read_path.rs"
harness = false
[[bench]]
name = "write_path"
path = "benches/write_path.rs"
harness = false
[dependencies.crc32fast]
version = "1.5"
[dependencies.dashmap]
version = "6"
[dependencies.event-listener]
version = "5"
features = ["std"]
optional = true
default-features = false
[dependencies.flume]
version = "0.12"
default-features = false
[dependencies.fst]
version = "0.4.7"
default-features = false
[dependencies.futures-core]
version = "0.3"
optional = true
[dependencies.seglog]
version = "0.3.4"
[dependencies.smallvec]
version = "1"
[dependencies.tephra-types]
version = "0.1.3"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"