-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
50 lines (44 loc) · 1.06 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]
name = "tmpo"
description = "Command line utility to create new workspaces based on predefined templates"
version = "2.8.1"
authors = ["Thomas Pöhlmann <thomaspoehlmann96@googlemail.com>"]
edition = "2018"
license = "MIT"
[dependencies]
clap = { version = "4.1.6" }
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
serde_yaml = "0.8.17"
dirs = "4.0.0"
log = "0.4.14"
git2 = "=0.13.11"
colored = "2.0.0"
dialoguer = "0.10.1"
tempfile = "3.2.0"
flate2 = "1.0.20"
tar = "0.4.33"
handlebars = "4.0.1"
regex = "1.5.1"
url = "2.2.1"
base64 = "0.21.0"
semver = "1.0.3"
convert_case = "0.6.0"
linked_hash_set = "0.1.4"
chrono = "0.4.13"
fs_extra = "1.3.0"
[dependencies.log4rs]
version = "1.0.0"
[dependencies.reqwest]
version = "0.11.3"
features = ["blocking", "json"]
default-features = false
[dependencies.self_update]
version = "0.35.0"
features = ["archive-tar"]
[target.'cfg(not(windows))'.dependencies]
openssl = { version = "0.10.34", features = ["vendored"] }
[dev-dependencies]
assert_cmd = "2.0.4"
predicates = "2.0.0"
assert_cli = "0.6.3"