Boilerplate for core library and CLI binary.

This commit is contained in:
alexiondev
2026-04-27 23:45:02 +00:00
parent 4f4035b391
commit 5bd5839ecf
10 changed files with 78 additions and 0 deletions

13
justfile Normal file
View File

@@ -0,0 +1,13 @@
default:
@just --list --justfile {{justfile()}}
build: build-core build-cli
build-core:
cargo build --manifest-path "core/Cargo.toml" --target-dir "target"
build-cli: build-core
cargo build --manifest-path "cli/Cargo.toml" --target-dir "target"
run:
cargo run --manifest-path "cli/Cargo.toml" --target-dir "target"