rustorm 0.11.0

A complete rewrite of rustorm
Documentation
1
2
3
4
5
6
7
8
9
#!/bin/bash
set -v

if . ./bootstrap-test.sh ; then
    cargo test --features "with-postgres with-sqlite"
    cargo test --features "with-postgres"
    cargo test --features "with-sqlite"
    cargo test --all-features
fi