BitTorrent-Rust/brs/Cargo.toml

20 lines
560 B
TOML
Raw Normal View History

2024-03-31 00:36:57 +01:00
[package]
name = "brs"
version = "0.1.0"
edition = "2021"
2024-04-01 14:20:05 +02:00
description = "BRS stands for \"BitTorrent Rust\". It's a library for the BitTorrent protocol."
2024-03-31 00:36:57 +01:00
authors = [ "Antoine Langlois <dev@antoine-langlois.net>" ]
[dependencies]
2024-04-01 14:20:05 +02:00
bendy = { version = "0.3", features = ["std", "serde"] }
2024-03-31 00:36:57 +01:00
chrono = { version = "0.4", features = ["serde"] }
hex = "0.4"
human_bytes = "0.4"
2024-04-01 14:20:05 +02:00
rand = "0.8"
reqwest = "0.12"
2024-03-31 00:36:57 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
2024-04-01 14:20:05 +02:00
serde_with = { version = "3.7", features = ["chrono"] }
sha1 = "0.10"
2024-03-31 00:36:57 +01:00
thiserror = "1.0"