lib.rs 573 B

12345678910111213141516171819
  1. //! In memory signatory
  2. //!
  3. //! Implements the Signatory trait from cdk-common to manage the key in-process, to be included
  4. //! inside the mint to be executed as a single process.
  5. //!
  6. //! Even if it is embedded in the same process, the keys are not accessible from the outside of this
  7. //! module, all communication is done through the Signatory trait and the signatory manager.
  8. #[cfg(feature = "grpc")]
  9. mod proto;
  10. #[cfg(feature = "grpc")]
  11. pub use proto::{client::SignatoryRpcClient, server::grpc_server};
  12. mod common;
  13. pub mod memory;
  14. pub mod service;
  15. pub mod signatory;