lyra-engine/Cargo.toml

42 lines
1.0 KiB
TOML
Raw Normal View History

2023-03-16 21:47:36 +00:00
[package]
name = "lyra-engine"
2023-09-08 04:30:22 +00:00
version = "0.0.1"
2023-03-16 21:47:36 +00:00
edition = "2021"
2023-09-12 18:25:33 +00:00
[workspace]
members = [
"lyra-resource",
"examples/testbed"
2023-09-12 18:25:33 +00:00
]
2023-03-16 21:47:36 +00:00
[dependencies]
lyra-resource = { path = "lyra-resource", version = "0.0.1" }
2023-03-16 21:47:36 +00:00
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"
2023-11-17 19:52:38 +00:00
glam = { version = "0.24.0", features = ["bytemuck", "debug-glam-assert"] }
gilrs-core = "0.5.6"
syn = "2.0.26"
quote = "1.0.29"
2023-09-01 01:34:58 +00:00
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"