rqbit/crates/librqbit_core/Cargo.toml

38 lines
1.2 KiB
TOML
Raw Normal View History

2021-07-03 19:10:59 +01:00
[package]
2023-11-15 13:53:10 +00:00
name = "librqbit-core"
2025-01-06 15:27:44 +00:00
version = "4.1.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
2024-08-27 17:26:39 +01:00
[features]
default = ["sha1-crypto-hash"]
sha1-crypto-hash = ["bencode/sha1-crypto-hash"]
sha1-ring = ["bencode/sha1-ring"]
2021-07-03 19:10:59 +01:00
[dependencies]
2023-11-25 15:15:16 +00:00
tracing = "0.1.40"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
2021-07-03 19:10:59 +01:00
hex = "0.4"
anyhow = "1"
url = { version = "2", default-features = false }
uuid = { version = "1", features = ["v4"] }
2022-12-04 13:11:40 +00:00
parking_lot = "0.12"
serde = { version = "1", features = ["derive"] }
2025-01-06 15:27:44 +00:00
buffers = { path = "../buffers", package = "librqbit-buffers", version = "4.2" }
2024-08-27 17:26:39 +01:00
bencode = { path = "../bencode", default-features = false, package = "librqbit-bencode", version = "3.0.1" }
2024-08-15 14:46:26 +01:00
clone_to_owned = { path = "../clone_to_owned", package = "librqbit-clone-to-owned", version = "3" }
2025-01-06 16:04:46 +00:00
itertools = "0.14"
2023-12-02 21:12:15 +00:00
directories = "5"
tokio-util = "0.7.10"
data-encoding = "2.6.0"
bytes = "1.7.1"
2024-08-30 16:45:19 +01:00
assert_cfg = "0.1.0"
[dev-dependencies]
2023-12-02 21:12:15 +00:00
serde_json = "1"