native_messaging 0.2.0

Cross-platform Rust native messaging host for browser extensions (Chrome & Firefox), with async helpers and manifest installer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod manifest;
pub mod paths;

#[cfg(windows)]
pub mod winreg;

pub use manifest::*;
pub use paths::*;

#[cfg(windows)]
pub use winreg::*;