2024-01-22 22:01:07 +01:00
|
|
|
[package]
|
|
|
|
|
name = "diffutils"
|
2026-01-01 18:40:17 +01:00
|
|
|
version = "0.5.0"
|
2024-01-24 09:30:11 +01:00
|
|
|
edition = "2021"
|
2024-01-22 22:01:07 +01:00
|
|
|
description = "A CLI app for generating diff files"
|
|
|
|
|
license = "MIT OR Apache-2.0"
|
2024-01-22 22:33:29 +01:00
|
|
|
repository = "https://github.com/uutils/diffutils"
|
2024-01-22 22:01:07 +01:00
|
|
|
|
2024-01-22 22:32:11 +01:00
|
|
|
[lib]
|
2024-01-24 09:30:11 +01:00
|
|
|
name = "diffutilslib"
|
2024-01-22 22:32:11 +01:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
2024-01-22 22:01:07 +01:00
|
|
|
[[bin]]
|
|
|
|
|
name = "diffutils"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-16 16:20:52 +00:00
|
|
|
chrono = "0.4.38"
|
2024-04-16 19:35:01 +00:00
|
|
|
diff = "0.1.13"
|
2024-09-24 22:15:12 -03:00
|
|
|
itoa = "1.0.11"
|
2024-04-16 19:54:53 +00:00
|
|
|
regex = "1.10.4"
|
2024-02-23 23:45:38 +01:00
|
|
|
same-file = "1.0.6"
|
2024-09-20 05:14:22 +00:00
|
|
|
unicode-width = "0.2.0"
|
2024-01-23 12:36:57 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-22 17:15:03 +01:00
|
|
|
assert_cmd = "2.0.14"
|
2026-03-07 14:55:10 +01:00
|
|
|
divan = { version = "4.3.0", package = "codspeed-divan-compat" }
|
|
|
|
|
pretty_assertions = "1.4.0"
|
2024-02-22 17:15:03 +01:00
|
|
|
predicates = "3.1.0"
|
2026-03-07 14:55:10 +01:00
|
|
|
rand = "0.10.0"
|
|
|
|
|
tempfile = "3.26.0"
|
2024-04-04 00:29:50 +02:00
|
|
|
|
2025-10-29 23:13:16 +09:00
|
|
|
[profile.release]
|
2024-04-04 00:29:50 +02:00
|
|
|
lto = "thin"
|
2025-10-29 23:13:16 +09:00
|
|
|
codegen-units = 1
|
|
|
|
|
panic = "abort"
|
2026-01-01 19:53:45 +01:00
|
|
|
|
2026-03-08 03:02:50 +09:00
|
|
|
# alias profile for 'dist'
|
2026-01-01 19:53:45 +01:00
|
|
|
[profile.dist]
|
|
|
|
|
inherits = "release"
|
2026-03-07 14:55:10 +01:00
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "bench_diffutils"
|
|
|
|
|
path = "benches/bench-diffutils.rs"
|
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
# default = ["feat_bench_not_diff"]
|
|
|
|
|
# Turn bench for diffutils cmp off
|
|
|
|
|
feat_bench_not_cmp = []
|
|
|
|
|
# Turn bench for diffutils diff off
|
|
|
|
|
feat_bench_not_diff = []
|