-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (51 loc) · 1.81 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
[package]
name = "git-gr"
version = "1.4.3"
edition = "2021"
authors = ["Rebecca Turner <rbt@sent.as>"]
description = "A Gerrit CLI"
repository = "https://github.com/9999years/git-gr"
license = "MIT"
keywords = ["git", "gerrit"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cached = { version = "0.49.2", features = ["disk_store"], default-features = false }
calm_io = "0.1.1"
camino = "1.1.6"
clap = { version = "4.5.4", features = ["derive", "wrap_help", "env"] }
clap_complete = "4.5.1"
clap_mangen = { version = "0.2.20", optional = true }
comfy-table = "7.1.0"
command-error = { version = "0.4.0", features = [ "tracing" ] }
derive_more = "0.99.17"
fs-err = "2.11.0"
itertools = "0.12.1"
miette = { version = "7.2.0", default-features = false, features = ["fancy-no-backtrace"] }
owo-colors = { version = "4.0.0", features = ["supports-colors"] }
parking_lot = "0.12.1"
regex = "1.10.4"
reqwest = { version = "0.12.2", features = ["blocking", "native-tls-vendored"] }
secrecy = "0.8.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
serde_with = { version = "3.7.0", features = ["time_0_3"] }
shell-words = "1.1.0"
tap = "1.0.1"
time = { version = "0.3.36", features = ["local-offset", "formatting", "macros"] }
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-human-layer = "0.1.3"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "registry"] }
utf8-command = "1.0.1"
webbrowser = "0.8.13"
[dev-dependencies]
indoc = "2.0.5"
pretty_assertions = "1.4.0"
# See: https://github.com/crate-ci/cargo-release/blob/master/docs/reference.md
[package.metadata.release]
# Don't tag commits
tag = false
# Don't do `git push`
push = false
# Don't do `cargo publish`
publish = false