[package] name = "rusty_torrent" 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 "] exclude = ["testing/", "process/", ".vscode/", ".DS_STORE"] license = "MIT" license-file = "LICENSE" 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] clap = { version = "4.4.0", features = ["derive"] } 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 = { version = "1.30.0", features = ["full"] }