44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
name = "lyra-engine"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = [
|
|
"lyra-resource",
|
|
"lyra-ecs",
|
|
"examples/testbed"
|
|
]
|
|
|
|
[dependencies]
|
|
lyra-resource = { path = "lyra-resource", version = "0.0.1" }
|
|
lyra-ecs = { path = "lyra-ecs" }
|
|
|
|
winit = "0.28.1"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.16", features = [ "tracing-log" ] }
|
|
tracing-log = "0.1.3"
|
|
wgpu = "0.15.1"
|
|
async-std = { version = "1.12.0", features = [ "unstable", "attributes" ] }
|
|
cfg-if = "1"
|
|
bytemuck = { version = "1.12", features = [ "derive" ] }
|
|
image = { version = "0.24", default-features = false, features = ["png", "jpeg"] }
|
|
anyhow = "1.0"
|
|
tobj = { version = "3.2.1", features = [
|
|
"async",
|
|
]}
|
|
instant = "0.1"
|
|
async-trait = "0.1.65"
|
|
glam = { version = "0.24.0", features = ["bytemuck", "debug-glam-assert"] }
|
|
gilrs-core = "0.5.6"
|
|
syn = "2.0.26"
|
|
quote = "1.0.29"
|
|
#edict = "0.5.0"
|
|
atomicell = "0.1.9"
|
|
aligned-vec = "0.5.0"
|
|
tracing-appender = "0.2.2"
|
|
stopwatch = "0.0.7"
|
|
petgraph = "0.6.4"
|
|
uuid = { version = "1.5.0", features = ["v4", "fast-rng"] }
|
|
itertools = "0.11.0"
|