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
|
|
|
|
|
2024-01-12 19:09:29 +00:00
|
|
|
[features]
|
2024-01-13 16:51:16 +00:00
|
|
|
math = ["dep:lyra-math"]
|
2024-01-12 19:09:29 +00:00
|
|
|
|
2023-05-25 04:11:16 +00:00
|
|
|
[dependencies]
|
2023-12-21 22:02:59 +00:00
|
|
|
lyra-ecs-derive = { path = "./lyra-ecs-derive" }
|
2024-01-13 16:51:16 +00:00
|
|
|
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"
|
2024-02-23 21:34:21 +00:00
|
|
|
paste = "1.0.14"
|
2024-03-31 02:12:00 +00:00
|
|
|
atomic_refcell = "0.1.13"
|
2024-04-01 16:02:16 +00:00
|
|
|
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
|