eventide-application 0.1.1

Application layer for the eventide DDD/CQRS toolkit: command bus, query bus, handlers, application context, and an in-memory bus implementation.
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.85"
name = "eventide-application"
version = "0.1.1"
authors = ["nanlong <nanlong.dev@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Application layer for the eventide DDD/CQRS toolkit: command bus, query bus, handlers, application context, and an in-memory bus implementation."
homepage = "https://github.com/nanlong/eventide"
documentation = "https://docs.rs/eventide-application"
readme = "README.md"
keywords = [
    "ddd",
    "cqrs",
    "event-sourcing",
    "hexagonal",
    "domain-driven-design",
]
categories = [
    "data-structures",
    "asynchronous",
    "rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nanlong/eventide"
resolver = "2"

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

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

[[example]]
name = "inmemory_command_bus"
path = "examples/inmemory_command_bus.rs"

[[example]]
name = "inmemory_query_bus"
path = "examples/inmemory_query_bus.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.dashmap]
version = "6.1"

[dependencies.eventide-domain]
version = "0.1.1"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.serde]
version = "1.0"
features = ["derive"]

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt",
    "rt-multi-thread",
    "time",
    "sync",
]