Another attempt to make it possible to build without openssl.

You'll need to cd into crates/rqbit to build with selective features.
This commit is contained in:
Igor Katson 2021-09-30 09:00:40 +01:00
parent f40a227459
commit 1bcc16c327
6 changed files with 16 additions and 10 deletions

View file

@ -13,12 +13,12 @@ sha1-rust = ["sha1w/sha1-openssl"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bencode = {path = "../bencode"}
bencode = {path = "../bencode", default-features=false}
buffers = {path = "../buffers"}
librqbit_core = {path = "../librqbit_core"}
clone_to_owned = {path = "../clone_to_owned"}
peer_binary_protocol = {path = "../peer_binary_protocol"}
sha1w = {path = "../sha1w"}
sha1w = {path = "../sha1w", default-features=false}
dht = {path = "../dht"}
tokio = {version = "1", features = ["macros", "rt-multi-thread"]}