mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-25 06:31:32 +00:00
Deny missing docs in the clif backend crate
This commit is contained in:
@ -1,5 +1,10 @@
|
||||
//! The Wasmer Cranelift Backend crate is used to compile wasm binary code via parse events from the
|
||||
//! Wasmer runtime common parser code into machine code.
|
||||
//!
|
||||
|
||||
#![deny(
|
||||
dead_code,
|
||||
missing_docs,
|
||||
nonstandard_style,
|
||||
unused_imports,
|
||||
unused_mut,
|
||||
@ -53,6 +58,8 @@ pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||
|
||||
use wasmer_runtime_core::codegen::SimpleStreamingCompilerGen;
|
||||
|
||||
/// Streaming compiler implementation for the Cranelift backed. Compiles web assembly binary into
|
||||
/// machine code.
|
||||
pub type CraneliftCompiler = SimpleStreamingCompilerGen<
|
||||
code::CraneliftModuleCodeGenerator,
|
||||
code::CraneliftFunctionCodeGenerator,
|
||||
|
Reference in New Issue
Block a user