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