2021-07-03 19:10:59 +01:00
|
|
|
[package]
|
2023-11-15 13:53:10 +00:00
|
|
|
name = "librqbit-core"
|
2024-04-07 13:41:29 +04:00
|
|
|
version = "3.7.0"
|
2023-11-22 23:13:27 +00:00
|
|
|
edition = "2021"
|
2023-11-15 14:16:08 +00:00
|
|
|
description = "Important utilities used throughout librqbit useful for working with torrents."
|
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
documentation = "https://docs.rs/librqbit-core"
|
|
|
|
|
repository = "https://github.com/ikatson/rqbit"
|
|
|
|
|
readme = "README.md"
|
2021-07-03 19:10:59 +01:00
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-11-25 15:15:16 +00:00
|
|
|
tracing = "0.1.40"
|
2024-03-29 11:00:58 +00:00
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
|
2021-07-03 19:10:59 +01:00
|
|
|
hex = "0.4"
|
|
|
|
|
anyhow = "1"
|
|
|
|
|
url = "2"
|
2024-03-29 11:00:58 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2022-12-04 13:11:40 +00:00
|
|
|
parking_lot = "0.12"
|
2024-03-29 11:00:58 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2024-03-29 21:06:59 +00:00
|
|
|
buffers = { path = "../buffers", package = "librqbit-buffers", version = "3.0.0" }
|
2024-03-29 11:00:58 +00:00
|
|
|
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "2.2.2" }
|
|
|
|
|
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "2.2.1" }
|
2023-11-16 07:36:06 +00:00
|
|
|
itertools = "0.12"
|
2023-12-02 21:12:15 +00:00
|
|
|
directories = "5"
|
2023-12-07 08:10:17 +00:00
|
|
|
tokio-util = "0.7.10"
|
2023-11-30 00:48:57 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-12-02 21:12:15 +00:00
|
|
|
serde_json = "1"
|