17 lines
462 B
TOML
17 lines
462 B
TOML
[package]
|
|
name = "rcp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A modern replacement for cp with progress bars"
|
|
license = "MIT"
|
|
authors = ["Alexander Pieck <admin@team-pieck.de>"]
|
|
|
|
[dependencies]
|
|
indicatif = "0.17.11" # Removed non-existent feature
|
|
anyhow = "1.0"
|
|
walkdir = "2.4"
|
|
glob = "0.3"
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
colored = "2.1"
|
|
filetime = "0.2" # For preserving timestamps
|
|
thiserror = "1.0" # For better error handling
|