streamweave-attractor 0.3.0

Attractor pipeline as a StreamWeave graph
Documentation
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash
set -euo pipefail
exec > >(tee log/build.log) 2>&1 

echo "> build"

echo "> build > cargo build"
RUSTFLAGS='-D warnings' cargo build
echo "> build > cargo build --examples"
RUSTFLAGS='-D warnings' cargo build --examples