[package]
edition = "2024"
rust-version = "1.88"
name = "hexeract-core"
version = "0.5.0"
authors = ["Nubster"]
build = false
exclude = [
"/tests",
"/examples",
"/benches",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core traits and types for the Hexeract messaging framework"
homepage = "https://github.com/nubster-opensources/hexeract"
readme = "README.md"
keywords = [
"messaging",
"mediator",
"cqrs",
"command",
"handler",
]
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]
default = []
serde = [
"dep:serde",
"uuid/serde",
]
[lib]
name = "hexeract_core"
path = "src/lib.rs"
[dependencies.inventory]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "2"
[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",
]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
"time",
]
[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