iv/Cargo.toml
Steins7 8992c06d16 Started major rework of the code
+ added defined code structure
+ started implementing generic outputs
+ added support for multiples windows
+ switched to frame-based architecture
2020-09-01 14:19:44 +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.0"
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"