From 2b94c65141578b39c5d6af18058f3aa75287245d Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Thu, 13 Feb 2020 14:36:17 +0100 Subject: [PATCH] feat(interface-types) Forbids unsafe code. --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 99a8f83..f4deaba 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -41,6 +41,7 @@ unused_unsafe, unused_variables )] +#![forbid(unsafe_code)] #![doc(html_favicon_url = "https://wasmer.io/static/icons/favicon.ico")] #![doc(html_logo_url = "https://github.com/wasmerio.png")]