lyra-engine/lyra-ecs/Cargo.toml

22 lines
471 B
TOML
Raw Normal View History

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