hexeract 0.5.0

Batteries-included messaging framework for Rust: transactional outbox, message bus and in-process mediator (CQRS) in one SDK.
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 = "2024"
rust-version = "1.88"
name = "hexeract"
version = "0.5.0"
authors = ["Nubster"]
build = false
exclude = [
    "/tests",
    "/examples",
    "/benches",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Batteries-included messaging framework for Rust: transactional outbox, message bus and in-process mediator (CQRS) in one SDK."
homepage = "https://github.com/nubster-opensources/hexeract"
readme = "README.md"
keywords = [
    "messaging",
    "mediator",
    "cqrs",
    "outbox",
    "rabbitmq",
]
categories = [
    "asynchronous",
    "network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nubster-opensources/hexeract"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
bus = [
    "core",
    "dep:hexeract-bus",
]
bus-rabbitmq = [
    "bus",
    "dep:hexeract-bus-rabbitmq",
]
core = ["dep:hexeract-core"]
default = []
macros = [
    "core",
    "dep:hexeract-macros",
]
mediator = [
    "core",
    "dep:hexeract-mediator",
]
middleware = [
    "core",
    "dep:hexeract-middleware",
]
outbox = [
    "core",
    "dep:hexeract-outbox",
]
outbox-sql-mysql = [
    "outbox",
    "dep:hexeract-outbox-sql",
    "hexeract-outbox-sql/mysql",
]
outbox-sql-postgres = [
    "outbox",
    "dep:hexeract-outbox-sql",
    "hexeract-outbox-sql/postgres",
]
outbox-sql-sqlite = [
    "outbox",
    "dep:hexeract-outbox-sql",
    "hexeract-outbox-sql/sqlite",
]

[lib]
name = "hexeract"
path = "src/lib.rs"

[dependencies.hexeract-bus]
version = "0.5"
optional = true

[dependencies.hexeract-bus-rabbitmq]
version = "0.5"
optional = true

[dependencies.hexeract-core]
version = "0.5"
optional = true

[dependencies.hexeract-macros]
version = "0.5"
optional = true

[dependencies.hexeract-mediator]
version = "0.5"
optional = true

[dependencies.hexeract-middleware]
version = "0.5"
optional = true

[dependencies.hexeract-outbox]
version = "0.5"
optional = true

[dependencies.hexeract-outbox-sql]
version = "0.5"
optional = true
default-features = false

[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