mirror of
https://gitlab.com/flio/rustation-ng.git
synced 2025-04-02 10:31:55 -04:00
34 lines
703 B
TOML
34 lines
703 B
TOML
[package]
|
|
name = "rustation-ng"
|
|
version = "0.1.0"
|
|
authors = ["Lionel Flandrin <lionel@svkt.org>"]
|
|
edition = "2018"
|
|
description = "A PlayStation emulator"
|
|
license = "GPL-2.0+"
|
|
keywords = ["emulator", "playstation"]
|
|
|
|
[features]
|
|
# Enable debugger support
|
|
debugger = []
|
|
|
|
[profile.dev]
|
|
debug = true
|
|
# The emulator is not really usable without optims so we force them even for
|
|
# debug builds
|
|
opt-level = 3
|
|
incremental = true
|
|
overflow-checks = true
|
|
|
|
[profile.release]
|
|
debug = false
|
|
# Disable parallel code generation. Increases build time but can improve
|
|
# performance
|
|
codegen-units = 1
|
|
lto = true
|
|
panic = 'abort'
|
|
incremental = false
|
|
overflow-checks = false
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
simple_logger = "1.3.0"
|