static-dsp 0.1.0

A no_std dsp library using const generics in Rust.
1
2
3
4
5
6
7
8
9
10
#![allow(incomplete_features)]
#![feature(const_generics)]
#![no_std]

pub mod modules;
pub mod node;
pub mod sample;

pub use node::*;
pub use modules::*;