blob: a7e4190cd12f2e816c0e20ace0b93ad2db0604ea [file] [log] [blame]
//! Top-level lib.rs for `cranelift_jit`.
//!
//! There is an [example project](https://github.com/bytecodealliance/cranelift-jit-demo/)
//! which shows how to use some of the features of `cranelift_jit`.
#![deny(missing_docs, unreachable_pub)]
mod backend;
mod compiled_blob;
mod memory;
pub use crate::backend::{JITBuilder, JITModule};
/// Version number of this crate.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");