mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
69cb6b12fc
The change in 399e25cc
was did not have the intended effect: As the
local crates still all defined 0.7 as the riot-wrappers version, that
dependency was actually down- rather than upgraded, and thus did not
effect the stabilizations.
22 lines
418 B
TOML
22 lines
418 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.8", features = [ "set_panic_handler" ] }
|
|
|
|
rust_riotmodules = { path = "../rust_riotmodules" }
|