Things still need to be ironed out, mainly in the display crate, but the system is working
20 lines
413 B
TOML
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" }
|
|
|