summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 8b8b990c506a2762bc04f17cadea03262b070732 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pub mod model;
pub mod signal;
pub mod correlation;
pub mod pitch;

#[cfg(not(target_arch = "wasm32"))]
extern crate gtk;
#[cfg(not(target_arch = "wasm32"))]
extern crate cairo;
#[cfg(not(target_arch = "wasm32"))]
pub mod gui;

#[cfg(not(target_arch = "wasm32"))]
extern crate portaudio;
#[cfg(not(target_arch = "wasm32"))]
pub mod audio;

#[cfg(target_arch = "wasm32")]
pub mod wasm_api;