1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#[cfg(not(target_arch = "wasm32"))]
pub use noweb::run_multithreaded;
#[cfg(not(target_arch = "wasm32"))]
pub use noweb::ReqwestOffscreenKernelEnvironment;
#[cfg(not(target_arch = "wasm32"))]
mod noweb;
pub mod http_client {
#[cfg(not(target_arch = "wasm32"))]
pub use super::noweb::http_client::*;
}
pub mod scheduler {
#[cfg(not(target_arch = "wasm32"))]
pub use super::noweb::scheduler::*;
}
pub mod trace {
#[cfg(not(target_arch = "wasm32"))]
pub use super::noweb::trace::*;
}
pub const MIN_WEBGL_BUFFER_SIZE: u64 = 32;