Files
drone_core
bitfield
ffi
fib
heap
io
log
reg
sync
spsc
thr
drone_ctypes
drone_riscv
futures
futures_channel
futures_core
futures_io
futures_sink
futures_task
futures_util
async_await
future
lock
sink
stream
futures_unordered
stream
buffer_unordered.rsbuffered.rschain.rschunks.rscollect.rsconcat.rscycle.rsenumerate.rsfilter.rsfilter_map.rsflatten.rsfold.rsfor_each.rsfor_each_concurrent.rsforward.rsfuse.rsinto_future.rsmap.rsmod.rsnext.rspeek.rsready_chunks.rsscan.rsselect_next_some.rsskip.rsskip_while.rssplit.rstake.rstake_until.rstake_while.rsthen.rsunzip.rszip.rs
try_stream
task
pin_project_lite
pin_utils
proc_macro_nested
typenum
>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! Procedural macros for [drone-riscv]. //! //! [drone-riscv]: https://github.com/drone-os/drone-riscv #![warn(unsafe_op_in_unsafe_fn)] #![warn(clippy::pedantic)] extern crate proc_macro; mod thr_clint; use proc_macro::TokenStream; #[proc_macro] pub fn thr_clint(input: TokenStream) -> TokenStream { thr_clint::proc_macro(input) }