2023-08-27 13:21:53 +01:00
|
|
|
[package]
|
|
|
|
name = "rusty_torrent"
|
2023-08-27 13:45:06 +01:00
|
|
|
version = "0.9.2"
|
2023-08-27 13:21:53 +01:00
|
|
|
edition = "2021"
|
|
|
|
|
2023-08-27 13:45:06 +01:00
|
|
|
authors = ["Arlo Filley <filleyarlo@gmail.com>"]
|
|
|
|
exclude = ["testing/", "process/", ".vscode/"]
|
|
|
|
license = "MIT"
|
|
|
|
license-file = "LICENSE"
|
|
|
|
keywords = ["bittorrent", "torrent", "torrent client"]
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/arlofilley/rusty_torrent"
|
|
|
|
|
2023-08-27 13:21:53 +01:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
dns-lookup = "2.0.2"
|
|
|
|
log = "0.4.20"
|
|
|
|
regex = "1.9.4"
|
|
|
|
reqwest = "0.11.20"
|
|
|
|
serde = { version = "1.0.183", features = ["derive"] }
|
|
|
|
serde_bencode = "0.2.3"
|
|
|
|
serde_bytes = "0.11.12"
|
|
|
|
sha1 = "0.10.5"
|
|
|
|
simple-logging = "2.0.2"
|
2023-08-27 13:45:06 +01:00
|
|
|
tokio = { version = "1.30.0", features = ["full"] }
|