1#!/bin/sh
2#
3# This hook was set by cargo-husky v1.5.0: https://github.com/rhysd/cargo-husky#readme
4#
5
6set -e
7
8echo '+cargo fmt --all -- --check'
9cargo fmt --all -- --check
10
11echo '+cargo clippy --all-features -- -D warnings'
12cargo clippy --all-features -- -D warnings
13
14echo '+cargo test --all'
15cargo test --all
16
17