streamweave 0.10.1

Composable, async, stream-first computation in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
set -euo pipefail
exec > >(tee log/fix.log) 2>&1 

echo "> fix"

echo "> fix > cargo fix"
RUSTFLAGS='-D warnings' cargo fix --allow-dirty --allow-staged --lib --all-features

echo "> fix > cargo clippy --fix"
RUSTFLAGS='-D warnings' cargo clippy --fix --allow-dirty --allow-staged --lib --all-features -- -D warnings