bitwarden_threading/lib.rs
1#![doc = include_str!("../README.md")]
2
3#[cfg(all(target_arch = "wasm32", not(feature = "wasm")))]
4compile_error!(
5 "The `wasm` feature must be enabled to use the `bitwarden-ipc` crate in a WebAssembly environment."
6);
7
8#[allow(missing_docs)]
9pub mod cancellation_token;
10mod thread_bound_runner;
11#[allow(missing_docs)]
12pub mod time;
13
14pub use thread_bound_runner::ThreadBoundRunner;