-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 848 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 848 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 = "json-diff"
version = "0.2.2"
edition = "2021"
description = "High Performance JSON diff tool for big files >500MB. Heavy duty easy conflict resolution for my wife. But yea you can also use the tool."
authors = ["Steven J. Selcuk <steven@tabbythecat.com>"]
license = "MIT"
repository = "https://github.com/stevenselcuk/json-diff"
keywords = ["json", "diff", "tui", "cli"]
[profile.release]
strip = true
opt-level = 3
lto = true
codegen-units = 1
[dependencies]
crossterm = "0.27"
ratatui = "0.29"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
similar = { version = "2.4", features = ["inline"] }
imara-diff = "0.1.7"
clap = { version = "4.4", features = ["derive"] }
anyhow = "1.0"
tokio = { version = "1", features = ["full"] }
throbber-widgets-tui = "0.3"
memmap2 = "0.9"
rayon = "1.8"