Initial commit

This commit is contained in:
William Casarin
2022-11-05 22:12:17 -07:00
committed by GitHub
commit 696caa1f1c
19 changed files with 2634 additions and 0 deletions

11
check.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
# This scripts runs various CI-like checks in a convenient way.
set -eux
cargo check --workspace --all-targets
cargo check --workspace --all-features --lib --target wasm32-unknown-unknown
cargo fmt --all -- --check
cargo clippy --workspace --all-targets --all-features -- -D warnings -W clippy::all
cargo test --workspace --all-targets --all-features
cargo test --workspace --doc
trunk build