Skip to main content

workflow_chrome/
lib.rs

1//! Rust integration for Chrome extension APIs, providing async wrappers
2//! around the `chrome.*` JavaScript interfaces (currently extension storage).
3
4/// Error types produced by the crate.
5pub mod error;
6/// Crate-specific [`Result`](result::Result) alias.
7pub mod result;
8/// Async wrappers around the Chrome extension `storage` API.
9pub mod storage;