canvas/Cargo.toml
Steins7 79b86afc2a Got texture to display on quad
+ implemented Texture
* tweaked Application API
! some work need on Texture API to mask Rc<RefCell>>
2022-07-15 11:59:52 +02:00

30 lines
592 B
TOML

[package]
name = "canvas"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# general dependencies
log = "^0.4.17"
chrono = "^0.4.19"
fern = { version = "^0.6.1", features = ["colored"] }
bitflags = "^1.3.2"
cgmath = "^0.18.0"
pollster = "^0.2.5"
# surface creation
winit = "^0.26.1"
raw-window-handle = "^0.4.3"
# gpu API
wgpu = "^0.13.0"
bytemuck = { version = "1.4", features = [ "derive" ] }
[dependencies.image]
version = "^0.24.2"
default-features = false
features = ["png", "jpeg"]