+ implemented hal initialization code + implemented basic renderer + implemented basic window system
28 lines
453 B
TOML
28 lines
453 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 = "0.6.0"
|
|
gfx-hal = "0.5.0"
|
|
winit = "0.22.0"
|
|
|
|
[dependencies.gfx-backend-vulkan]
|
|
version = "0.5"
|
|
features = ["x11"]
|
|
|
|
[lib]
|
|
name = "iv"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "iv"
|
|
path = "src/bin/main.rs"
|
|
|