[package]
name = "skilj-codegen"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
readme = "../README.md"
description = "build.rs codegen for skilj's own declarative bounded-context format (Codeberg issue #5's narrower cut, see docs/architecture.md §16/§17) - turns a .skilj.toml file's event/command type shapes into real Rust EventType/CommandType impls, the shared per-bounded-context event enum, and its BoundedContextEvent impl. decide() bodies stay hand-written Rust the generated code calls into; Projection generation is deliberately out of scope, see §17."
[dependencies]
serde.workspace = true
toml.workspace = true
syn = { workspace = true, features = ["full"] }
quote.workspace = true
proc-macro2.workspace = true
prettyplease.workspace = true