Remove allow(improper_ctypes) (#797)
This was a bug on nightly a month or so ago but has since been fixed!
This commit is contained in:
@@ -6,8 +6,6 @@
|
|||||||
//! and there to implement Rust idioms. This crate also defines the actual C API
|
//! and there to implement Rust idioms. This crate also defines the actual C API
|
||||||
//! itself for consumption from other languages.
|
//! itself for consumption from other languages.
|
||||||
|
|
||||||
#![allow(improper_ctypes)]
|
|
||||||
|
|
||||||
mod callable;
|
mod callable;
|
||||||
mod context;
|
mod context;
|
||||||
mod externals;
|
mod externals;
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
#![allow(improper_ctypes)]
|
|
||||||
|
|
||||||
use crate::function::{wrap_into_pyfunction, Function};
|
use crate::function::{wrap_into_pyfunction, Function};
|
||||||
use crate::instance::Instance;
|
use crate::instance::Instance;
|
||||||
use crate::memory::Memory;
|
use crate::memory::Memory;
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
//! Runtime library support for Wasmtime.
|
//! Runtime library support for Wasmtime.
|
||||||
|
|
||||||
#![allow(improper_ctypes)]
|
|
||||||
#![deny(missing_docs, trivial_numeric_casts, unused_extern_crates)]
|
#![deny(missing_docs, trivial_numeric_casts, unused_extern_crates)]
|
||||||
#![warn(unused_import_braces)]
|
#![warn(unused_import_braces)]
|
||||||
#![cfg_attr(feature = "clippy", plugin(clippy(conf_file = "../../clippy.toml")))]
|
#![cfg_attr(feature = "clippy", plugin(clippy(conf_file = "../../clippy.toml")))]
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
#![allow(improper_ctypes)]
|
|
||||||
|
|
||||||
mod instantiate;
|
mod instantiate;
|
||||||
pub mod old;
|
pub mod old;
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
#![allow(improper_ctypes)]
|
|
||||||
|
|
||||||
extern crate alloc;
|
extern crate alloc;
|
||||||
|
|
||||||
mod instantiate;
|
mod instantiate;
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
#![allow(improper_ctypes)]
|
|
||||||
|
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
|
|||||||
Reference in New Issue
Block a user