Use specific versions with Mise (#8399)

Mise keeps freezing. One suggestion was to list specific versions and not use "latest" https://github.com/jdx/mise/issues/4302
This commit is contained in:
Nigel Breslaw 2025-05-07 14:10:05 +03:00 committed by GitHub
parent b98fd065c5
commit d30dbeab58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 13 deletions

View file

@ -7,18 +7,18 @@
## C++:
"ubi:EmbarkStudios/cargo-about" = "0.6.6"
"pipx:cmake" = "latest"
"pipx:ninja" = "latest"
"pipx:pipenv" = "latest"
# doxygen = "latest" ## This is not available anywhere
# graphviz = "latest" ## This is not available anywhere
"pipx:cmake" = "4.0.0"
"pipx:ninja" = "1.11.1.4"
"pipx:pipenv" = "2025.0.2"
# doxygen = "1.13.2" ## This is not available anywhere
# graphviz = "12.2.1" ## This is not available anywhere
"aqua:sharkdp/fd" = "latest"
"aqua:sharkdp/fd" = "10.2.0"
"rust" = { version = "stable", profile = "default" }
node = "20"
pnpm = "latest"
taplo = "latest"
"ubi:rustwasm/wasm-pack" = "latest"
pnpm = "10.10.0"
taplo = "0.9.3"
"ubi:rustwasm/wasm-pack" = "0.13.1"
[task_config]
includes = [".mise/tasks.toml", ".mise/tasks"]

View file

@ -8,7 +8,7 @@
["fix:cpp:format"]
description = "Run clang format fix on all C++ files"
run = '''fd '.*\.(h|H|hpp|hxx|h\+\+|c|C|cpp|cxx|c\+\+)$' -0 | xargs -0 clang-format -i'''
tools = { "pipx:clang-format" = "latest" }
tools = { "pipx:clang-format" = "20.1.3" }
["fix:legal:copyright"]
description = "Run the check_license_headers --fix xtask"
@ -17,7 +17,7 @@ run = "cargo xtask check_license_headers --fix-it"
["fix:python:format"]
description = "Run ruff format"
run = "ruff format"
tools = { "ruff" = "latest" }
tools = { "ruff" = "0.11.8" }
["fix:rust:format"]
description = "Run cargo fmt --all"
@ -56,7 +56,7 @@ dir = "editors/vscode"
sources = ["tools/lsp/Cargo.toml", "tools/lsp/**/*.rs", "tools/lsp/ui/**/*.slint"]
outputs = ["tools/lsp/pkg/*"]
run = "pnpm run build:wasm_lsp"
tools = { "npm:wasm-pack" = "latest" }
tools = { "npm:wasm-pack" = "0.13.1" }
depends = ["prepare:pnpm-install"]
["build:interpreter:wasm"]
@ -65,7 +65,7 @@ dir = "tools/slintpad"
sources = ["api/wasm-interpreter/Cargo.toml", "api/wasm-interpreter/src/**/*.rs"]
outputs = ["api/wasm-interpreter/pkg/*"]
run = "pnpm run build:wasm_interpreter"
tools = { "npm:wasm-pack" = "latest" }
tools = { "npm:wasm-pack" = "0.13.1" }
depends = ["prepare:pnpm-install"]
["prepare:pnpm-install"]