rqbit/crates/librqbit/Cargo.toml

81 lines
2.6 KiB
TOML
Raw Normal View History

2021-06-25 13:47:51 +01:00
[package]
name = "librqbit"
2024-04-07 13:37:39 +04:00
version = "5.6.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 = ["default-tls"]
2023-11-20 20:15:40 +00:00
webui = []
timed_existence = []
default-tls = ["reqwest/default-tls"]
rust-tls = ["reqwest/rustls-tls"]
2021-06-25 13:47:51 +01:00
[dependencies]
2024-03-29 21:06:59 +00:00
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "2.2.2" }
2024-04-07 13:41:29 +04:00
tracker_comms = { path = "../tracker_comms", default-features = false, package = "librqbit-tracker-comms", version = "1.0.2" }
2024-03-29 21:06:59 +00:00
buffers = { path = "../buffers", package = "librqbit-buffers", version = "3.0.0" }
2024-04-07 13:41:29 +04:00
librqbit-core = { path = "../librqbit_core", version = "3.7.0" }
2024-03-29 21:06:59 +00:00
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "2.2.1" }
2024-04-07 13:41:29 +04:00
peer_binary_protocol = { path = "../peer_binary_protocol", package = "librqbit-peer-protocol", version = "3.5.2" }
2024-03-29 21:06:59 +00:00
sha1w = { path = "../sha1w", default-features = false, package = "librqbit-sha1-wrapper", version = "3.0.0" }
2024-04-07 13:41:29 +04:00
dht = { path = "../dht", package = "librqbit-dht", version = "5.0.3" }
2024-03-29 21:06:59 +00:00
librqbit-upnp = { path = "../upnp", version = "0.1.0" }
2021-07-03 19:10:59 +01:00
2024-03-29 21:06:59 +00:00
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
axum = { version = "0.7.4" }
tower-http = { version = "0.5", features = ["cors", "trace"] }
tokio-stream = "0.1"
2024-03-29 21:06:59 +00: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"
2024-03-29 21:06:59 +00:00
reqwest = { version = "0.12", 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
2024-03-29 21:06:59 +00:00
openssl = { version = "0.10", optional = true }
crypto-hash = { version = "0.3", optional = true }
sha1 = { version = "0.10", optional = true }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"json",
"fmt",
"env-filter",
] }
2021-06-25 13:47:51 +01:00
2024-03-29 21:06:59 +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"
2023-12-17 13:01:59 +00:00
rlimit = "0.10.1"
async-stream = "0.3.5"
2021-06-25 13:47:51 +01:00
[dev-dependencies]
2024-03-29 21:06:59 +00:00
futures = { version = "0.3" }
2023-11-26 09:59:44 +00:00
tracing-subscriber = "0.3"
tokio-test = "0.4"
tempfile = "3"
2024-03-29 21:06:59 +00:00
rand = { version = "0.8", features = ["small_rng"] }