tetanes 0.9.0

A NES Emulator written in Rust with SDL2 and WebAssembly support
Documentation
[dependencies.anyhow]
version = "1.0"

[dependencies.bincode]
version = "1.3"

[dependencies.bitflags]
features = ["serde"]
version = "2.4"

[dependencies.chrono]
version = "0.4"

[dependencies.dirs]
version = "5.0"

[dependencies.enum_dispatch]
version = "0.3"

[dependencies.flate2]
version = "1.0"

[dependencies.log]
features = ["release_max_level_warn", "serde"]
version = "0.4"

[dependencies.once_cell]
version = "1.16"

[dependencies.pretty_env_logger]
version = "0.5"

[dependencies.rand]
version = "0.8"

[dependencies.ringbuf]
version = "0.3"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.structopt]
version = "0.3"
[dev-dependencies.cargo-husky]
default-features = false
features = ["user-hooks"]
version = "1.5"

[features]
cycle-accurate = []
default = ["cycle-accurate"]
profile-rate-control = []

[package]
authors = ["Luke Petherbridge <me@lukeworks.tech>"]
categories = ["emulators", "wasm"]
default-run = "tetanes"
description = "A NES Emulator written in Rust with SDL2 and WebAssembly support"
documentation = "https://docs.rs/tetanes"
edition = "2021"
exclude = ["/bin", "/static", "/test_roms", "/docs", "/test_results"]
keywords = ["nes", "emulator", "wasm"]
license = "MIT"
name = "tetanes"
readme = "README.md"
repository = "https://github.com/lukexor/tetanes.git"
resolver = "2"
version = "0.9.0"

[package.metadata]
msrv = "1.70.0"

[package.metadata.wix]
path-guid = "5731AE63-80DE-4CD7-ADFA-9E79BEDCE08B"
upgrade-guid = "DB76CEB0-15B8-4727-9C3E-55819AB5E7B9"
[profile.dev-opt]
inherits = "dev"
opt-level = 2

[profile.dist]
inherits = "release"
lto = "thin"

[profile.release]
codegen-units = 1

[profile.test]
inherits = "dev-opt"
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.pix-engine]
features = ["serde"]
version = "0.8"
[target."cfg(target_arch = \"wasm32\")".dependencies.getrandom]
features = ["js"]
version = "0.2"

[target."cfg(target_arch = \"wasm32\")".dependencies.wasm-bindgen]
version = "0.2"