-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (59 loc) · 1.82 KB
/
Cargo.toml
File metadata and controls
64 lines (59 loc) · 1.82 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
53
54
55
56
57
58
59
60
61
62
63
64
[workspace]
resolver = "2"
members = [
"diffx-core",
"diffx-cli",
]
[workspace.package]
version = "0.7.1"
edition = "2021"
authors = ["kako-jun"]
license = "MIT"
description = "Blazing fast semantic diff for JSON/YAML/TOML/XML/INI/CSV. Features: array tracking, regex filters, float tolerance, directory compare, UNIX-compatible options"
homepage = "https://github.com/kako-jun/diffx"
repository = "https://github.com/kako-jun/diffx"
documentation = "https://docs.rs/diffx"
readme = "README.md"
keywords = ["diff", "json", "yaml", "toml", "semantic-diff"]
categories = ["command-line-utilities", "development-tools", "text-processing", "parsing", "data-structures"]
exclude = [
".github/",
"target/",
"_old/"
]
rust-version = "1.75"
[workspace.metadata.docs.rs.badges]
maintenance = { status = "actively-developed" }
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace.dependencies]
diffx-core = { version = "0.7.1", path = "diffx-core" }
anyhow = "1.0"
clap = { version = "4.0", features = ["derive", "cargo"] }
colored = "3.0"
csv = "1.3"
configparser = "3.0"
quick-xml = { version = "0.31", features = ["serialize"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
serde_yml = "0.0.12"
toml = "0.8"
walkdir = "2.5"
dirs = "5.0"
regex = "1.0"
similar = "2.7"
tempfile = "3.0"
assert_cmd = "2.0"
predicates = "3.1"
criterion = { version = "0.5", features = ["html_reports"] }
cargo-husky = { version = "1.5", default-features = false, features = ["precommit-hook", "run-cargo-fmt", "run-cargo-clippy"] }
pyo3 = { version = "0.22", features = ["extension-module"] }
napi = { version = "2.2", default-features = false, features = ["napi8", "serde-json"] }
napi-derive = "2.2"
napi-build = "2.2"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"