From b52b3739bed47e754eedd27f3d412e5b2600b6a0 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 2 Oct 2024 12:49:16 +0200 Subject: [PATCH] acme: deny(unsafe_code) Signed-off-by: Wolfgang Bumiller --- proxmox-acme/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/proxmox-acme/src/lib.rs b/proxmox-acme/src/lib.rs index 5f63806e..df722629 100644 --- a/proxmox-acme/src/lib.rs +++ b/proxmox-acme/src/lib.rs @@ -12,6 +12,7 @@ //! The [`Account`] helper supports RSA and ECC keys and provides most of the API methods. #![deny(missing_docs)] +#![deny(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))] #[cfg(feature = "api-types")]