Merge pull request #561 from alexcrichton/improper-ctypes-nightly-warnings
Squash improper_ctypes warnings on nightly
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
//! Wasmtime embed API. Based on wasm-c-api.
|
||||
|
||||
#![allow(improper_ctypes)]
|
||||
#![cfg_attr(not(feature = "std"), no_std)]
|
||||
|
||||
mod callable;
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
#![allow(improper_ctypes)]
|
||||
|
||||
use crate::import::into_instance_from_obj;
|
||||
use crate::instance::Instance;
|
||||
use crate::memory::Memory;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
//! Runtime library support for Wasmtime.
|
||||
|
||||
#![allow(improper_ctypes)]
|
||||
#![deny(missing_docs, trivial_numeric_casts, unused_extern_crates)]
|
||||
#![warn(unused_import_braces)]
|
||||
#![cfg_attr(feature = "std", deny(unstable_features))]
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
#![allow(improper_ctypes)]
|
||||
|
||||
extern crate alloc;
|
||||
|
||||
mod instantiate;
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
#![allow(improper_ctypes)]
|
||||
|
||||
use alloc::rc::Rc;
|
||||
use core::cell::RefCell;
|
||||
use cranelift_codegen::ir::types;
|
||||
|
||||
Reference in New Issue
Block a user