├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── lib.rs ├── main.rs ├── reader.rs ├── reader ├── csv_reader.rs └── jsonl_reader.rs ├── writer.rs └── writer ├── ascii_writer.rs └── markdown_writer.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/src/reader.rs -------------------------------------------------------------------------------- /src/reader/csv_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/src/reader/csv_reader.rs -------------------------------------------------------------------------------- /src/reader/jsonl_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/src/reader/jsonl_reader.rs -------------------------------------------------------------------------------- /src/writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/src/writer.rs -------------------------------------------------------------------------------- /src/writer/ascii_writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/src/writer/ascii_writer.rs -------------------------------------------------------------------------------- /src/writer/markdown_writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naoty/table/HEAD/src/writer/markdown_writer.rs --------------------------------------------------------------------------------