summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 1955c61a3ab127ad1b866a34a5af436d04fe5715 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[package]
name = "butido"
version = "0.3.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>",
           "Matthias Beyer <matthias.beyer@atos.net>",
           "Christoph Prokop <christoph.prokop@atos.net>",
          ]
edition = "2018"
license = "EPL-2.0"

description = "Linux package tool utilizing docker, postgres and toml"
homepage    = "https://github.com/science-computing/butido"
repository  = "https://github.com/science-computing/butido"
readme      = "README.md"
keywords    = ["docker", "postgres", "linux", "packaging", "packages"]
categories  = ["development-tools"]

[badges]
maintenance = { status = "passively-maintained" }

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

[dependencies]
anyhow         = "1"
aquamarine     = "0.1"
ascii_table    = ">= 3.0.2"
atty           = "0.2"
bytesize       = "1"
chrono         = "0.4"
clap           = "=3.0.0-beta.2"
clap_generate  = "=3.0.0-beta.2"
colored        = "2"
config         = { version = "0.11", default-features = false, features = [ "toml" ] }
csv            = "1.1"
daggy          = { version = "0.7", features = [ "serde" ] }
dialoguer      = "0.8"
diesel         = { version = ">=1.4.6", features = ["postgres", "chrono", "uuid", "serde_json"] }
diesel_migrations = ">=1.4"
env_logger     = "0.9"
filters        = "0.4.0"
futures        = "0.3"
getset         = "0.1"
git2           = "0.13"
handlebars     = { version = ">=4.0.1", features = ["no_logging"] }
human-panic    = "1"
humantime      = "2.1"
indicatif      = ">= 0.16.1"
indoc          = "1"
itertools      = "0.10"
lazy_static    = "1.4"
log            = "0.4"
parse-display  = "0.5"
pom            = "3"
ptree          = "0.3"
rayon          = "1.5"
regex          = "1"
reqwest        = { version = "0.11", features = [ "stream" ] }
resiter        = "0.4"
result-inspect = "0.2"
rlimit         = "0.6"
semver		   = { version = "1.0", features = [ "serde" ] }
serde          = "1"
serde_json     = "1"
sha-1          = "0.9"
sha2           = "0.9"
shiplift       = "0.7"
syntect        = "4.4"
tar            = "0.4.16"
terminal_size  = "0.1"
tokio          = { version = "1.0", features = ["macros", "fs", "process", "io-util", "time"] }
tokio-stream   = "0.1"
typed-builder  = "0.9"
unindent       = "0.1"
url            = { version = "2", features = ["serde"] }
uuid           = { version = "0.6", features = ["serde", "v4"] }
walkdir        = "2"
which          = "4"
xdg            = "2"

# Hard-code rand to 0.4.4
#
# Reason for this is this dependency chain:
# diesel -> uuid (0.6) -> rand (0.4)
# but rand 0.4.5 depends on fuchsia-cprng which has an unclear license
# rand 0.4.4 is yanked, rand 0.4.3 does not contain this dependency.
#
# We do not explicitely need this dependency, we just want to force cargo not to
# link against rand 0.4.5 because of this licensing issue.
#
# The proper solution for this would be to update "uuid" in diesel or
# to update "rand" in uuid 0.6.
#
# Upstream issue: https://github.com/rust-random/rand/issues/1071
rand = "=0.4.3"

# See https://github.com/bitvecto-rs/bitvec/issues/105#issuecomment-778570981
funty = "=1.1.0"

# Pin, because dialoguer pulls it in, but 1.4.x and newer has MSRV 1.51.0. With
# the pin here, we enforce the build to not use 1.4.0 or newer.
zeroize = ">=1.3.0, <1.4.0"

[dev-dependencies]
toml = "0.5"