-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (40 loc) · 1.04 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
[package]
name = "rendr"
version = "1.1.0"
authors = ["Brian Stewart <brian.stewart@jamf.com>", "Tomasz Kurcz <tomasz.kurcz@jamf.com>"]
description = "A project scaffolding tool"
categories = ["command-line-utilities", "development-tools"]
keywords = ["cli", "templating", "project", "development"]
homepage = "https://jamf.github.io/rendr/"
repository = "https://github.com/jamf/rendr"
readme = "README.md"
license = "MIT"
edition = "2018"
build = "build.rs"
autobins = false
[[bin]]
name = "rendr"
path = "src/bin/main.rs"
[dependencies]
clap = { version = "2.33", features = ["yaml"] }
git2 = "0.13"
mustache = "0.9"
tempdir = "0.3"
openssl = { version = "0.10", features = ["vendored"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
text_io = "0.1.8"
walkdir = "2"
glob = "0.3.0"
log = { version = "0.4", features = ["std", "serde"] }
env_logger = "0.7.1"
pathdiff = "0.2.0"
notify = "4.0.15"
rpassword = "5.0.0"
pest = "2.1"
pest_derive = "2.1"
regex = "1.3"
thiserror = "1.0"
anyhow = "1.0"
[dev-dependencies]
cargo-release = "0.13.0"