enclave_runner/lib.rs
1/* Copyright (c) Fortanix, Inc.
2 *
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6
7#![allow(non_local_definitions)] // Required by failure
8#![deny(warnings)]
9#![doc(
10 html_logo_url = "https://edp.fortanix.com/img/docs/edp-logo.svg",
11 html_favicon_url = "https://edp.fortanix.com/favicon.ico",
12 html_root_url = "https://edp.fortanix.com/docs/api/"
13)]
14
15mod command;
16mod library;
17mod loader;
18mod tcs;
19pub mod usercalls;
20
21pub use crate::command::Command;
22pub use crate::library::Library;
23pub use crate::loader::{EnclaveBuilder, EnclavePanic};