greentic_interfaces/
lib.rs

1#![deny(unsafe_code)]
2#![warn(missing_docs, clippy::unwrap_used, clippy::expect_used)]
3#![doc = include_str!("../README.md")]
4
5//! ABI-oriented bindings for Greentic WIT packages.
6
7pub mod bindings;
8#[cfg(not(target_arch = "wasm32"))]
9pub mod wit_all;
10#[cfg(not(target_arch = "wasm32"))]
11#[allow(unused_imports)]
12pub use wit_all::*;
13#[cfg(feature = "bindings-rust")]
14pub mod mappers;
15#[cfg(feature = "bindings-rust")]
16pub mod validate;