-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1006 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (39 loc) · 1006 Bytes
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
[package]
name = "tmpltool"
version = "1.1.1"
edition = "2024"
license = "MIT"
description = "A fast and simple command-line template rendering tool using MiniJinja templates with environment variables"
repository = "https://github.com/bordeux/tmpltool"
readme = "README.md"
keywords = ["template", "minijinja", "cli", "environment", "variables"]
categories = ["command-line-utilities", "template-engine"]
[dependencies]
minijinja = { version = "2", features = ["builtins", "loader"] }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
regex = "1"
md-5 = "0.10"
sha1 = "0.10"
sha2 = "0.10"
uuid = { version = "1.19", features = ["v4"] }
rand = "0.9"
glob = "0.3"
serde_json = "1"
serde_yaml = "0.9"
toml = "0.8"
percent-encoding = "2"
chrono = "0.4"
chrono-tz = "0.10"
hostname = "0.4"
whoami = "1.5"
dirs = "6.0"
if-addrs = "0.13"
base64 = "0.22"
hex = "0.4"
bcrypt = "0.17"
hmac = "0.12"
url = "2"
urlencoding = "2"
[dev-dependencies]
tempfile = "3.24.0"