iv/Cargo.toml
Steins7 dd1d214a4a Started implementing triangle pipeline
+ Pipeline new() and drop()
+ Attachement new(() and drop()
+ draw_triangle_frame
! crashes at pipeline creation
2021-01-30 12:05:48 +01:00

31 lines
560 B
TOML

[package]
name = "iv"
version = "0.1.0"
authors = ["Steins7 <steinsset@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "^0.4.8"
chrono = "^0.4.11"
fern = { version = "^0.6.0", features = ["colored"] }
gfx-hal = "^0.6.0"
winit = "^0.22.0"
raw-window-handle = "^0.3.3"
num-traits = "^0.2.12"
shaderc = "^0.7"
[dependencies.gfx-backend-vulkan]
version = "^0.6.1"
features = ["x11"]
[lib]
name = "iv"
path = "src/lib.rs"
[[bin]]
name = "iv"
path = "main.rs"