gba/Cargo.toml
Lokathor fd3a308e8a
remove proc macro usage and finish out the mmio (#125)
* .

* more updates, much more to do soon.

* hello world works again.

* fix key interrupts.

* remove the old book

* don't forget timers.

* we can just use search, duh.

* cleanup

* more bios

* finished most mmio, finished bios.

* dump some old macros that shouldn't have been pub to begin with.

* Update README.md

* for now, just make this a u16

* timers

* fix hello_world

* timer fix

* docs on timers

* block resetting work ram for now.

* put preserves_flags on bios calls as appropriate

* add a code page 437 tile sheet.

* docs.

* sound :( it's all bad but we'll fix it in 0.5

* move most backup files back into the lib.

* CI might work now?

* fix up non-serial examples.

* oops, gotta check out the repo.

* readme.
2021-04-08 23:57:30 -06:00

36 lines
766 B
TOML

[package]
name = "gba"
description = "A crate for making GBA games with Rust."
version = "0.4.0-pre1"
authors = ["Lokathor <zefria@gmail.com>", "Thomas Winwood <twwinwood@gmail.com>"]
repository = "https://github.com/rust-console/gba"
readme = "README.md"
keywords = ["gba"]
edition = "2018"
license = "Zlib OR Apache-2.0 OR MIT"
publish = false
[features]
default = ["serial"]
serial = ["embedded-hal", "nb"]
[dependencies]
voladdress = { version = "0.4" }
embedded-hal = { version = "0.2.4", optional = true }
nb = { version = "1", optional = true }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
#[[example]]
#name = "uart_echo"
#required-features = ["serial"]
[package.metadata.docs.rs]
default-target = "thumbv6m-none-eabi"
targets = []