21 lines
452 B
TOML
21 lines
452 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"
|
|
atomic_refcell = "0.1.13"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8.5" # used for tests
|