Merge pull request #243174 from figsoda/difftastic

difftastic: 0.47.0 -> 0.48.0

authored by Nick Cao and committed by GitHub bbf574c0 7474f10c

+36 -4
+34 -2
pkgs/tools/text/difftastic/Cargo.lock
··· 3 3 version = 3 4 4 5 5 [[package]] 6 + name = "ahash" 7 + version = "0.7.6" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 10 + dependencies = [ 11 + "getrandom", 12 + "once_cell", 13 + "version_check", 14 + ] 15 + 16 + [[package]] 6 17 name = "aho-corasick" 7 18 version = "0.7.20" 8 19 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 223 234 224 235 [[package]] 225 236 name = "difftastic" 226 - version = "0.47.0" 237 + version = "0.48.0" 227 238 dependencies = [ 228 239 "assert_cmd", 229 240 "bumpalo", ··· 232 243 "const_format", 233 244 "crossterm", 234 245 "glob", 246 + "hashbrown 0.12.3", 235 247 "itertools", 236 248 "lazy_static", 237 249 "libc", ··· 304 316 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 305 317 306 318 [[package]] 319 + name = "getrandom" 320 + version = "0.2.9" 321 + source = "registry+https://github.com/rust-lang/crates.io-index" 322 + checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 323 + dependencies = [ 324 + "cfg-if", 325 + "libc", 326 + "wasi", 327 + ] 328 + 329 + [[package]] 307 330 name = "glob" 308 331 version = "0.3.1" 309 332 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 314 337 version = "0.11.2" 315 338 source = "registry+https://github.com/rust-lang/crates.io-index" 316 339 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 340 + 341 + [[package]] 342 + name = "hashbrown" 343 + version = "0.12.3" 344 + source = "registry+https://github.com/rust-lang/crates.io-index" 345 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 346 + dependencies = [ 347 + "ahash", 348 + ] 317 349 318 350 [[package]] 319 351 name = "heck" ··· 346 378 checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" 347 379 dependencies = [ 348 380 "autocfg", 349 - "hashbrown", 381 + "hashbrown 0.11.2", 350 382 ] 351 383 352 384 [[package]]
+2 -2
pkgs/tools/text/difftastic/default.nix
··· 16 16 17 17 rustPlatform.buildRustPackage rec { 18 18 pname = "difftastic"; 19 - version = "0.47.0"; 19 + version = "0.48.0"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "wilfred"; 23 23 repo = pname; 24 24 rev = version; 25 - sha256 = "sha256-P54ck7gkDgz6G8/3N1fxvx2R7cMUaDKnUtLgPzoUrtI="; 25 + hash = "sha256-kCCORQKqt9rDydxvddD30RMQ1eS73rgvJzCCx93lRuI="; 26 26 }; 27 27 28 28 cargoLock = {