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).
|
2022-01-13 09:06:43 +01:00
|
|
|
|
|
|
|
riot-module-lsm303agr = { path = "../../drivers/lsm303agr", optional = true }
|
2022-06-11 02:05:48 +02:00
|
|
|
riot-module-shell-democommands = { path = "../../sys/shell/democommands", optional = true }
|
2024-03-20 10:40:20 +01:00
|
|
|
|
|
|
|
[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"]
|