-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (47 loc) · 1.32 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (47 loc) · 1.32 KB
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
[package]
name = "duodiff"
version = "0.5.1"
edition = "2021"
license = "MIT"
description = "A fast, cross-platform terminal user interface (TUI) directory comparison tool"
repository = "https://github.com/akunzai/duodiff"
keywords = ["tui", "diff", "directory-compare", "cli", "terminal"]
categories = ["command-line-utilities", "development-tools::debugging"]
exclude = [
"/.github",
"/.superpowers",
"/docs",
"/install.sh",
"/install.ps1",
"/AGENTS.md",
"/CLAUDE.md",
"/CONTRIBUTING.md",
"/RELEASING.md",
"/.gitignore",
"/mise.toml",
]
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/duodiff-v{ version }-{ target }{ archive-suffix }"
bin-dir = "duodiff-v{ version }-{ target }/{ bin }{ binary-ext }"
[dependencies]
ratatui = "0.30.2"
crossterm = { version = "0.29.0", features = ["event-stream"] }
tokio = { version = "1.35.0", features = ["full"] }
similar = "3.1.1"
md5 = "0.8.0"
clap = { version = "4.4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
toml = "1.1"
ureq = "3"
flate2 = "1"
tar = "0.4"
zip = { version = "8", default-features = false, features = ["deflate"] }
dirs = "6"
sha2 = "0.11"
anyhow = "1"
serde_json = "1"
unicode-width = "0.2"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
tempfile = "3.8"