mirror of
https://github.com/koute/pinky.git
synced 2025-04-02 10:31:50 -04:00
32 lines
465 B
TOML
32 lines
465 B
TOML
[package]
|
|
name = "pinky-libretro"
|
|
version = "0.1.0"
|
|
authors = ["Jan Bujak <j@exia.io>"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
libretro-backend = "0.2"
|
|
|
|
[dependencies.nes]
|
|
path = "../nes"
|
|
|
|
[dependencies.emumisc]
|
|
path = "../emumisc"
|
|
|
|
[profile.dev]
|
|
opt-level = 2
|
|
debug = true
|
|
rpath = false
|
|
lto = false
|
|
debug-assertions = true
|
|
codegen-units = 4
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
rpath = false
|
|
lto = true
|
|
debug-assertions = false
|
|
codegen-units = 1
|