mirror of
https://github.com/tlsnotary/tlsn.git
synced 2026-01-09 14:48:13 -05:00
* fix: miscellaneous fixes on documentation, notary-server. * Apply clippy fix. * Apply clippy fix. * Apply clippy fix. * Apply clippy fix. * Apply clippy fix. * Apply clippy fix. * Apply clippy fix. * Apply clippy fix. * Apply clippy fix. * Correct ci.yml and build script. * Apply clippy fix. * Apply fmt. * Correct clippy fix for tls-mpc. * Correct clippy fix for tls-client. * Correct clippy fix for tls-client. * Update ci and local build. * Revert "Merge branch 'fix/misc-fixes' into fix/gh-clippy-action" This reverts commit74bdb4a6f8, reversing changes made toe361a86e6a. * Apply clippy fix. * Correct spacing and extra changes. * Apply fmt. * Change cargo hack install logic. * Revert clippy change client buffer len. * Revert clippy ignore. * remove cargo hack, relax clippy lints * remove unused features and dead tests * appease clippy again * remove dead features --------- Co-authored-by: sinui0 <65924192+sinui0@users.noreply.github.com>
12 lines
328 B
Bash
Executable File
12 lines
328 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for package in components/tls components/cipher components/universal-hash components/aead components/key-exchange components/prf tlsn notary; do
|
|
pushd $package
|
|
# cargo update
|
|
cargo clean
|
|
cargo clippy --all-features -- -D warnings || exit
|
|
cargo build || exit
|
|
cargo test || exit
|
|
popd
|
|
done
|