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.
20 lines
366 B
20 lines
366 B
[package]
|
|
name = "pong"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
riscv = "0.12.1"
|
|
riscv-rt = "0.13.0"
|
|
|
|
# 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"
|