diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82dd72d7..bfc9d24c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -308,15 +308,17 @@ jobs: - name: publish crates run: | cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }} - echo "=== Publishing boring-sys... ===" + echo "=== Publishing boring-sys2... ===" (cd boring-sys && cargo publish) sleep 10 - echo "=== Publishing boring... ===" + echo "=== Publishing boring2... ===" (cd boring && cargo publish) sleep 10 - echo "=== Publishing tokio-boring... ===" + echo "=== Publishing tokio-boring2... ===" (cd tokio-boring && cargo publish) sleep 10 + echo "=== Publishing compio-boring2... ===" + (cd compio-boring && cargo publish) - name: Upload binaries to GitHub Release uses: softprops/action-gh-release@v2 diff --git a/compio-boring/src/lib.rs b/compio-boring/src/lib.rs index 36db63f8..d5c7671c 100644 --- a/compio-boring/src/lib.rs +++ b/compio-boring/src/lib.rs @@ -6,10 +6,10 @@ //! ecosystem. Client connections initiated from this crate verify hostnames //! automatically and by default. //! -//! `tokio-boring` exports this ability through [`accept`] and [`connect`]. `accept` should +//! `compio-boring2` exports this ability through [`accept`] and [`connect`]. `accept` should //! be used by servers, and `connect` by clients. These augment the functionality provided by the -//! [`boring`] crate, on which this crate is built. Configuration of TLS parameters is still -//! primarily done through the [`boring`] crate. +//! [`boring2`] crate, on which this crate is built. Configuration of TLS parameters is still +//! primarily done through the [`boring2`] crate. #![warn(missing_docs)] #![cfg_attr(docsrs, feature(doc_auto_cfg))] diff --git a/tokio-boring/src/lib.rs b/tokio-boring/src/lib.rs index 374a0bde..8737b406 100644 --- a/tokio-boring/src/lib.rs +++ b/tokio-boring/src/lib.rs @@ -6,10 +6,10 @@ //! ecosystem. Client connections initiated from this crate verify hostnames //! automatically and by default. //! -//! `tokio-boring` exports this ability through [`accept`] and [`connect`]. `accept` should +//! `tokio-boring2` exports this ability through [`accept`] and [`connect`]. `accept` should //! be used by servers, and `connect` by clients. These augment the functionality provided by the -//! [`boring`] crate, on which this crate is built. Configuration of TLS parameters is still -//! primarily done through the [`boring`] crate. +//! [`boring2`] crate, on which this crate is built. Configuration of TLS parameters is still +//! primarily done through the [`boring2`] crate. #![warn(missing_docs)] #![cfg_attr(docsrs, feature(doc_auto_cfg))]