Don't run doctests which would break on unix
All checks were successful
Build library & run tests / build (unix) (push) Successful in 28s
Build library & run tests / build (tcp) (push) Successful in 29s
Build library & run tests / docs (push) Successful in 30s

This commit is contained in:
Kodi Craft 2024-06-25 11:48:47 +02:00
parent 8b0f01e606
commit 2cf0b9abe4
Signed by: kodi
GPG Key ID: 69D9EED60B242822

View File

@ -79,7 +79,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
//! To start the server, you simply need to use the generated server struct and
//! pass it your handler.
//!
//! ```rust
//! ```no_run
//! # use eagle::Protocol;
//! # #[derive(Protocol)]
//! # pub enum Example {
@ -112,7 +112,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
//! On the client side, you can simply use the generated client struct to connect
//! to the server and begin sending queries.
//!
//! ```rust
//! ```no_run
//! # use eagle::Protocol;
//! # #[derive(Protocol)]
//! # pub enum Example {