dcap_ql/
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#![doc(html_logo_url = "https://edp.fortanix.com/img/docs/edp-logo.svg",
8       html_favicon_url = "https://edp.fortanix.com/favicon.ico",
9       html_root_url = "https://edp.fortanix.com/docs/api/")]
10
11extern crate byteorder;
12#[macro_use]
13extern crate anyhow;
14#[cfg(all(feature="bindings", not(feature = "link")))]
15#[macro_use]
16extern crate lazy_static;
17#[cfg(feature = "verify")]
18extern crate mbedtls;
19#[macro_use]
20extern crate num_derive;
21extern crate num_traits;
22#[cfg(all(test, feature = "verify"))]
23extern crate serde;
24extern crate sgx_isa;
25
26
27pub mod quote;
28#[cfg(feature = "bindings")]
29mod bindings;
30
31#[cfg(feature = "bindings")]
32pub use bindings::*;
33