2 Commits

Author SHA1 Message Date
a1e10f93ce bump
Some checks failed
Build library & run tests / build (unix) (push) Successful in 57s
Build library & run tests / build (tcp) (push) Successful in 54s
Publish library / publish (push) Failing after 21s
Build library & run tests / docs (push) Successful in 22s
2024-06-25 18:19:35 +02:00
2cf0b9abe4 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
2024-06-25 11:48:47 +02:00
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -153,7 +153,7 @@ checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
[[package]]
name = "eagle"
version = "0.2.4"
version = "0.3.0"
dependencies = [
"env_logger",
"log",

View File

@@ -1,6 +1,6 @@
[package]
name = "eagle"
version = "0.2.4"
version = "0.3.0"
description = "A simple library for creating RPC protocols."
repository = "https://git.colon-three.com/kodi/eagle"
authors = ["KodiCraft <kodi@kdcf.me>"]

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 {