2021-07-03 19:10:59 +01:00
|
|
|
[package]
|
2023-11-15 13:53:10 +00:00
|
|
|
name = "librqbit-core"
|
2023-11-16 07:36:06 +00:00
|
|
|
version = "2.2.2"
|
2021-07-03 19:10:59 +01:00
|
|
|
edition = "2018"
|
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
|
|
|
|
|
|
2023-11-15 14:18:03 +00:00
|
|
|
[features]
|
|
|
|
|
default = ["sha1-system"]
|
|
|
|
|
sha1-system = ["bencode/sha1-system"]
|
|
|
|
|
sha1-openssl = ["bencode/sha1-openssl"]
|
|
|
|
|
sha1-rust = ["bencode/sha1-rust"]
|
|
|
|
|
|
2021-07-03 19:10:59 +01:00
|
|
|
[dependencies]
|
|
|
|
|
hex = "0.4"
|
|
|
|
|
anyhow = "1"
|
|
|
|
|
url = "2"
|
2022-12-04 13:11:40 +00:00
|
|
|
uuid = {version = "1", features = ["v4"]}
|
|
|
|
|
parking_lot = "0.12"
|
2021-07-03 19:10:59 +01:00
|
|
|
serde = {version = "1", features=["derive"]}
|
2023-11-15 13:48:50 +00:00
|
|
|
buffers = {path="../buffers", package="librqbit-buffers", version = "2.2.1"}
|
2023-11-15 13:50:56 +00:00
|
|
|
bencode = {path = "../bencode", default-features=false, package="librqbit-bencode", version="2.2.1"}
|
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-11-16 07:36:06 +00:00
|
|
|
itertools = "0.12"
|