randr/Cargo.toml

23 lines
556 B
TOML
Raw Normal View History

2024-01-28 20:55:49 +01:00
[package]
name = "randr"
version = "0.1.0"
edition = "2021"
description = "Simple wgpu renderer"
authors = ["DavidOnTop <me@davidon.top>"]
readme = "README.md"
documentation = "https://docs.rs/randr"
license = "MIT"
repository = "git@github.com:davidon-top/randr.git"
[dependencies]
2024-02-10 13:15:50 +01:00
anyhow = "1"
wgpu = "0.19"
winit = { version = "0.29", features = ["rwh_05"] }
winit_input_helper = "0.15"
2024-01-28 20:55:49 +01:00
tracing = "0.1"
2024-02-10 13:15:50 +01:00
bytemuck = { version = "1.14", features = ["derive"] }
2024-01-28 20:55:49 +01:00
[dev-dependencies]
2024-02-10 13:15:50 +01:00
tokio = { version = "1", features = ["full"] }
2024-01-28 20:55:49 +01:00
tracing-subscriber = "0.3"