28fb9ffa70
Been wanting to do this for a long time. This does impose performance issues when building with the vanilla release profile, as cargo does not perform optimizations across crate boundary (we care mostly about inlining). so I added release-lto profile Also fixed some broken stuff I found across the project, meh Former-commit-id: 06d03263cc6245313f3ea22c715479ab6da7c4d4 Former-commit-id: f93abd10c67ea8a3b8072b47462be5eca4f3e02b
21 lines
465 B
TOML
21 lines
465 B
TOML
[package]
|
|
name = "arm7tdmi"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rustboyadvance-utils = {"path" = "../utils" }
|
|
bit = "^0.1"
|
|
cfg-if = "1.0.0"
|
|
serde = { version = "1.0.104", features = ["derive", "rc"] }
|
|
ansi_term = "0.12.1"
|
|
colored = "1.9"
|
|
byteorder = "1"
|
|
num = "0.2.1"
|
|
num-traits = "0.2"
|
|
enum-primitive-derive = "^0.1"
|
|
|
|
[build-dependencies]
|
|
bit = "^0.1" |