-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
90 lines (85 loc) · 2.46 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "butido"
version = "0.5.0"
authors = [
# Only for the current/active maintainers (sorted alphabetically by the surname)
# All other authors are listed in the "Authors" section of README.md
"Nico Steinle <[email protected]>", # @ammernico
"Michael Weiss <[email protected]>", # @primeos-work
]
edition = "2021"
rust-version = "1.85.0" # MSRV
license = "EPL-2.0"
description = "Linux package tool utilizing Docker, PostgreSQL, 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.6"
ascii_table = { version = "4", features = ["color_codes", "wide_characters"] }
bytesize = "2"
chrono = "0.4"
clap = { version = "4", features = ["cargo"] }
clap_complete = "4"
colored = "3"
config = { version = "0.15", default-features = false, features = [ "toml" ] }
csv = "1"
dialoguer = "0.11"
diesel = { version = "2", features = ["postgres", "chrono", "uuid", "serde_json", "r2d2"] }
diesel_migrations = "2"
filters = "0.4"
futures = "0.3"
getset = "0.1"
git2 = "0.20"
handlebars = { version = "6", features = ["no_logging"] }
human-panic = "2"
humantime = "2"
indicatif = "0.17"
indoc = "2"
itertools = "0.14"
lazy_static = "1"
once_cell = "1"
parse-display = "0.10"
petgraph = "0.7"
pom = "3"
ptree = { version = "0.5", default-features = false }
rand = "0.9"
rayon = "1"
regex = "1"
reqwest = { version = "0.12", features = [ "stream" ] }
resiter = "0.5"
rlimit = "0.10"
rustversion = "1"
semver = "1"
serde = "1"
serde_json = "1"
sha1 = "0.10"
sha2 = "0.10"
shiplift = "0.7"
syntect = "5"
tar = "0.4"
terminal_size = "0.4"
tokio = { version = "1", features = ["macros", "fs", "process", "io-util", "signal", "time"] }
tokio-util = "0.7"
tokio-stream = "0.1"
toml = "0.8"
tracing = "0.1"
tracing-chrome = "0.7"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
typed-builder = "0.20"
unindent = "0.2"
url = { version = "2", features = ["serde"] }
uuid = { version = "1", features = ["serde", "v4"] }
walkdir = "2"
which = "7"
xdg = "2"
[build-dependencies]
anyhow = "1"
git_info = "0.1"
vergen = { version = "8", features = ["build", "cargo", "git", "gitcl"] }