33da3a4a0c
* `nix flake {info -> metadata}` * Fix error variant for io errors * Enable backtrace support for anyhow * Improve error printing * Write error report file * Format workflow file * Use report file * Set non-zero exit status if a group fails * Do not use `local` * Apply suggestions from review * Move exit outside the loop * Fix multi line output * Fix var substitution * Different work around for multi lines
34 lines
829 B
TOML
34 lines
829 B
TOML
[package]
|
|
name = "flake-info"
|
|
version = "0.3.0"
|
|
authors = ["Yannik Sander <me@ysndr.de>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = "^2.33"
|
|
serde = {version="1.0", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
serde_path_to_error = "0.1.5"
|
|
toml = "0.5"
|
|
anyhow = { version= "1.0", features = ["backtrace"] }
|
|
thiserror = "1.0"
|
|
structopt = "0.3"
|
|
command-run = "0.13"
|
|
env_logger = "0.9"
|
|
log = "0.4"
|
|
tempfile = "3"
|
|
lazy_static = "1.4"
|
|
fancy-regex = "0.6"
|
|
tokio = { version = "*", features = ["full"] }
|
|
reqwest = { version = "0.11", features = ["json", "blocking"] }
|
|
sha2 = "0.9"
|
|
pandoc = "0.8"
|
|
|
|
elasticsearch = {git = "https://github.com/elastic/elasticsearch-rs", features = ["rustls-tls"]}
|
|
|
|
[lib]
|
|
name = "flake_info"
|
|
path = "./src/lib.rs"
|