summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: f778f3b09e74a7aa873f46a344dbddf545a68b76 (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 emscripten_api;