feat: improve typst handling

This commit is contained in:
2026-08-06 16:45:50 -04:00
parent 09c3222f8d
commit 07e3131f17
19 changed files with 4148 additions and 416 deletions
+3 -3
View File
@@ -18,14 +18,14 @@ pkg-config = "*"
build = "cargo build --release"
debug = "cargo build"
tests = "cargo test"
fmt = "cargo fmt"
format = "cargo fmt"
lint = { cmd = "cargo clippy --all-targets -- -D warnings", depends-on = [
"fmt",
"format",
] }
doc = "cargo doc --no-deps --open"
clean = "cargo clean"
install = "cargo install --path . --locked"
check = { depends-on = ["fmt", "lint", "tests"] }
check = { depends-on = ["format", "lint", "tests"] }
build-lean = "cargo build --release --no-default-features"
[tasks.cb]