added diffing lib

This commit is contained in:
Iaphetes 2025-03-13 07:20:13 +01:00
parent be1ab58bd5
commit bf8b573050
2 changed files with 25 additions and 3 deletions

22
src-tauri/Cargo.lock generated
View file

@ -169,6 +169,7 @@ dependencies = [
"serde",
"serde_json",
"shellexpand",
"similar",
"sqlx",
"tauri",
"tauri-build",
@ -426,6 +427,17 @@ dependencies = [
"alloc-stdlib",
]
[[package]]
name = "bstr"
version = "1.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
dependencies = [
"memchr",
"regex-automata",
"serde",
]
[[package]]
name = "bumpalo"
version = "3.17.0"
@ -4292,6 +4304,16 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
[[package]]
name = "similar"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
dependencies = [
"bstr",
"unicode-segmentation",
]
[[package]]
name = "siphasher"
version = "0.3.11"