From 64c23e7425b277729170356e618b6e1a763962dc Mon Sep 17 00:00:00 2001 From: hozan23 Date: Mon, 20 May 2024 12:52:21 +0200 Subject: p2p: rexport keypair module from karyon_core --- p2p/src/lib.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'p2p/src/lib.rs') diff --git a/p2p/src/lib.rs b/p2p/src/lib.rs index fc2c26d..c873980 100644 --- a/p2p/src/lib.rs +++ b/p2p/src/lib.rs @@ -7,9 +7,9 @@ //! use easy_parallel::Parallel; //! use smol::{future, Executor}; //! -//! use karyon_core::crypto::{KeyPair, KeyPairType}; -//! use karyon_p2p::{Backend, Config, PeerID}; +//! use karyon_p2p::{Backend, Config, PeerID, keypair::{KeyPair, KeyPairType}}; //! +//! // Generate a new keypair for the peer //! let key_pair = KeyPair::generate(&KeyPairType::Ed25519); //! //! // Create the configuration for the backend. @@ -23,7 +23,9 @@ //! //! let task = async { //! // Run the backend -//! backend.run().await.unwrap(); +//! backend.run() +//! .await +//! .expect("start the backend"); //! //! // .... //! -- cgit v1.2.3