tsafe-nativehost 1.0.5

Browser native messaging host for tsafe — lets Chrome/Edge/Firefox extensions read vault secrets safely
Documentation
1
2
3
4
5
6
7
8
//! tsafe Native Messaging Host — Chrome/Edge/Firefox extension bridge.
//!
//! Speaks the Chrome native messaging protocol over stdin/stdout.
//! Launched by the browser when the extension requests access to the vault.

fn main() {
    tsafe_nativehost::run();
}