+ added swapchain recreation mechanism + sorted minor issues ! some framebuffer error present ! may crash during swapchain recreation
30 lines
543 B
TOML
30 lines
543 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"
|
|
|
|
[dependencies.gfx-backend-vulkan]
|
|
version = "^0.6.1"
|
|
features = ["x11"]
|
|
|
|
[lib]
|
|
name = "iv"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "iv"
|
|
path = "main.rs"
|
|
|