Skip to content

Commit 298d2da

Browse files
committed
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 298d2da

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crates/c-api/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
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(improper_ctypes_definitions, unknown_lints)]
56

67
// TODO complete the C API
78

0 commit comments

Comments
 (0)