mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-26 23:11:19 +01:00
18 lines
550 B
TOML
18 lines
550 B
TOML
[package]
|
|
name = "rust-minimal"
|
|
version = "0.1.0"
|
|
authors = ["Christian Amsüss <chrysn@fsfe.org>"]
|
|
edition = "2018"
|
|
resolver = "2"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
riot-wrappers = { version = "0.9.0", features = [ "set_panic_handler" ] }
|
|
|
|
# While currently this test does not use any RIOT modules implemented in Rust,
|
|
# that may change; it is best practice for any RIOT application that has its
|
|
# own top-level Rust crate to include rust_riotmodules from inside RIOTBASE.
|
|
rust_riotmodules = { path = "../../sys/rust_riotmodules/" }
|