queue_workers 0.5.1

A Redis-backed job queue system for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
set -e

echo "Running cargo fmt check..."
cargo fmt -- --check

echo "Running cargo clippy..."
cargo clippy -- -D warnings

# If we got here, all checks passed
exit 0