[package]
edition = "2024"
rust-version = "1.88"
name = "hexeract-outbox"
version = "0.6.0"
authors = ["Nubster"]
build = false
exclude = [
"/tests",
"/examples",
"/benches",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Transactional outbox pattern primitives for the Hexeract messaging framework"
homepage = "https://github.com/nubster-opensources/hexeract"
readme = "README.md"
keywords = [
"messaging",
"outbox",
"cqrs",
"events",
"transactional",
]
categories = [
"asynchronous",
"database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nubster-opensources/hexeract"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "hexeract_outbox"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.fastrand]
version = "2"
[dependencies.hexeract-core]
version = "0.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
"time",
]
[dependencies.tokio-util]
version = "0.7"
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.trait-variant]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v7",
"serde",
]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
"time",
"test-util",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1