[package]
name = "entity-derive-impl"
version = "0.6.5"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
description = "Internal proc-macro implementation for entity-derive. Use entity-derive instead."
license.workspace = true
repository.workspace = true
documentation = "https://docs.rs/entity-derive-impl"
readme = "README.md"
keywords = ["derive", "macro", "entity", "internal"]
categories = ["development-tools::procedural-macro-helpers"]
[lib]
proc-macro = true
[features]
default = [
"events",
"commands",
"hooks",
"transactions",
"aggregate_root",
"migrations",
"projections"
]
events = []
commands = []
hooks = []
transactions = []
aggregate_root = []
migrations = []
projections = []
[dependencies]
syn = { version = "2", features = ["full", "extra-traits", "parsing"] }
quote = "1"
proc-macro2 = "1"
darling = "0.23"
convert_case = "0.11"
serde = { version = "1", features = ["derive"] }
[dev-dependencies]
trybuild = "1"
uuid = { version = "1", features = ["v4", "v7", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
async-trait = "0.1"
sqlx = { version = "0.8", features = [
"runtime-tokio",
"postgres",
"uuid",
"chrono",
] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
utoipa = { version = "5", features = ["chrono", "uuid"] }
validator = { version = "0.20", features = ["derive"] }
entity-core = { path = "../entity-core" }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]