fsdr_blocks/
lib.rs

1//! This library acts as a toolbox on top of [FutureSDR][`futuresdr`] to easily build your own flowgraph.
2//! It is made by the community for the community.
3
4#[macro_use]
5pub extern crate async_trait;
6
7pub mod math;
8pub mod stdinout;
9pub mod stream;
10pub mod type_converters;