lib.rs 721 B

12345678910111213141516171819202122232425
  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. #![deny(missing_docs)]
  9. #![deny(warnings)]
  10. #![deny(clippy::unwrap_used)]
  11. #[cfg(feature = "grpc")]
  12. mod proto;
  13. #[cfg(feature = "grpc")]
  14. pub use proto::{
  15. client::SignatoryRpcClient,
  16. server::{start_grpc_server, start_grpc_server_with_incoming, SignatoryLoader},
  17. };
  18. mod common;
  19. pub mod db_signatory;
  20. pub mod embedded;
  21. pub mod signatory;