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;