rustls 0.5.7

Rustls is a modern TLS library written in Rust.
Documentation
#!/bin/sh

# This script fetches, builds, and runs the BoringSSL
# TLS test tool ('BoGo') against rustls.

set -xe

cp ../src/verify.rs ../src/verify-secure.rs
sed -i -e 's/\(DANGEROUS_DISABLE_VERIFY: bool = \)false/\1true/g' ../src/verify.rs
cargo test --no-run

if [ ! -e bogo/ ] ; then
  ./fetch-and-build
fi

( cd bogo && ./bogo.test -shim-path ../../admin/covbin/bogo_shim \
     -shim-config ../config.json \
     -test.parallel 1 -num-workers 1 \
     -pipe -allow-unimplemented )
mv ../src/verify-secure.rs ../src/verify.rs