diff options
author | Teddy Wing | 2022-03-19 21:07:41 +0100 |
---|---|---|
committer | Teddy Wing | 2022-03-19 21:07:41 +0100 |
commit | 2a0182af66a64756eaa88d64e44a18ee5fb94bce (patch) | |
tree | bd042489a5f81766bf07166736bf357855bf518a /Cargo.toml | |
parent | d5c62cac01103881b8c8f8d629bc2eb0d12723c7 (diff) | |
download | yaqlite-2a0182af66a64756eaa88d64e44a18ee5fb94bce.tar.bz2 |
main: Emit multiline YAML output
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.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ edition = "2021" [dependencies] rusqlite = { version = "0.27.0", features = ["modern_sqlite"] } thiserror = "1.0.30" -yaml-rust = "0.4.5" +yaml-rust = { package = "yaml-rust-davvid", version = "0.5.1" } [dependencies.clap] version = "3.1.6" |