-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
32 lines (27 loc) · 808 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "emulator_6502"
version = "1.1.0"
authors = ["Garett Cooper"]
edition = "2018"
description = "Rust implementation of an MOS 6502 emulator, intended to be a talking point during the interview process for my Winter 2020 co-op placement."
homepage = "https://github.com/GarettCooper/emulator_6502"
repository = "https://github.com/GarettCooper/emulator_6502"
readme = "README.md"
keywords = ["emulator", "6502", "nes"]
categories = ["emulators"]
license = "MIT"
exclude= [".travis.yml", "matrix_scraper.py"]
[dependencies]
log = "0.4.*"
[features]
default = []
illegal_opcodes = []
binary_coded_decimal = []
implementation_transparency = []
[badges]
travis-ci = { repository = "GarettCooper/emulator_6502" }
[dev-dependencies]
criterion = "0.3.1"
[[bench]]
name = "benches"
harness = false