1
Fork 0
mirror of https://github.com/RGBCube/dix synced 2025-07-30 21:27:45 +00:00

feat: diff printing

This commit is contained in:
RGBCube 2025-05-09 15:32:21 +03:00 committed by bloxx12
parent 47bd2d9657
commit 07dd524d30
6 changed files with 158 additions and 236 deletions

25
Cargo.lock generated
View file

@ -131,7 +131,7 @@ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [
"bitflags 1.3.2",
"textwrap",
"unicode-width",
"unicode-width 0.1.14",
]
[[package]]
@ -210,7 +210,7 @@ dependencies = [
"clap 2.34.0",
"criterion-plot",
"csv",
"itertools",
"itertools 0.10.5",
"lazy_static",
"num-traits",
"oorandom",
@ -232,7 +232,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2673cc8207403546f45f5fd319a974b1e6983ad1a3ee7e6041650013be041876"
dependencies = [
"cast",
"itertools",
"itertools 0.10.5",
]
[[package]]
@ -320,6 +320,7 @@ dependencies = [
"derive_more",
"diff",
"env_logger",
"itertools 0.14.0",
"libc",
"log",
"ref-cast",
@ -327,6 +328,7 @@ dependencies = [
"rusqlite",
"rustc-hash",
"thiserror",
"unicode-width 0.2.0",
"yansi",
]
@ -448,6 +450,15 @@ dependencies = [
"either",
]
[[package]]
name = "itertools"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.15"
@ -798,7 +809,7 @@ version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
"unicode-width 0.1.14",
]
[[package]]
@ -849,6 +860,12 @@ version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
[[package]]
name = "unicode-width"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
[[package]]
name = "unicode-xid"
version = "0.2.6"