You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
441 B

[package]
name = "bad-apple"
version = "0.1.0"
edition = "2021"
[dependencies]
riscv = "0.12.1"
riscv-rt = { version = "0.13.0", features=["single-hart"] }
lwcpu = { path = "../lwcpu" }
# https://docs.rust-embedded.org/book/unsorted/speed-vs-size.html
[profile.release]
# symbols are nice and they don't increase the size on Flash
debug = true
codegen-units = 1
opt-level = "z"
[profile.dev.package."*"]
codegen-units = 1
opt-level = "z"