[package]
edition = "2024"
rust-version = "1.88"
name = "corium-transactor"
version = "0.1.38"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Corium transactor"
homepage = "https://github.com/csm/corium"
readme = "README.md"
license = "Apache-2.0 OR MIT"
[features]
cljrs = [
"dep:cljrs-tx",
"dep:cljrs-value",
]
default = ["cljrs"]
postgres = ["corium-store/postgres"]
s3 = ["corium-store/s3"]
turso = ["corium-store/turso"]
[lib]
name = "corium_transactor"
path = "src/lib.rs"
[[example]]
name = "tx_throughput"
path = "examples/tx_throughput.rs"
[[test]]
name = "backend"
path = "tests/backend.rs"
[[test]]
name = "backup"
path = "tests/backup.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "embedded"
path = "tests/embedded.rs"
[[test]]
name = "fork"
path = "tests/fork.rs"
[[test]]
name = "group_commit"
path = "tests/group_commit.rs"
[[test]]
name = "ha_sim"
path = "tests/ha_sim.rs"
[[test]]
name = "index_control"
path = "tests/index_control.rs"
[[test]]
name = "recovery"
path = "tests/recovery.rs"
[[test]]
name = "txfn"
path = "tests/txfn.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.cljrs-tx]
version = "0.1.228"
features = ["no-gc"]
optional = true
[dependencies.cljrs-value]
version = "0.1.228"
optional = true
[dependencies.corium-core]
version = "0.1.38"
[dependencies.corium-db]
version = "0.1.38"
[dependencies.corium-index]
version = "0.1.38"
[dependencies.corium-log]
version = "0.1.38"
[dependencies.corium-protocol]
version = "0.1.38"
[dependencies.corium-query]
version = "0.1.38"
[dependencies.corium-store]
version = "0.1.38"
[dependencies.corium-tx]
version = "0.1.38"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.53.0"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]
[dependencies.tokio-stream]
version = "0.1.18"
[dependencies.tonic]
version = "0.14.5"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"