rqbit/crates/librqbit/Cargo.toml

75 lines
2.4 KiB
TOML
Raw Normal View History

2021-06-25 13:47:51 +01:00
[package]
name = "librqbit"
2023-12-09 00:27:43 +00:00
version = "5.1.0"
2021-06-25 13:47:51 +01:00
authors = ["Igor Katson <igor.katson@gmail.com>"]
2023-11-22 23:13:27 +00:00
edition = "2021"
2023-11-15 14:26:50 +00:00
description = "The main library used by rqbit torrent client. The binary is just a small wrapper on top of it."
license = "Apache-2.0"
2023-11-16 07:39:49 +00:00
documentation = "https://docs.rs/librqbit"
2023-11-15 14:26:50 +00:00
repository = "https://github.com/ikatson/rqbit"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-07-01 19:17:44 +01:00
[features]
default = ["sha1-system", "default-tls"]
2023-11-20 20:15:40 +00:00
webui = []
timed_existence = []
sha1-system = ["sha1w/sha1-system"]
sha1-openssl = ["sha1w/sha1-openssl"]
sha1-rust = ["sha1w/sha1-rust"]
default-tls = ["reqwest/default-tls"]
rust-tls = ["reqwest/rustls-tls"]
2021-06-25 13:47:51 +01:00
[dependencies]
bencode = {path = "../bencode", default-features=false, package="librqbit-bencode", version="2.2.1"}
2023-11-15 13:48:50 +00:00
buffers = {path = "../buffers", package="librqbit-buffers", version = "2.2.1"}
2023-12-07 12:33:08 +00:00
librqbit-core = {path = "../librqbit_core", version = "3.4.0"}
2023-11-15 13:47:26 +00:00
clone_to_owned = {path = "../clone_to_owned", package="librqbit-clone-to-owned", version = "2.2.1"}
2023-12-07 12:34:51 +00:00
peer_binary_protocol = {path = "../peer_binary_protocol", package="librqbit-peer-protocol", version = "3.4.0"}
sha1w = {path = "../sha1w", default-features=false, package="librqbit-sha1-wrapper", version="2.2.1"}
2023-12-07 12:33:08 +00:00
dht = {path = "../dht", package="librqbit-dht", version="5.0.0"}
2023-12-05 14:48:19 +00:00
librqbit-upnp = {path = "../upnp", version = "0.1.0"}
2021-07-03 19:10:59 +01:00
2021-06-25 13:47:51 +01:00
tokio = {version = "1", features = ["macros", "rt-multi-thread"]}
axum = {version = "0.7"}
tower-http = {version = "0.5", features = ["cors", "trace"]}
tokio-stream = "0.1"
2021-06-25 13:47:51 +01:00
serde = {version = "1", features=["derive"]}
2021-07-08 23:03:58 +01:00
serde_json = "1"
2023-11-15 14:43:41 +00:00
serde_urlencoded = "0.7"
2021-06-25 13:47:51 +01:00
anyhow = "1"
2023-11-22 17:19:35 +00:00
itertools = "0.12"
http = "1"
regex = "1"
reqwest = {version="0.11.22", default-features=false, features = ["json"]}
2022-12-04 13:11:40 +00:00
urlencoding = "2"
2021-06-25 13:47:51 +01:00
byteorder = "1"
bincode = "1"
2022-12-04 13:11:40 +00:00
bitvec = "1"
parking_lot = "0.12"
2023-11-19 12:50:11 +00:00
tracing = "0.1.40"
2021-06-26 18:13:46 +01:00
size_format = "1"
2021-06-27 10:10:59 +01:00
rand = "0.8"
2021-07-01 19:17:44 +01:00
openssl = {version="0.10", optional=true}
crypto-hash = {version="0.3", optional=true}
2022-12-04 13:11:40 +00:00
sha1 = {version = "0.10", optional=true}
tracing-subscriber = {version = "0.3", default-features = false, features = ["json"]}
2021-06-25 13:47:51 +01:00
2022-12-04 13:11:40 +00:00
uuid = {version = "1.2", features = ["v4"]}
2021-06-25 13:47:51 +01:00
futures = "0.3"
url = "2"
hex = "0.4"
2023-11-17 23:30:07 +00:00
backoff = "0.4.0"
2023-11-19 15:47:14 +00:00
dashmap = "5.5.3"
base64 = "0.21.5"
2023-12-02 15:35:26 +00:00
serde_with = "3.4.0"
tokio-util = "0.7.10"
bytes = "1.5.0"
2021-06-25 13:47:51 +01:00
[dev-dependencies]
futures = {version = "0.3"}
2023-11-26 09:59:44 +00:00
tracing-subscriber = "0.3"
tokio-test = "0.4"