mirror of
https://github.com/uutils/diffutils.git
synced 2026-06-10 15:48:59 -07:00
38 lines
644 B
TOML
38 lines
644 B
TOML
[package]
|
|
name = "diffutils"
|
|
version = "0.4.2"
|
|
edition = "2021"
|
|
description = "A CLI app for generating diff files"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/uutils/diffutils"
|
|
|
|
[lib]
|
|
name = "diffutilslib"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "diffutils"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.38"
|
|
diff = "0.1.13"
|
|
itoa = "1.0.11"
|
|
regex = "1.10.4"
|
|
same-file = "1.0.6"
|
|
unicode-width = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.4.0"
|
|
assert_cmd = "2.0.14"
|
|
predicates = "3.1.0"
|
|
tempfile = "3.10.1"
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
|
|
[profile.release-fast]
|
|
inherits = "release"
|
|
panic = "abort"
|