-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 1.16 KB
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
[package]
name = "envoke-cli"
version = "2.0.2"
edition = "2024"
repository = "https://github.com/glennib/envoke"
description = "Resolve variables from literals, commands, scripts, and templates - output as env vars, .env files, or custom formats"
license = "MIT OR Apache-2.0"
authors = ["Glenn Bitar <glennbitar@gmail.com>"]
[[bin]]
name = "envoke"
path = "src/main.rs"
[dependencies]
miette = { version = "7", features = ["fancy"] }
chrono = { version = "0.4.43", default-features = false, features = ["clock"] }
clap = { version = "4.5.57", features = ["derive", "env"] }
clap_complete = "4.5"
minijinja = { version = "2.15.1", features = ["urlencode", "json"] }
schemars = "1.2.1"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_yml = "0.0.12"
thiserror = "2.0.18"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
[dev-dependencies]
dotenvy = "0.15"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
too_many_lines = "allow"
doc_markdown = "allow"
[profile.release]
strip = true
lto = "fat"
codegen-units = 1
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"