-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
78 lines (71 loc) · 2.29 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
[workspace]
members = [
"test-harness",
]
resolver = "2"
# See: https://github.com/crate-ci/cargo-release/blob/master/docs/reference.md
[workspace.metadata.release]
# Set the commit message.
pre-release-commit-message = "Release {{crate_name}} version {{version}}"
consolidate-commits = false # One commit per crate.
tag = false # Don't tag commits.
push = false # Don't do `git push`.
publish = false # Don't do `cargo publish`.
[package]
name = "git-prole"
version = "0.5.3"
edition = "2021"
authors = ["Rebecca Turner <rbt@sent.as>"]
description = "A git-worktree(1) manager"
repository = "https://github.com/9999years/git-prole"
license = "MIT"
keywords = ["git"]
categories = ["command-line-utilities"]
[lib]
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
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 }
command-error = { version = "0.6.0", features = [ "tracing", "miette" ] }
common-path = "1.0.0"
derive_more = { version = "1.0.0", features = ["as_ref", "constructor", "deref", "deref_mut", "display", "from", "into"] }
dirs = "5.0.1"
fs-err = "2.11.0"
itertools = "0.13.0"
miette = { version = "7.2.0", default-features = false, features = ["fancy-no-backtrace"] }
owo-colors = { version = "4.0.0", features = ["supports-colors"] }
path-absolutize = "3.1.1"
pathdiff = { version = "0.2.1", features = ["camino"] }
regex = "1.10.6"
rustc-hash = "2.0.0"
serde = { version = "1.0.210", features = ["derive"] }
shell-words = "1.1.0"
tap = "1.0.1"
tempfile = "3.12.0"
toml = "0.8.19"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-human-layer = "0.1.3"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "registry"] }
unindent = "0.2.3"
utf8-command = "1.0.1"
walkdir = "2.5.0"
which = "6.0.3"
winnow = "0.6.20"
xdg = "2.5.2"
[dev-dependencies]
expect-test = "1.5.0"
indoc = "2.0.5"
pretty_assertions = "1.4.0"
test-harness = { path = "test-harness" }
# 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