forked from rust-console/gba
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
39 lines (33 loc) · 829 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[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 = ["embedded-hal", "nb"]
[dependencies]
typenum = "1.10"
voladdress = { version = "0.4" }
gba-proc-macro = "0.5"
embedded-hal = { version = "0.2.4", optional = true }
nb = { version = "1.0.0", optional = true }
#[profile.dev]
#lto = false
#panic = "abort"
#incremental = false
#codegen-units = 1
#[profile.release]
#lto = true
#panic = "abort"
#incremental = false
#codegen-units = 1
[[example]]
name = "uart_echo"
required-features = ["serial"]