1 //! This library contains code that is common to both the `cranelift-codegen` and
2 //! `cranelift-codegen-meta` libraries.
3 
4 #![deny(missing_docs)]
5 
6 pub mod constant_hash;
7 pub mod constants;
8 
9 /// Version number of this crate.
10 pub const VERSION: &str = env!("CARGO_PKG_VERSION");
11