-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1011 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1011 Bytes
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
[package]
name = "git-moves-together"
version = "2.8.3"
edition = "2024"
categories = ["development-tools", "command-line-utilities"]
keywords = ["git", "coupling"]
repository = "https://codeberg.org/PurpleBooth/git-moves-together"
description = "Find files that move at the same time in a git repository to identify coupling"
license = "CC0-1.0"
authors = ["Billie Thompson <billie@billiecodes.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "git-moves-together"
path = "src/main.rs"
[dependencies]
git2 = { version = "0.20.2", features = ["vendored-openssl", "vendored-libgit2"] }
thiserror = "2.0.12"
clap = { version = "4.5.40", features = [
"derive",
"cargo",
"wrap_help",
"env",
"unicode",
] }
comfy-table = "7.1.4"
tokio = { version = "1.45.1", features = ["full"] }
futures = "0.3.31"
miette = { version = "7.6.0", features = ["fancy"] }
time = "0.3.41"
[dev-dependencies]
tempfile = "3.20.0"
rand = "0.9.1"