From 9b30c7552ae38bd8abff58445cd2f23922cef485 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Thu, 11 Feb 2021 22:40:13 +0100 Subject: [PATCH] Forbid unsafe code in `clipboard_x11` --- x11/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/x11/src/lib.rs b/x11/src/lib.rs index a2cf2bd..aa1e7e0 100644 --- a/x11/src/lib.rs +++ b/x11/src/lib.rs @@ -1,3 +1,4 @@ +#[forbid(unsafe_code)] mod clipboard; mod error;