# This command builds the project, including all targets, and generates the documentation.
build:checkcargo build --all-targetscargo doc# This command checks the licenses of all dependencies, formats the code, and runs the Clippy linter.
check:cargo deny --all-features check licensescargo fmt --all -- --checkcargo clippy --all --all-targets# This command runs the tests with backtrace enabled.
test:checkRUST_BACKTRACE=1cargo test