# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "file_aggregator" version = "0.2.0" authors = ["Borna Cvitanić borna.cvitanic@gmail.com"] description = "File Aggregator is a utility for aggregating and distributing file contents. It allows you to combine file contents from a specified directory into a single text, which is copied to the clipboard. You can also distribute file contents from the clipboard back to their respective files based on the relative paths." readme = "README.md" keywords = [ "CLI", "file", "aggregation", "clipboard", ] categories = [ "command-line-utilities", "filesystem", "text-processing", "data-structures", "development-tools", ] license = "MIT" repository = "https://github.com/bornacvitanic/file_aggregator" [[bin]] name = "fileagg" path = "src/main.rs" [dependencies.clap] version = "^4.5.9" features = ["derive"] [dependencies.copypasta] version = "^0.10.1" [dependencies.walkdir] version = "^2.5.0" [dev-dependencies.tempfile] version = "^3.10.1"