[package]
edition = "2024"
rust-version = "1.88"
name = "corium-log"
version = "0.1.33"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Durable append-only transaction logs with replay and range scans"
homepage = "https://github.com/csm/corium"
readme = "README.md"
license = "Apache-2.0 OR MIT"
[lib]
name = "corium_log"
path = "src/lib.rs"
[[test]]
name = "log"
path = "tests/log.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.corium-core]
version = "0.1.33"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.53.0"
features = ["sync"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.53.0"
features = [
"macros",
"rt-multi-thread",
]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"