diff options
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | src/lib.rs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml index 9f1325e..dc0e6c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hexchat-unsafe-plugin" -version = "2.3.0" +version = "2.4.0-pre1" authors = ["SoniEx2 <endermoneymod@gmail.com>"] description = "Lets you write native HexChat plugins in mostly-safe Rust" license = "GPL-3.0-or-later" @@ -22,4 +22,4 @@ ltptr = "0.1.5" selfref = { version = "0.4.0", optional = true } [patch.crates-io] -ltptr = { path = "/home/soniex2/git/selfhosted/rust.ltptr/" } +#ltptr = { path = "/home/soniex2/git/selfhosted/rust.ltptr/" } diff --git a/src/lib.rs b/src/lib.rs index 0ef9354..2602407 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,7 +15,7 @@ // along with this program. If not, see <https://www.gnu.org/licenses/>. #![cfg_attr(feature="nightly_tests", feature(c_variadic))] -#![deny(unsafe_op_in_unsafe_fn)] +//#![deny(unsafe_op_in_unsafe_fn)] //! Write hexchat plugins in Rust! //! |