+ Pipeline new() and drop() + Attachement new(() and drop() + draw_triangle_frame ! crashes at pipeline creation
31 lines
560 B
TOML
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"
|
|
|