lyra-engine/lyra-ecs/Cargo.toml

20 lines
426 B
TOML

[package]
name = "lyra-ecs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
math = ["dep:lyra-math"]
[dependencies]
lyra-ecs-derive = { path = "./lyra-ecs-derive" }
lyra-math = { path = "../lyra-math", optional = true }
anyhow = "1.0.75"
thiserror = "1.0.50"
paste = "1.0.14"
[dev-dependencies]
rand = "0.8.5" # used for tests