Skip to content

Commit 41e1300

Browse files
alexcrichtonbnjbvr
authored andcommitted
Allow improper_ctypes_definitions in C API
This was enabled in rust-lang/rust#72700 but it looks like it's still too noisy for it to be useful to us.
1 parent a9455a8 commit 41e1300

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

crates/c-api/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
//! [Wasm C API](https://github.com/WebAssembly/wasm-c-api).
33
44
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
5+
#![allow(unknown_lints)]
6+
#![allow(improper_ctypes_definitions)]
57

68
// TODO complete the C API
79

0 commit comments

Comments
 (0)