Skip to main content

cranelift_object/
lib.rs

1//! Top-level lib.rs for `cranelift_object`.
2//!
3//! This re-exports `object` so you don't have to explicitly keep the versions in sync.
4
5#![deny(missing_docs)]
6
7mod backend;
8#[cfg(feature = "unwind")]
9mod unwind;
10
11pub use crate::backend::{ObjectBuilder, ObjectModule, ObjectProduct};
12
13/// Version number of this crate.
14pub const VERSION: &str = env!("CARGO_PKG_VERSION");
15
16pub use object;