Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[alias]
# Install development tools
install-just = "install just"
install-dev-tools = "install just cargo-watch"

# Individual CI commands
fmt-check = "fmt --all -- --check"
lint = "clippy --all-targets --all-features -- -D warnings"
test-all = "test --all-features"

# Development helpers
fix-clippy = "clippy --all-targets --all-features --fix --allow-dirty --allow-staged"
fix-fmt = "fmt --all"

# Build commands
build-wasm = "build --package ftl-sdk-rs --target wasm32-wasip1"
Loading