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
2022-07-09 21:15:29 +02:00

22 lines
444 B
TOML

[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.7", default-features = false, features = [ "set_panic_handler" ] }
rust_riotmodules = { path = "../rust_riotmodules" }