1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/rust_riotmodules_standalone/Cargo.toml

22 lines
418 B
TOML
Raw Normal View History

2021-04-03 17:33:14 +02:00
[package]
name = "rust_riotmodules_standalone"
version = "0.1.0"
authors = ["Christian Amsüss <chrysn@fsfe.org>"]
edition = "2021"
publish = false
[lib]
crate-type = [ "staticlib" ]
[profile.release]
lto = true
opt-level = "s"
debug = true
panic = "abort"
codegen-units = 1
[dependencies]
riot-wrappers = { version = "0.8", features = [ "set_panic_handler" ] }
2021-04-03 17:33:14 +02:00
rust_riotmodules = { path = "../rust_riotmodules" }