20 lines
495 B
TOML
20 lines
495 B
TOML
[package]
|
|
name = "rust_vulkan_test"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Florian RICHER <florian.richer@protonmail.com>"]
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
winit = { version = "0.30", features = ["rwh_06"] }
|
|
|
|
vulkano = { git = "https://github.com/vulkano-rs/vulkano.git", branch = "master" }
|
|
vulkano-shaders = { git = "https://github.com/vulkano-rs/vulkano.git", branch = "master" }
|
|
|
|
# Math
|
|
glam = { version = "0.29" }
|
|
|
|
# Log and tracing
|
|
log = "0.4"
|
|
env_logger = "0.11.5"
|