Skip to content

Commit

Permalink
Allow non local definitions in Fail macro
Browse files Browse the repository at this point in the history
  • Loading branch information
raoulstrackx committed Feb 28, 2024
1 parent f262716 commit 7e757b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions intel-sgx/aesm-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions intel-sgx/enclave-runner/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 7e757b5

Please sign in to comment.