-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
66 lines (58 loc) · 1.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[[bin]]
name = 'hogan'
path = 'src/main.rs'
doc = false
[package]
name = 'hogan'
version = '0.15.0'
authors = [
'Jonathan Morley <jmorley@cvent.com>',
'Josh Comer <jcomer@cvent.com>',
]
edition = '2021'
[dependencies]
actix-web = '4.3'
anyhow = '1.0'
bincode = '1.3'
compression = '0.1'
dogstatsd = '0.7'
futures = '0.3'
handlebars = '4.3'
itertools = '0.10'
json-patch = '0.3'
lazy_static = '1'
log = '0.4'
lru = '0.9'
parking_lot = '0.12'
riker = '0.4'
riker-patterns = '0.4'
serde_derive = '1.0'
serde_json = '1.0'
shellexpand = '3.0'
stderrlog = '0.5'
structopt = '0.3'
tempfile = '3'
thiserror = '1.0'
url = '2'
walkdir = '2'
zip = '0.6'
[dependencies.rusqlite]
version = '0.28'
features = ['bundled']
[dependencies.git2]
version = '0.16'
features = ['vendored-openssl']
[dependencies.regex]
version = '1.7'
default-features = false
[dependencies.serde]
version = '1.0'
features = ['rc']
[dependencies.uuid]
version = '1.2'
features = ['v4']
[dev-dependencies]
assert_cmd = '2.0'
dir-diff = '0.3'
fs_extra = '1'
predicates = '2.1'