Skip to content
Snippets Groups Projects
This project manages its dependencies using Cargo. Learn more
Cargo.toml 863 B
[package]
name = "boytacean"
description = "A Game Boy emulator that is written in Rust."
version = "0.9.10"
authors = ["João Magalhães <joamag@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/joamag/boytacean"
keywords = ["gameboy", "emulator", "rust"]
edition = "2018"
exclude = ["/frontends", "/res/roms", "/res/screens", "/res/videos"]
build = "build.rs"
readme = "README.md"

[lib]
crate-type = ["cdylib", "rlib"]

[features]
wasm = ["wasm-bindgen"]
debug = []
pedantic = []
cpulog = []
gen-mock = []

[dependencies]
wasm-bindgen = { version = "0.2", optional = true }

[build-dependencies]
chrono = "0.4"
regex = "1"
built = "0.5"

[profile.release]
debug = false
lto = true
opt-level = 3
codegen-units = 1

[workspace]
members = [".", "frontends/libretro", "frontends/sdl"]

[package.metadata.docs.rs]
features = ["wasm", "gen-mock"]