[package]
edition = "2024"
rust-version = "1.85"
name = "eventide-macros"
version = "0.1.1"
authors = ["nanlong <nanlong.dev@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for the eventide DDD/CQRS toolkit: derive entities, entity ids, value objects and domain events with a single attribute."
homepage = "https://github.com/nanlong/eventide"
documentation = "https://docs.rs/eventide-macros"
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_macros"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "trybuild"
path = "tests/trybuild.rs"
[dependencies.proc-macro-crate]
version = "3"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = ["full"]
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.trybuild]
version = "1.0"
[dev-dependencies.uuid]
version = "1.11"
features = [
"serde",
"v4",
]