bitwarden-threading 2.0.0

Internal crate for the bitwarden crate. Do not use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# bitwarden-threading

Read any available documentation: [README.md](./README.md) for architecture,
[examples/](./examples/) for usage patterns, and [tests/](./tests/) for integration tests.

## Critical Rules

**Native requires LocalSet**: `tokio::task::spawn_local` panics without LocalSet context—WASM does
not have this requirement.

**No blocking operations**: Blocking tasks stalls the entire runner since all tasks execute on a
single thread.