[package]
name = "eventide"
description = "A pragmatic Rust toolkit for Domain-Driven Design with event sourcing and CQRS. Umbrella crate re-exporting `eventide-domain`, `eventide-application` and `eventide-macros`."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/eventide"
readme = "README.md"
keywords.workspace = true
categories.workspace = true
[features]
default = ["eventing", "macros", "application"]
eventing = ["eventide-domain/eventing"]
macros = ["dep:eventide-macros"]
application = ["dep:eventide-application"]
infra-sqlx = ["eventide-domain/infra-sqlx"]
[dependencies]
eventide-domain = { path = "../eventide-domain", version = "0.1.1", default-features = false }
eventide-application = { workspace = true, optional = true }
eventide-macros = { workspace = true, optional = true }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]