Skip to content

Commit a40b0e4

Browse files
committed
Deps: install taplo using nightly
We're getting: ``` error: failed to compile `taplo-cli v0.9.3`, intermediate artifacts can be found at `/tmp/cargo-installcKWfPA`. To reuse those artifacts with a future compilation, set the environment variable `CARGO_TARGET_DIR` to that path. Caused by: failed to parse manifest at `/home/fok/.cargo/registry/src/index.crates.io-6f17d22bba15001f/globset-0.4.18/Cargo.toml` Caused by: feature `edition2024` is required The package requires the Cargo feature called `edition2024`, but that feature is not stabilized in this version of Cargo (1.84.1 (66221abde 2024-11-19)). Consider trying a newer version of Cargo (this may require the nightly release). See https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#edition-2024 for more information about the status of this feature. ``` otherwise.
1 parent 6f20f86 commit a40b0e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ setup-taplo: ## Install taplo TOML formatter
295295
@if taplo --version 2>/dev/null | grep -q ${TAPLO_CLI_VERSION}; then \
296296
echo "taplo ${TAPLO_CLI_VERSION} already installed"; \
297297
else \
298-
cargo install taplo-cli --version ${TAPLO_CLI_VERSION} --force; \
298+
cargo +nightly install taplo-cli --version ${TAPLO_CLI_VERSION} --force; \
299299
fi
300300

301301
.PHONY: setup

0 commit comments

Comments
 (0)