[package] name = "rrecycle" authors = ["Emma Alexandria"] description = "Cross-platform terminal file manager with recycle bin support." version = "1.0.0" edition = "2021" readme = "README.md" license = "MIT" repository = "https://github.com/emmalexandria/rrecycle" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] chrono = "0.4.35" clap = { version = "4.5.2", features = ["cargo"] } colored = "2.1.0" dialoguer = "0.11.0" indicatif = "0.17.8" prettytable = "0.10.0" terminal_size = "0.3.0" trash = "4.0.0" wild = "2.2.1" [dev-dependencies] criterion = "0.5.1" rand = "0.8.5" [[bin]] name = "rrc" path = "src/main.rs" [lib] name = "rrc_lib" path = "src/lib/lib.rs" [[bench]] name = "overwrite_speed" harness = false