mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
20 lines
689 B
TOML
20 lines
689 B
TOML
[package]
|
|
name = "rust-hello-world"
|
|
version = "0.1.0"
|
|
authors = ["Christian Amsüss <chrysn@fsfe.org>"]
|
|
edition = "2018"
|
|
resolver = "2"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
# `default-features = false` can be removed with 0.8, and enables building on stable during the 0.7 series
|
|
riot-wrappers = { version = "0.7", features = [ "set_panic_handler" ], default-features = false }
|
|
|
|
# While currently this exmple 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/" }
|