21 lines
520 B
TOML
21 lines
520 B
TOML
[package]
|
|
name = "entity-changes"
|
|
version = "0.1.37"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
entity-update_derive = { path = "entity-update_derive", optional = true }
|
|
sqlx = { version = "0.8", features = ["runtime-tokio", "mysql", "uuid", "chrono", "json"] }
|
|
serde_json = "1.0"
|
|
uuid = { version = "1", features = ["v4"]}
|
|
|
|
[workspace]
|
|
members = [
|
|
"entity-update_derive",
|
|
"entity-changes-ctl"
|
|
]
|
|
|
|
[features]
|
|
default = []
|
|
derive = ["dep:entity-update_derive"]
|
|
static-validation = ["entity-update_derive?/static-validation"] |