nes_emulator/Cargo.toml
Steins7 27585d6440 Migrated display to custom crate
Things still need to be ironed out, mainly in the display crate, but the system
is working
2024-03-02 23:09:32 +01:00

20 lines
413 B
TOML

[package]
name = "nes_emulator"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.14"
chrono = "0.4.19"
fern = "0.6.0"
bitflags = "1.3.2"
rusttype = "0.9.2"
canvas = "0.1.0"
[patch.crates-io]
canvas = { git = "https://git.steins7.ovh/Steins7/canvas.git", branch = "dev" }
cgmath = { path = "cgmath" }