14 lines
234 B
TOML
14 lines
234 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = ["fpga_lib", "hello_rust"]
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
codegen-units = 1 # better optimizations
|
|
lto = true # better optimizations
|
|
strip = true
|
|
opt-level = "z"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|