From 4c7008ce262c40f2dfee768f42f1b3758528edbc Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Thu, 27 Mar 2025 07:39:55 +0800 Subject: [PATCH] feat: add justfile --- justfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 8bd01a8..1608da8 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,10 @@ _: @just --list +# publish +publish: + cargo publish --registry crates-io + check: cargo check @@ -13,5 +17,3 @@ build: build-linux-musl-with-zig: cargo zigbuild --release --target x86_64-unknown-linux-musl --no-default-features -build-linux-musl: - cargo build --release --target=x86_64-unknown-linux-musl --no-default-features