24 lines
480 B
TOML
24 lines
480 B
TOML
[package]
|
|
name = "jane"
|
|
version = "0.1.0"
|
|
authors = ["Daniel Bauer"]
|
|
edition = "2018"
|
|
description = "jane - just another NES emulator"
|
|
|
|
[features]
|
|
test = []
|
|
|
|
[dependencies]
|
|
log = "0.4.*"
|
|
simple_logger = "1.3.*"
|
|
phf = { version = "0.8", features = ['macros'] }
|
|
failure = "0.1.*"
|
|
lazy_static = "1.4.*"
|
|
piston_window = "0.105.*"
|
|
piston2d-opengl_graphics = "0.70.*"
|
|
gfx_core = "0.9.2"
|
|
gfx_device_gl = "0.16.*"
|
|
gfx_glyph = "0.16.*"
|
|
image = "0.22.*"
|
|
rand = "0.7.2"
|
|
fps_counter = "1.0.0" |