-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 826 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 826 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
[package]
name = "pratdiff"
description = "A colorfull diff tool based on the patience diff algorithm"
repository = "https://github.com/fowles/pratdiff"
version = "4.0.0"
edition = "2024"
license = "Apache-2.0"
keywords = ["diff", "patience"]
categories = ["command-line-utilities", "development-tools", "filesystem"]
exclude = [
"src/testdata",
"docs",
]
[dependencies]
anstream = "1.0.0"
cfg-if = "1.0.4"
clap = { version = "4.6.0", features = ["derive", "help", "usage", "suggestions", "color"] }
clap_complete = "4.6.0"
clap_complete_command = "0.6.1"
common-path = "1.0.0"
itertools = "0.14.0"
owo-colors = "4.3.0"
unicode-segmentation = "1.13.2"
regex = "1.12.3"
walkdir = "2.5.0"
[dev-dependencies]
tempfile = "3.27.0"
[build-dependencies]
vergen = { version = "9", features = ["build"] }
vergen-gitcl = "9"