https://github.com/maxblee/csv_cli_core
Basic error handling, delimiter parsing, and column selection for CSVs in Rust
https://github.com/maxblee/csv_cli_core
Last synced: 9 months ago
JSON representation
Basic error handling, delimiter parsing, and column selection for CSVs in Rust
- Host: GitHub
- URL: https://github.com/maxblee/csv_cli_core
- Owner: maxblee
- License: mit
- Created: 2019-09-15T07:47:44.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-15T09:45:56.000Z (almost 7 years ago)
- Last Synced: 2025-07-19T08:48:59.332Z (12 months ago)
- Language: Rust
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# csv_cli_core
Basic error handling, delimiter parsing, and column selection for CSVs in Rust
## Basic CSV Command-line interface utilities
This crate is a mostly unaltered adaptation of two modules I created for a command-line library
I built to [create pivot tables](https://github.com/maxblee/clipivot).
I'm hoping to continue using it in future CSV CLIs I build (assuming I do build future CLIs for reading CSVs).
## Installation
To use this library, type this into your `Cargo.toml` file:
```toml
csv_cli_core = { git = "https://github.com/maxblee/csv_cli_core" , tag = "v0.1.0" }
```