summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: eee07e035b9c9e46b496c89b95562576b7b889e0 (plain)
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
[package]
name = "butido"
version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
log         = "0.3"
tracing     = "0.1"
toml        = "0.5"
serde       = "1"
serde_json  = "1"
config      = "0.9"
anyhow      = "1"
getset      = "0.1"
walkdir     = "2"
resiter     = "0.4"
itertools   = "0.9"
clap-v3     = "3.0.0-beta.1"
indicatif   = "0.15"
env_logger  = "0.7"
regex       = "1"
lazy_static = "1.4"
uuid        = { version = "0.6", features = ["serde", "v4"] }
pom         = "3"
futures     = "0.3"
handlebars  = "3"
filters     = "0.4.0"
indoc       = "1"
typed-builder = "0.7"
tar         = "0.4"
diesel      = { version = "1.4", features = ["postgres", "chrono", "uuid", "serde_json"] }
which       = "4"
ascii_table = "3"
terminal_size = "0.1"
atty        = "0.2"
csv         = "1.1"
chrono      = "0.4"
git2	    = "0.13"
result-inspect = "0.1"
sha1        = { version = "0.6", features = ["std"] }
sha2        = "0.9"

url      = { version = "2", features = ["serde"] }
tokio    = { version = "0.2", features = ["full"] }
shiplift = { git = "https://github.com/softprops/shiplift", branch = "master" }


[dev-dependencies]
indoc = "1"