Add just to the build dependencies

This commit is contained in:
mattmadeofpasta 2023-11-22 12:21:47 +00:00
parent 15d94b2fd6
commit b86622d73b
No known key found for this signature in database
GPG key ID: 020D6BD1B8975037
5 changed files with 9 additions and 0 deletions

View file

@ -16,4 +16,9 @@ ifeq ($(shell env -u RUSTUP_TOOLCHAIN cargo install --list | grep '^cargo-config
$(error cargo-config $(CARGO_CONFIG_VERSION) not found, run "cargo install --force --version $(CARGO_CONFIG_VERSION) cargo-config")
endif
JUST_VERSION=1.16.0
ifeq ($(shell env -u RUSTUP_TOOLCHAIN cargo install --list | grep '^just v$(JUST_VERSION):$$'),)
$(error just $(JUST_VERSION) not found, run "cargo install --force --version $(JUST_VERSION) just")
endif
endif