31 lines
698 B
TOML
31 lines
698 B
TOML
[package]
|
|
name = "renderer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tinyvec = {workspace = true}
|
|
rand = {workspace = true}
|
|
# tokio = {workspace = true, features = ["rt", "sync"]}
|
|
dyn-clone = "1"
|
|
anyhow = "1.0.89"
|
|
ash = "0.38.0"
|
|
ash-window = "0.13.0"
|
|
glam = {workspace = true}
|
|
thiserror = {workspace = true}
|
|
tracing = "0.1.40"
|
|
vk-mem = "0.4.0"
|
|
crossbeam = "0.8.4"
|
|
parking_lot = "0.12.3"
|
|
smol.workspace = true
|
|
|
|
raw-window-handle = { workspace = true }
|
|
egui = { workspace = true , features = ["bytemuck"]}
|
|
egui_winit_platform = { workspace = true }
|
|
bytemuck = { version = "1.21.0", features = ["derive"] }
|
|
indexmap = "2.7.0"
|
|
itertools = "0.14.0"
|
|
|
|
[dev-dependencies]
|
|
tracing-test = "0.2.5"
|