rnp-rs 0.1.3

Idiomatic Rust binding to the RNP OpenPGP C FFI (librnp)
1
2
3
4
5
6
7
8
9
10
11
//! Raw FFI bindings to `librnp`, generated at build time by `bindgen` from the
//! installed `rnp/rnp.h` header.
//!
//! The contents of this module are entirely machine-generated and mirror the
//! upstream C API verbatim, including its naming conventions. The lint
//! suppressions below acknowledge that: C identifiers are not Rust-idiomatic
//! and we do not want to fight the compiler over them.

#![allow(non_camel_case_types, non_snake_case, dead_code)]

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));