1
Fork 0

Compare commits

..

No commits in common. "64ee8db0be9bd2c35c8841ffde31db188805cdc5" and "e732623802edf3278d3e3e69acb15990b0694f6b" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ name = "webextension-native-messaging"
description = "WebExtension native messaging library for Rust." description = "WebExtension native messaging library for Rust."
repository = "https://git.bauke.xyz/Holllo/webextension-native-messaging" repository = "https://git.bauke.xyz/Holllo/webextension-native-messaging"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "1.0.1" version = "1.0.0"
authors = ["Holllo <helllo@holllo.org>"] authors = ["Holllo <helllo@holllo.org>"]
edition = "2021" edition = "2021"

View File

@ -18,7 +18,7 @@
//! Then in your native executable: //! Then in your native executable:
//! //!
//! ```rust,no_run //! ```rust,no_run
//! use webextension_native_messaging::read_message; //! use web_ext_native_messaging::read_message;
//! //!
//! let message = read_message::<String>().unwrap(); //! let message = read_message::<String>().unwrap();
//! println!("{}", message); //! println!("{}", message);
@ -39,7 +39,7 @@
//! Then in your native executable: //! Then in your native executable:
//! //!
//! ```rust,no_run //! ```rust,no_run
//! use webextension_native_messaging::write_message; //! use web_ext_native_messaging::write_message;
//! //!
//! let message = "Hey, there!".to_string(); //! let message = "Hey, there!".to_string();
//! write_message(&message).unwrap(); //! write_message(&message).unwrap();