aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
AgeCommit message (Collapse)Author
2022-03-20main: Print errors to standard error instead of panicking with `unwrap`Teddy Wing
Use `anyhow` to add context to errors and a `main()` wrapper that prints error messages and their context to standard error.
2022-03-19main: Emit multiline YAML outputTeddy Wing
Only works with `|` YAML instead of `>` flowed output. Use a forked `yaml-rust` crate published by https://github.com/davvid/yaml-rust that includes a patch to support multiline output.
2022-03-18select(): Debug the parameterized SQL queryTeddy Wing
Add the `modern_sqlite` feature in order to use the `expanded_sql()` method. This shows us the SQL query with parameters expanded.
2022-03-13main(): Start adding command line argument parsingTeddy Wing
2022-03-13get_column_names(): Remove `unwrap()`sTeddy Wing
Return a `Result` and wrap errors in a `thiserror` struct.
2022-03-07Try reading and parsing a YAML fileTeddy Wing
2022-03-07New Rust 1.59.0 projectTeddy Wing
$ rustc --version rustc 1.59.0 (9d1b2106e 2022-02-23) $ cargo init --bin