plugctx-derive 0.1.3

Optional proc-macro helpers for the plugctx plugin framework (FR27)
Documentation
1
2
3
4
5
6
7
8
use plugctx_derive::Plugin;

#[derive(Plugin)]
struct NoBuild;

fn main() {
    let _ = NoBuild;
}