mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-16 16:20:49 +00:00
Merge #954
954: Deny missing docs in the clif backend crate r=bjfish a=bjfish <!-- Prior to submitting a PR, review the CONTRIBUTING.md document for recommendations on how to test: https://github.com/wasmerio/wasmer/blob/master/CONTRIBUTING.md#pull-requests --> # Description Deny missing docs in the clif backend crate <!-- Provide details regarding the change including motivation, links to related issues, and the context of the PR. --> Co-authored-by: Brandon Fish <brandon.j.fish@gmail.com> Co-authored-by: Brandon Fish <bjfish@users.noreply.github.com>
This commit is contained in:
commit
d64d070c9f
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user