rspack_browser 0.7.10

rspack_browser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This crate contains everything that should only be used for `@rspack/browser`,
//! especially some api that avoiding requesting locks in the main thread of browser.
//!
//! Always make it optional and use a "browser" feature to control it.
//! ```toml
//! [features]
//! browser = ["dep:rspack_browser"]
//!
//! [dependencies]
//! rspack_browser = { workspace = true, optional = true }
//! ```
pub mod oneshot;
pub mod panic;