2024-01-05 04:25:29 +00:00
|
|
|
[package]
|
|
|
|
name = "lyra-game"
|
|
|
|
version = "0.0.1"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-03 01:35:59 +00:00
|
|
|
lyra-game-derive = { path = "./lyra-game-derive" }
|
2024-01-05 04:25:29 +00:00
|
|
|
lyra-resource = { path = "../lyra-resource" }
|
2024-01-12 19:11:33 +00:00
|
|
|
lyra-ecs = { path = "../lyra-ecs", features = [ "math" ] }
|
|
|
|
lyra-reflect = { path = "../lyra-reflect", features = [ "math" ] }
|
2024-01-13 16:51:16 +00:00
|
|
|
lyra-math = { path = "../lyra-math" }
|
2024-03-31 17:24:32 +00:00
|
|
|
lyra-scene = { path = "../lyra-scene" }
|
2024-01-05 04:25:29 +00:00
|
|
|
|
|
|
|
winit = "0.28.1"
|
2024-06-28 03:48:24 +00:00
|
|
|
wgpu = { version = "0.15.1", features = [ "expose-ids"] }
|
2024-04-20 03:37:08 +00:00
|
|
|
|
2024-01-05 04:25:29 +00:00
|
|
|
tracing = "0.1.37"
|
|
|
|
tracing-subscriber = { version = "0.3.16", features = [ "tracing-log" ] }
|
|
|
|
tracing-log = "0.1.3"
|
|
|
|
tracing-appender = "0.2.2"
|
2024-04-20 03:37:08 +00:00
|
|
|
tracing-tracy = { version = "0.11.0", optional = true }
|
|
|
|
|
2024-01-05 04:25:29 +00:00
|
|
|
async-std = { version = "1.12.0", features = [ "unstable", "attributes" ] }
|
|
|
|
cfg-if = "1"
|
2024-04-21 04:54:45 +00:00
|
|
|
bytemuck = { version = "1.12", features = [ "derive", "min_const_generics" ] }
|
2024-01-05 04:25:29 +00:00
|
|
|
image = { version = "0.24", default-features = false, features = ["png", "jpeg"] }
|
|
|
|
anyhow = "1.0"
|
|
|
|
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"
|
|
|
|
uuid = { version = "1.5.0", features = ["v4", "fast-rng"] }
|
|
|
|
itertools = "0.11.0"
|
2024-01-06 20:40:13 +00:00
|
|
|
thiserror = "1.0.56"
|
2024-04-21 04:54:45 +00:00
|
|
|
unique = "0.9.1"
|
2024-04-22 05:07:35 +00:00
|
|
|
rustc-hash = "1.1.0"
|
2024-05-25 23:27:36 +00:00
|
|
|
petgraph = { version = "0.6.5", features = ["matrix_graph"] }
|
2024-06-06 23:37:25 +00:00
|
|
|
bind_match = "0.1.2"
|
2024-07-12 00:00:46 +00:00
|
|
|
round_mult = "0.1.3"
|
2024-04-20 03:37:08 +00:00
|
|
|
|
|
|
|
[features]
|
2024-04-21 04:54:45 +00:00
|
|
|
tracy = ["dep:tracing-tracy"]
|