1#![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