rust_vulkan_test/Cargo.toml

21 lines
495 B
TOML
Raw Permalink Normal View History

2024-11-06 13:18:17 +01:00
[package]
2024-12-08 15:36:54 +01:00
name = "rust_vulkan_test"
2024-11-06 13:18:17 +01:00
version = "0.1.0"
edition = "2021"
2024-11-06 16:47:54 +01:00
authors = ["Florian RICHER <florian.richer@protonmail.com>"]
publish = false
2024-11-06 13:18:17 +01:00
[dependencies]
anyhow = "1.0"
2024-12-08 18:20:36 +01:00
winit = { version = "0.30", features = ["rwh_06"] }
2024-12-08 18:19:37 +01:00
vulkano = { git = "https://github.com/vulkano-rs/vulkano.git", branch = "master" }
vulkano-shaders = { git = "https://github.com/vulkano-rs/vulkano.git", branch = "master" }
2024-11-07 22:14:01 +01:00
2024-12-18 21:47:11 +01:00
# Math
glam = { version = "0.29" }
2024-11-07 22:14:01 +01:00
# Log and tracing
log = "0.4"
2024-11-17 20:19:34 +01:00
env_logger = "0.11.5"