rqbit/crates/librqbit/Cargo.toml

50 lines
1.1 KiB
TOML
Raw Normal View History

2021-06-25 13:47:51 +01:00
[package]
name = "librqbit"
version = "0.1.0"
authors = ["Igor Katson <igor.katson@gmail.com>"]
edition = "2018"
2021-07-01 19:17:44 +01:00
[features]
default = ["sha1-openssl"]
sha1-system = ["crypto-hash"]
sha1-openssl = ["openssl"]
sha1-rust = ["sha1"]
2021-06-25 13:47:51 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-07-03 19:10:59 +01:00
bencode = {path = "../bencode"}
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"}
2021-06-25 13:47:51 +01:00
tokio = {version = "1", features = ["macros", "rt-multi-thread"]}
serde = {version = "1", features=["derive"]}
2021-07-08 23:03:58 +01:00
serde_json = "1"
2021-06-25 13:47:51 +01:00
anyhow = "1"
2021-07-01 19:17:44 +01:00
2021-06-25 13:47:51 +01:00
reqwest = "0.11"
urlencoding = "1"
byteorder = "1"
bincode = "1"
bitvec = "0.22"
parking_lot = "0.11"
log = "0.4"
2021-06-26 18:13:46 +01:00
size_format = "1"
2021-06-27 10:10:59 +01:00
rand = "0.8"
2021-06-30 10:14:33 +01:00
warp = "0.3"
2021-07-01 19:17:44 +01:00
openssl = {version="0.10", optional=true}
crypto-hash = {version="0.3", optional=true}
sha1 = {version = "0.6", optional=true}
2021-06-25 13:47:51 +01:00
uuid = {version = "0.8", features = ["v4"]}
futures = "0.3"
url = "2"
hex = "0.4"
2021-06-25 13:47:51 +01:00
[dev-dependencies]
futures = {version = "0.3"}
2021-07-03 19:10:59 +01:00
pretty_env_logger = "0.4"