19 lines
330 B
TOML
19 lines
330 B
TOML
[package]
|
|
name = "helloworld"
|
|
version = "0.0.0"
|
|
|
|
[dependencies]
|
|
panic-halt = "0.2.0"
|
|
riscv-rt = "0.5.0"
|
|
|
|
[patch.crates-io]
|
|
riscv = { git = "https://github.com/m-labs/riscv" }
|
|
riscv-rt = { git = "https://github.com/m-labs/riscv-rt" }
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
incremental = false
|
|
debug = true
|
|
opt-level = "s"
|
|
lto = true
|