aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 3035bc3bcb146aaef1635d2dff6c12c24b62c867 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "runes"
version = "0.2.1"
authors = ["Determinant <tederminant@gmail.com>"]
description = "No-std NES emulator library and minimal emulator written purely in Rust."
repository = "https://github.com/Determinant/runes"
keywords = ["nes", "emulator", "6502"]
categories = ["no-std", "emulators"]
license = "MIT"

[dev-dependencies.sdl2]
version = "0.31"
features = ["unsafe_textures"]

[dev-dependencies.clap]
version = "2.29.0"

[lib]
name = "runes"
path = "src/lib.rs"

[[example]]
name = "runes"
path = "src/bin.rs"