audio-widgets 0.1.0

A collection of audio related UI widgets for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod common;
mod plotter;

pub use crate::eq::common::*;
pub use crate::eq::plotter::*;

#[cfg(feature = "JS")]
mod js;
#[cfg(feature = "JS")]
pub use crate::eq::js::*;

#[cfg(feature = "Yew")]
mod yew;
#[cfg(feature = "Yew")]
pub use crate::eq::yew::*;