-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
50 lines (44 loc) · 1.46 KB
/
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
43
44
45
46
47
48
49
50
[package]
authors = ["chevdor <[email protected]>"]
description = "A command line utility written in Rust to render templates from json|toml|yaml && ENV, using the tera templating engine"
edition = "2021"
license = "MIT"
name = "teracli"
readme = "README.md"
version = "0.4.0"
[features]
default = []
fluent = ["fluent-templates"]
env_logger = []
[dependencies]
clap = { version = "4", features = ["derive", "env", "unicode", "cargo"] }
color-eyre = "0.6"
env_logger = "0.11"
fluent-templates = { version = "0.9", optional = true, default-features = false, features = ["tera", "use-ignore"] }
log = "0.4"
serde = "1.0"
serde_json = { version = "1.0", optional = false }
serde_yaml = { version = "0.9", optional = false }
tera = "1.20"
toml = { version = "0.8", optional = false }
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
[[bin]]
name = "tera"
path = "src/main.rs"
[package.metadata.deb]
assets = [["target/release/tera", "usr/bin/", "755"]]
copyright = "2021, Wilfried Kopp aka. Chevdor <[email protected]>"
depends = "$auto"
extended-description = """\
tera-cli offers powerful features related to your environment variables, allowing you to control the output **both** from the context data you pass but also from the ENV variables set on your system."""
license-file = ["LICENSE", "0"]
maintainer = "Wilfried Kopp aka. Chevdor <[email protected]>"
priority = "optional"
section = "utility"
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"