nya
is a small and cute file processor. It does only what you want it to do, and nothing else.
sh
cargo add nya
Currently, the way you'd use it is somewhat like this:
```rust extern crate nya;
use nya::{ignore, create_middleware};
fn main() { nya::run(vec![ ignore(vec!["target/", ".DSStore"]), createmiddleware(|files| { let file = &mut files[0]; file.content = "test hello".to_string(); }, Some("source"), Some("destination")) ]).unwrap() } ```
This reads all files from a directory, and replaces the content of the first one with "test hello". Further documentation can be found on docs.rs.
Licensed under the AGPL-3.0+. See LICENSE.