Desktop file parsing improvements

This commit is contained in:
Nicola Guerrera
2023-02-28 12:17:15 +01:00
committed by Nova
parent a6994d5963
commit e88b16c535
4 changed files with 36 additions and 7 deletions

12
Cargo.lock generated
View File

@@ -40,6 +40,15 @@ dependencies = [
"version_check",
]
[[package]]
name = "aho-corasick"
version = "0.7.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
dependencies = [
"memchr",
]
[[package]]
name = "aliasable"
version = "0.1.3"
@@ -1537,6 +1546,7 @@ dependencies = [
"manifest-dir-macros",
"mint",
"nix 0.26.1",
"regex",
"resvg",
"rustc-hash",
"stardust-xr-fusion",
@@ -1679,6 +1689,8 @@ version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]