cranelift_jit/
lib.rs

1//! Top-level lib.rs for `cranelift_jit`.
2//!
3//! There is an [example project](https://github.com/bytecodealliance/cranelift-jit-demo/)
4//! which shows how to use some of the features of `cranelift_jit`.
5
6#![deny(missing_docs, unreachable_pub)]
7
8mod backend;
9mod compiled_blob;
10mod memory;
11
12pub use crate::backend::{JITBuilder, JITModule};
13
14/// Version number of this crate.
15pub const VERSION: &str = env!("CARGO_PKG_VERSION");