Compare commits
2 Commits
8b0f01e606
...
v0.3.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
a1e10f93ce
|
|||
|
2cf0b9abe4
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -153,7 +153,7 @@ checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "eagle"
|
name = "eagle"
|
||||||
version = "0.2.4"
|
version = "0.3.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"env_logger",
|
"env_logger",
|
||||||
"log",
|
"log",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "eagle"
|
name = "eagle"
|
||||||
version = "0.2.4"
|
version = "0.3.0"
|
||||||
description = "A simple library for creating RPC protocols."
|
description = "A simple library for creating RPC protocols."
|
||||||
repository = "https://git.colon-three.com/kodi/eagle"
|
repository = "https://git.colon-three.com/kodi/eagle"
|
||||||
authors = ["KodiCraft <kodi@kdcf.me>"]
|
authors = ["KodiCraft <kodi@kdcf.me>"]
|
||||||
|
|||||||
@@ -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
|
//! To start the server, you simply need to use the generated server struct and
|
||||||
//! pass it your handler.
|
//! pass it your handler.
|
||||||
//!
|
//!
|
||||||
//! ```rust
|
//! ```no_run
|
||||||
//! # use eagle::Protocol;
|
//! # use eagle::Protocol;
|
||||||
//! # #[derive(Protocol)]
|
//! # #[derive(Protocol)]
|
||||||
//! # pub enum Example {
|
//! # 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
|
//! On the client side, you can simply use the generated client struct to connect
|
||||||
//! to the server and begin sending queries.
|
//! to the server and begin sending queries.
|
||||||
//!
|
//!
|
||||||
//! ```rust
|
//! ```no_run
|
||||||
//! # use eagle::Protocol;
|
//! # use eagle::Protocol;
|
||||||
//! # #[derive(Protocol)]
|
//! # #[derive(Protocol)]
|
||||||
//! # pub enum Example {
|
//! # pub enum Example {
|
||||||
|
|||||||
Reference in New Issue
Block a user