summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 3331f722d6a82e64ddbfa027f8758175242cb504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod transforms;

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

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