Preserve custom commmand order from config instead of sorting alphabetically (#1182)

This commit is contained in:
Gideon
2025-06-17 05:58:23 +02:00
committed by GitHub
parent 845558c1da
commit 27464b795e
3 changed files with 17 additions and 8 deletions

20
Cargo.lock generated
View File

@@ -1089,6 +1089,12 @@ version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
[[package]]
name = "hashbrown"
version = "0.15.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
[[package]]
name = "heck"
version = "0.5.0"
@@ -1399,12 +1405,13 @@ dependencies = [
[[package]]
name = "indexmap"
version = "2.2.6"
version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
dependencies = [
"equivalent",
"hashbrown 0.14.5",
"hashbrown 0.15.4",
"serde",
]
[[package]]
@@ -2839,7 +2846,7 @@ version = "0.19.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
dependencies = [
"indexmap 2.2.6",
"indexmap 2.9.0",
"serde",
"serde_spanned",
"toml_datetime",
@@ -2852,7 +2859,7 @@ version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
dependencies = [
"indexmap 2.2.6",
"indexmap 2.9.0",
"toml_datetime",
"winnow 0.5.40",
]
@@ -2863,7 +2870,7 @@ version = "0.22.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38"
dependencies = [
"indexmap 2.2.6",
"indexmap 2.9.0",
"serde",
"serde_spanned",
"toml_datetime",
@@ -2885,6 +2892,7 @@ dependencies = [
"futures",
"glob",
"home",
"indexmap 2.9.0",
"jetbrains-toolbox-updater",
"merge",
"nix 0.29.0",