From cb010a82a0025b5afff76342969a8c87c9f4a6b1 Mon Sep 17 00:00:00 2001 From: Niko PLP Date: Sun, 13 Aug 2023 22:28:34 +0300 Subject: [PATCH] temporarly removing feature native-tls-vendored --- Cargo.lock | 5 +++-- p2p-broker/src/broker_store/invitation.rs | 1 - p2p-net/Cargo.toml | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 81a39a6..d8d032c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2527,7 +2527,7 @@ checksum = "7fc7aa29613bd6a620df431842069224d8bc9011086b1db4c0e0cd47fa03ec9a" [[package]] name = "librocksdb-sys" version = "0.11.0+8.3.2" -source = "git+https://git.nextgraph.org/NextGraph/rust-rocksdb.git?branch=master#92898951055eba400ccbbfb34df93b640000e384" +source = "git+https://git.nextgraph.org/NextGraph/rust-rocksdb.git?branch=master#67f184454c7c44e3b99cc90b80d8350239a255c4" dependencies = [ "bindgen", "bzip2-sys", @@ -2535,6 +2535,7 @@ dependencies = [ "glob", "libc", "libz-sys", + "openssl", ] [[package]] @@ -4047,7 +4048,7 @@ dependencies = [ [[package]] name = "rocksdb" version = "0.21.0" -source = "git+https://git.nextgraph.org/NextGraph/rust-rocksdb.git?branch=master#92898951055eba400ccbbfb34df93b640000e384" +source = "git+https://git.nextgraph.org/NextGraph/rust-rocksdb.git?branch=master#67f184454c7c44e3b99cc90b80d8350239a255c4" dependencies = [ "libc", "librocksdb-sys", diff --git a/p2p-broker/src/broker_store/invitation.rs b/p2p-broker/src/broker_store/invitation.rs index 8ef3a98..ff30f96 100644 --- a/p2p-broker/src/broker_store/invitation.rs +++ b/p2p-broker/src/broker_store/invitation.rs @@ -182,7 +182,6 @@ mod test { use p2p_repo::types::*; use p2p_repo::utils::*; use std::fs; - use stores_lmdb::kcv_store::LmdbKCVStore; use tempfile::Builder; use crate::broker_store::account::Account; diff --git a/p2p-net/Cargo.toml b/p2p-net/Cargo.toml index e7e95c0..be1f719 100644 --- a/p2p-net/Cargo.toml +++ b/p2p-net/Cargo.toml @@ -25,11 +25,13 @@ noise-protocol = "0.2.0-rc1" noise-rust-crypto = "0.6.0-rc.1" ed25519-dalek = "1.0.1" either = "1.8.1" -reqwest = { version = "0.11.18", features = ["json","native-tls-vendored"] } +reqwest = { version = "0.11.18", features = ["json"] } +#,"native-tls-vendored" url = "2.4.0" base64-url = "2.0.0" web-time = "0.2.0" + [target.'cfg(target_arch = "wasm32")'.dependencies.getrandom] version = "0.2.7" features = ["js"]