[tasks.lint]
run = "cargo clippy --all-targets --all-features"
[tasks.release]
run = "cargo build --release"
[tasks.build]
run = "cargo build"
[tasks.compile]
run = "cargo run"
[tasks.test]
run = "cargo test"
[tasks.check]
run = "cargo check"
[tasks.doc]
run = "cargo doc --no-deps"
[tasks.fmt]
run = "cargo fmt --all -- --check"
[tasks.api]
run = "cd api && cargo run"