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