-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
42 lines (34 loc) · 953 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
authors = ["Praveen Perera <praveen@avencera.com>"]
edition = "2021"
description = "A simple CLI for combining json and yaml files"
name = "yamine"
homepage = "https://github.com/avencera/yamine"
repository = "https://github.com/avencera/yamine"
license = "Apache-2.0"
version = "0.4.2"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-{ target }.tar.gz"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# error handling
color-eyre = "0.6"
eyre = "0.6"
# logging
clap = { version = "4.4", features = ["cargo", "derive"] }
pretty_env_logger = "0.5"
log = "0.4"
# file system
ignore = "0.4"
# serde
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
serde_yaml = "0.9"
# terminal
colored = "2.0"
anstyle = "1.0.3"
# utils
indoc = "2.0"
itertools = "0.11"