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.
23 lines
536 B
23 lines
536 B
[package]
|
|
name = "primes"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[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"
|