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
9pub use crate::backend::{ObjectBuilder, ObjectModule, ObjectProduct};
10
11/// Version number of this crate.
12pub const VERSION: &str = env!("CARGO_PKG_VERSION");
13
14pub use object;