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

20 lines
660 B
TOML
Raw Normal View History

2021-04-03 17:33:14 +02:00
[package]
name = "rust_riotmodules"
version = "0.1.0"
authors = ["Christian Amsüss <chrysn@fsfe.org>"]
edition = "2021"
publish = false
[dependencies]
# The list contains all modules available in RIOT, and should eventually be
# autogenerated (or at least automatically checked for consistency).
riot-module-lsm303agr = { path = "../../drivers/lsm303agr", optional = true }
riot-module-shell-democommands = { path = "../../sys/shell/democommands", optional = true }
[features]
# This feature is just there so that rust_riotmodules_standalone can use its
# _all; see documentation there.
_all = [ "riot-module-lsm303agr", "riot-module-shell-democommands"]