fox32/Cargo.toml
ry755 b957b58fb2 fox32: Implement a very basic disk controller
Any file type can be mounted as a disk, as long as the code running
inside fox32 can understand its data.
2022-01-29 23:17:51 -08:00

21 lines
432 B
TOML

[package]
name = "fox32"
version = "0.1.0"
authors = ["ry"]
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
pixels = "0.9.0"
rfd = "0.7.0"
rodio = "0.14.0"
winit = "0.26"
winit_input_helper = "0.11"
[build-dependencies]
anyhow = "1.0"
vergen = { version = "6", default-features = false, features = ["build", "git"] }