diff --git a/intel-sgx/aesm-client/src/lib.rs b/intel-sgx/aesm-client/src/lib.rs index 59357185..3881107d 100644 --- a/intel-sgx/aesm-client/src/lib.rs +++ b/intel-sgx/aesm-client/src/lib.rs @@ -11,6 +11,7 @@ #![doc(html_logo_url = "https://edp.fortanix.com/img/docs/edp-logo.svg", html_favicon_url = "https://edp.fortanix.com/favicon.ico", html_root_url = "https://edp.fortanix.com/docs/api/")] +#![allow(non_local_definitions)] // Required by failure #![deny(warnings)] extern crate byteorder; diff --git a/intel-sgx/enclave-runner/src/lib.rs b/intel-sgx/enclave-runner/src/lib.rs index 175d2757..6145c627 100644 --- a/intel-sgx/enclave-runner/src/lib.rs +++ b/intel-sgx/enclave-runner/src/lib.rs @@ -4,6 +4,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#![allow(non_local_definitions)] // Required by failure #![deny(warnings)] #![doc( html_logo_url = "https://edp.fortanix.com/img/docs/edp-logo.svg",