eerie 0.3.0

Rustic binding to the IREE Compiler/Runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(not(feature = "std"), no_std)]
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]
#[cfg(all(target_os = "none", not(feature = "std"), feature = "runtime"))]
extern crate tinyrlibc as _;

#[cfg(all(target_os = "none", not(feature = "std"), feature = "runtime"))]
mod c_abi;

#[cfg(all(feature = "std", feature = "compiler"))]
pub mod compiler;
#[cfg(feature = "runtime")]
pub mod runtime;