pipebuf_rustls 0.23.1

PipeBuf wrapper for Rustls
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# First build with all combinations of features to check for doc
# issues.  Then finally build as docs.rs sees it to visually check the
# annotations on some types.

./run-feature-combinations | while read features; do
    echo "=== Features: $features"
    cargo doc --no-default-features --features "$features" || exit 1
done

echo "=== docs.rs build with feature labels" &&
RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features