From c98885d8bb03fa434ef8d07579748524838057e9 Mon Sep 17 00:00:00 2001 From: Don MacAskill Date: Fri, 27 Dec 2024 11:47:21 -0800 Subject: [PATCH] Use crc64fast-nvme v1.1.0 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5e56b8a..ce03080 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: build build: @if [ ! -d "./build" ]; then git clone https://github.com/awesomized/crc64fast-nvme.git build; fi - @cd build && git checkout add-c-compatible-library + @cd build && git fetch && git checkout 1.1.0 @cd build && cargo build --release .PHONY: validate