mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-08 05:38:19 +00:00
25 lines
662 B
Rust
25 lines
662 B
Rust
#![deny(
|
|
nonstandard_style,
|
|
unused_imports,
|
|
unused_mut,
|
|
unused_variables,
|
|
unused_unsafe,
|
|
unreachable_patterns
|
|
)]
|
|
#![cfg_attr(
|
|
all(not(target_os = "windows"), not(target_arch = "aarch64")),
|
|
deny(dead_code)
|
|
)]
|
|
#![cfg_attr(nightly, feature(unwind_attributes))]
|
|
#![doc(html_favicon_url = "https://wasmer.io/static/icons/favicon.ico")]
|
|
#![doc(html_logo_url = "https://avatars3.githubusercontent.com/u/44205449?s=200&v=4")]
|
|
|
|
mod compiler;
|
|
mod config;
|
|
mod object_file;
|
|
mod trampoline;
|
|
mod translator;
|
|
|
|
pub use crate::compiler::LLVMCompiler;
|
|
pub use crate::config::{CompiledKind, InkwellMemoryBuffer, InkwellModule, LLVMCallbacks, LLVM};
|