fireblocks-config 0.1.12

TOML configuration for fireblocks SDK
Documentation
#!/bin/bash

set -e

echo "Running pre-commit checks..."

# Run cargo fmt with nightly
echo "🎨 Running cargo fmt..."
if ! cargo +nightly fmt --all -- --check; then
    echo "❌ Code formatting issues found. Run 'cargo +nightly fmt --all' to fix them."
    exit 1
fi

# Run clippy
echo "📎 Running cargo clippy..."
if ! cargo clippy --all-targets --all-features -- -D warnings; then
    echo "❌ Clippy found issues. Please fix them before committing."
    exit 1
fi

echo "✅ All pre-commit checks passed!"