-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
74 lines (68 loc) · 1.74 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
[package]
name = "git-tool"
version = "3.6.0"
authors = [
"Benjamin Pannell <[email protected]>",
"Aideen Fay <[email protected]>",
]
edition = "2021"
[[bin]]
name = "git-tool"
[dependencies]
async-trait = "0.1"
base64 = "0.22"
chrono = { version = "0.4.39" }
clap = { version = "4.5.26", features = ["cargo", "env", "string"] }
directories-next = "2.0"
futures = "0.3"
gtmpl = "0.7"
human-errors = "0.1.5"
http = "0.2"
inventory = "0.3.17"
itertools = "0.14"
keyring = { version = "3.6.1", optional = true }
lazy_static = "1.5"
nix = { version = "0.29.0", features = ["process", "signal"] }
once_cell = "1.20"
rpassword = { version = "7.3", optional = true }
reqwest = { version = "0.11.27", default-features = false, features = [
"rustls-tls",
"json",
"stream",
] }
semver = "1.0"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
serde_yaml = "0.9"
shell-words = "1.1"
tokio = { version = "1.43", features = [
"rt",
"time",
"fs",
"process",
"macros",
"signal",
] }
tracing-batteries = { git = "https://github.com/sierrasoftworks/tracing-batteries-rs.git" }
trust-dns-resolver = { version = "0.23", features = ["tokio-runtime"] }
[dev-dependencies]
mockall = "0.13.1"
tempfile = "3.15"
sentry = { version = "0.36", default-features = false, features = [
"reqwest",
"rustls",
"log",
"test",
] }
[features]
default = ["auth"]
auth = ["keyring", "rpassword"]
# This feature disables tests which access the network, system secret store,
# or portions of the filesystem OTHER than the $TMP directory.
#
# We explicitly permit access to $TMP to permit validation of a range
# of behaviours which are otherwise extremely costly to mock and subject
# to complex failure modes.
pure-tests = []
[profile.release]
debug = true