lyra-engine/lyra-ecs/Cargo.toml

22 lines
471 B
TOML
Raw Permalink Normal View History

2023-05-25 00:11:16 -04:00
[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"]
2023-05-25 00:11:16 -04:00
[dependencies]
2023-12-21 17:02:59 -05:00
lyra-ecs-derive = { path = "./lyra-ecs-derive" }
lyra-math = { path = "../lyra-math", optional = true }
2023-12-03 23:14:27 -05:00
anyhow = "1.0.75"
2023-12-05 23:17:19 -05:00
thiserror = "1.0.50"
paste = "1.0.14"
atomic_refcell = "0.1.13"
tracing = "0.1.37"
2023-11-26 21:05:35 -05:00
[dev-dependencies]
2023-12-03 23:14:27 -05:00
rand = "0.8.5" # used for tests