hexchat-unsafe-plugin

Crates.iohexchat-unsafe-plugin
lib.rshexchat-unsafe-plugin
version2.3.0
sourcesrc
created_at2022-04-12 01:51:13.033044
updated_at2022-05-01 03:22:05.976768
descriptionLets you write native HexChat plugins in mostly-safe Rust
homepagehttps://ganarchy.autistic.space/project/207026ae5e35da096b8110afe1ba2973a0e54fdb
repositoryhttps://soniex2.autistic.space/git-repos/hexchat-unsafe-plugin.git
max_upload_size
id566192
size142,988
Soni L. (SoniEx2)

documentation

README

Rust hexchat-unsafe-plugin

hexchat-unsafe-plugin provides rusty API bindings for developing native HexChat plugins.

To get started, implement hexchat_plugin::Plugin on a struct and use the hexchat_plugin!('a, impl Plugin<'a>) macro in your lib.rs. Do not provide a main, as it will not work. Make sure to use the cdylib crate-type, or it will also not work.

Also note that plugins may be loaded multiple times. It's recommended to avoid using global state (statics, thread locals) so as to not cause issues with it.

Examples

For a production-grade plugin using this crate, take a look at [TODO].

License

Hexchat Plugin API Bindings for Rust
Copyright (C) 2018, 2021, 2022 Soni L.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.
Commit count: 0

cargo fmt