iv/Cargo.toml
Steins7 6579566ccd Finished reformatting renderer
+ switched to modular architecture
+ added generic outputs
2020-09-06 00:23:11 +02:00

30 lines
533 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.5.3"
winit = "0.22.0"
raw-window-handle = "0.3.3"
num-traits = "0.2.12"
[dependencies.gfx-backend-vulkan]
version = "0.5"
features = ["x11"]
[lib]
name = "iv"
path = "src/lib.rs"
[[bin]]
name = "iv"
path = "main.rs"