Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
521 changes: 475 additions & 46 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 12 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,14 @@ path = "src/main.rs"

[dependencies]
chrono = "0.4.38"
uucore = "0.6.0"
const_format = "0.2.35"
diff = "0.1.13"
itoa = "1.0.11"
regex = "1.10.4"
same-file = "1.0.6"
unicode-width = "0.2.0"
signals = "0.0.5"

[dev-dependencies]
assert_cmd = "2.0.14"
Expand All @@ -46,7 +49,14 @@ harness = false

[features]
# default = ["feat_bench_not_diff"]
# Turn bench for diffutils cmp off
# instead of limiting to KiB, MiB, etc, one can write kib, mib, Mb or whatever case.
feat_allow_case_insensitive_number_units = []
# Disable bench for diffutils cmp
feat_bench_not_cmp = []
# Turn bench for diffutils diff off
# Disable bench for diffutils diff
feat_bench_not_diff = []
# Enables a check on options defined in NOT_YET_IMPLEMENTED.
# If on the parser will return an error message in these cases.
# This is preferable when running the util as unsupported options
# are pointed out to the user, but can make tests fail.
feat_check_not_yet_implemented = []
Loading
Loading