├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── Makefile ├── README.md ├── rustfmt.toml ├── src ├── action.rs ├── errors.rs ├── formats │ ├── csv.rs │ ├── json.rs │ └── mod.rs ├── main.rs ├── readers.rs └── tests.rs └── test-resources ├── people.csv ├── people.json └── people.tsv /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/README.md -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | hard_tabs = true 2 | -------------------------------------------------------------------------------- /src/action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/src/action.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/formats/csv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/src/formats/csv.rs -------------------------------------------------------------------------------- /src/formats/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/src/formats/json.rs -------------------------------------------------------------------------------- /src/formats/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/src/formats/mod.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/readers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/src/readers.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/src/tests.rs -------------------------------------------------------------------------------- /test-resources/people.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/test-resources/people.csv -------------------------------------------------------------------------------- /test-resources/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/test-resources/people.json -------------------------------------------------------------------------------- /test-resources/people.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arraypad/each/HEAD/test-resources/people.tsv --------------------------------------------------------------------------------