30 lines
928 B
TOML
30 lines
928 B
TOML
|
[package]
|
||
|
name = "rusty_torrenter"
|
||
|
version = "0.9.3"
|
||
|
edition = "2021"
|
||
|
|
||
|
description = "A BitTorrent client implemented in Rust that allows you to interact with the BitTorrent protocol and download torrents."
|
||
|
|
||
|
authors = ["Arlo Filley <filleyarlo@gmail.com>"]
|
||
|
exclude = ["testing/", "process/", ".vscode/", ".DS_STORE"]
|
||
|
license = "MIT"
|
||
|
keywords = ["bittorrent", "torrent", "torrentclient"]
|
||
|
readme = "README.md"
|
||
|
repository = "https://github.com/arlofilley/rusty_torrent"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
lib_rusty_torrent = { path = "../lib_rusty_torrent" }
|
||
|
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"
|
||
|
tokio = { workspace = true }
|
||
|
clap = { version = "*", features = ["derive"] }
|