mc_sgx_sdk_tools/
lib.rs

1// Copyright (c) 2022-2024 The MobileCoin Foundation
2
3#![doc = include_str!("../README.md")]
4#![deny(missing_docs, missing_debug_implementations, unsafe_code)]
5mod edger8r;
6mod sign;
7
8pub use crate::edger8r::Edger8r;
9pub use crate::sign::SgxSign;