From 90b951e5bd8b388a6116ffa68ab058a988490194 Mon Sep 17 00:00:00 2001 From: Niko PLP Date: Fri, 13 Oct 2023 17:34:09 +0300 Subject: [PATCH] new dist-file --- README.md | 4 ++-- p2p-net/src/server_storage.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 327aed3..aa1ea32 100644 --- a/README.md +++ b/README.md @@ -155,8 +155,8 @@ For building the apps, see this [documentation](ng-app/README.md). #### OpenBSD -On OpenBSD, a conflict between the installed LibreSSL library and the reqwest crate, need a bit of attention. -Before compiling the daemon for OpenBSD, please comment out lines 32-33 of `p2p-repo/Cargo.toml`. This will be solved soon in a more appropriate way. +On OpenBSD, a conflict between the installed LibreSSL library and the reqwest crate, needs a bit of attention. +Before compiling the daemon for OpenBSD, please comment out lines 32-33 of `p2p-net/Cargo.toml`. This will be solved soon in a more appropriate way. ``` #[target.'cfg(target_arch = "wasm32")'.dependencies] diff --git a/p2p-net/src/server_storage.rs b/p2p-net/src/server_storage.rs index 8194df1..923f440 100644 --- a/p2p-net/src/server_storage.rs +++ b/p2p-net/src/server_storage.rs @@ -10,7 +10,7 @@ */ use crate::{errors::ProtocolError, types::*}; -use p2p_repo::{kcv_store::KCVStore, types::PubKey}; +use p2p_repo::types::PubKey; pub trait ServerStorage: Send + Sync { fn get_user(&self, user_id: PubKey) -> Result;