1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-30 08:51:19 +01:00
2022-07-09 21:15:29 +02:00

10 lines
387 B
Rust

#![no_std]
// As we're pulling all crates in only for their side effects of having symbols (they are required
// on the Rust side like riot_wrappers' panic_handler, and rust_riotmodules does that on its own
// too) all these crates have to be extern-crate'd to be pulled in because they are not used on the
// language level.
extern crate riot_wrappers;
extern crate rust_riotmodules;