xkcp_sys/
lib.rs

1//! # xkcp-sys
2//!
3//! Native bindings to the [eXtended Keccak Code Package (XKCP)](https://github.com/XKCP/XKCP) library.
4
5#![doc(html_root_url = "https://danipopes.github.io/xkcp-rs")]
6#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case)]
7#![no_std]
8#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
9
10include!(concat!(env!("OUT_DIR"), "/bindings.rs"));