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