-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 744 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 744 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
[package]
name = "mergers"
version = "0.8.2"
edition = "2024"
description = "A visual diff and merge tool for files and directories"
license = "GPL-2.0"
[dependencies]
walkdir = "2.5"
dircmp = "0.2"
gtk4 = { version = "0.11", features = ["v4_14"] }
gio = { version = "0.22", features = ["v2_66"] }
chrono = "0.4"
notify = "8.2"
clap = { version = "4.6", features = ["derive"] }
sourceview5 = { version = "0.11", features = ["gtk_v4_14"] }
serde = { version = "1.0", features = ["derive"] }
toml = "1.0"
ctrlc = { version = "3.5.2", features = ["termination"] }
tempfile = "3.26"
[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
proptest = "1.10"
tempfile = "3.26"
[[bench]]
name = "benchmarks"
harness = false