Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/codegen/shared/src/lib.rs
3073 views
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
#![no_std]
6
7
pub mod constant_hash;
8
pub mod constants;
9
10
/// Version number of this crate.
11
pub const VERSION: &str = core::env!("CARGO_PKG_VERSION");
12
13