15 lines
450 B
TOML
15 lines
450 B
TOML
[package]
|
|
name = "torrent-cleanup"
|
|
description = "Tiny CLI that deletes files in a torrent download directory that are not associated with a torrent in another directory."
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.3.0", features = [ "derive" ] }
|
|
anyhow = "1.0.69"
|
|
lava_torrent = "0.11.1"
|
|
glob = "0.3.1"
|
|
walkdir = "2.3.3"
|