18 lines
459 B
TOML
18 lines
459 B
TOML
[package]
|
|
name = "logic"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
description = "Scroll game logic model and wire messages built on top of the titan engine"
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["dep:serde"]
|
|
|
|
[dependencies]
|
|
titan = { workspace = true }
|
|
logic-derive = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
serde = { workspace = true, optional = true }
|