-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
96 lines (89 loc) · 2.17 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
91
92
93
94
95
96
# Make this a workspace so that path dependencies below share the same lockfile.
[workspace]
[workspace.package]
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/gibfahn/up"
keywords = ["cli", "tool"]
categories = ["command-line-utilities", "config"]
readme = "README.md"
authors = ["Gibson Fahnestock <[email protected]>"]
[workspace.lints.rust]
unsafe_code = "forbid"
# up is the root package in this workspace.
[package]
name = "up"
version = "0.17.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
keywords.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
description = """
up is a tool to help you keep your machine up to date.
"""
documentation = "https://docs.rs/crate/up"
homepage = "https://github.com/gibfahn/up"
exclude = ["tests/"]
[[bin]]
name = "up"
path = "src/main.rs"
[dependencies]
camino = { version = "1.1.9", features = ["serde1"] }
chrono = "0.4.38"
clap = { version = "4.5.20", features = [
"derive",
"env",
"string",
"wrap_help",
] }
clap_complete = "4.5.35"
color-eyre = "0.6.3"
dirs = "5.0.1"
displaydoc = "0.2.5"
duct = "0.13.7"
envy = "0.4.2"
git2 = { version = "0.19.0", features = [
"vendored-openssl",
"vendored-libgit2",
] }
hex = "0.4.3"
itertools = "0.13.0"
indicatif = { version = "0.17.8", features = ["rayon"] }
log = "0.4.22"
plist = "1.7.0"
rayon = "1.10.0"
reqwest = { version = "0.12.8", features = ["blocking", "json"] }
ring = "0.17.8"
schemars = "0.8.21"
semver = "1.0.23"
serde = "1.0.213"
serde_derive = "1.0.213"
serde_json = "1.0.132"
serde_yaml = "0.9.34"
shell-escape = "0.1.5"
shellexpand = "3.1.0"
thiserror = "1.0.65"
toml = "0.8.19"
tracing = "0.1.40"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.2"
uzers = "0.12.1"
walkdir = "2.5.0"
tracing-indicatif = "0.3.6"
clap-markdown = "0.1.4"
clap_mangen = "0.2.24"
pretty_assertions = "1.4.1"
[dev-dependencies]
assert_cmd = "2.0.16"
glob = "0.3.1"
ignore = "0.4.23"
predicates = "3.1.2"
serial_test = "3.1.1"
test-log = { version = "0.2.16", default-features = false, features = [
"trace",
] }
testutils = { path = "./tests/testutils" }