bitwarden-threading 3.0.0

Internal crate for the bitwarden crate. Do not use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]

#[cfg(all(target_arch = "wasm32", not(feature = "wasm")))]
compile_error!(
    "The `wasm` feature must be enabled to use the `bitwarden-ipc` crate in a WebAssembly environment."
);

#[allow(missing_docs)]
pub mod cancellation_token;
mod thread_bound_runner;
#[allow(missing_docs)]
pub mod time;

pub use thread_bound_runner::{CallError, ThreadBoundRunner};