[package] name = "dircpy" version = "0.3.19" authors = ["Johann Woelper "] edition = "2018" license = "MIT" description = "Copy directories recursively with flexible options." repository = "https://github.com/woelper/dircpy/" keywords = ["copy", "recursive", "filesystem", "file"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["jwalk"] [dependencies] walkdir = "2.5" log = "0.4" # rayon = "1.4.0" jwalk = { version = "0.8", optional = true } [dev-dependencies] unzip = "0.1" reqwest = { version = "0.12", features = ["blocking"] } env_logger = "0.11" criterion = "0.5" [[bench]] name = "copy_rustlang" harness = false