From 11c130015825a6b19bd228013f31b9bc30be3a86 Mon Sep 17 00:00:00 2001 From: "Patrick M. Howard" Date: Mon, 6 Apr 2020 10:18:44 -0400 Subject: [PATCH 1/2] Add netstack section to newsletter --- content/posts/newsletter-008/index.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/content/posts/newsletter-008/index.md b/content/posts/newsletter-008/index.md index a2891e3e0..3b2941dc0 100644 --- a/content/posts/newsletter-008/index.md +++ b/content/posts/newsletter-008/index.md @@ -291,6 +291,24 @@ _Discussions: [/r/rust](https://www.reddit.com/r/rust_gamedev/comments/foywc6/an [assets_manager]: https://github.com/a1phyr/assets_manager +### [netstack](netstack) v0.3.0 + +netstack is a batteries included networking crate for games. Requiring an +exchange of a secret and connection tokens. At the moment, UDP transport, +connection management, packet signaling, and packet acknowledgement are +features already implemented. Examples for getting started are provided +on the [crates.io page](netstack). + +Version 0.3.0 adds basic monitoring functionality along with traits `ClientMonitor` and +`ServerMonitor`. A work-in-progress prometheus exporter has also been added in this version. + +Issues and contibutions can be made to [Netstack's github repository](netstack-github). +Work in progress documentation is available on [Netstack's docs.rs](netstack-docs). + +[netstack]: https://crates.io/crates/netstack/0.3.0 +[netstack-github]: https://github.com/Vengarioth/netstack +[netstack-docs]: https://docs.rs/netstack/0.3.0/netstack/ + ### [three-d] v0.1 [three-d] is a renderer which targets both desktop (OpenGL) and web From 739d3c894873a67b6d16f34919adcef32d3f40d6 Mon Sep 17 00:00:00 2001 From: Andrey Lesnikov Date: Mon, 6 Apr 2020 17:27:40 +0300 Subject: [PATCH 2/2] Newsletter 8: netstack: Style fixes --- content/posts/newsletter-008/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/posts/newsletter-008/index.md b/content/posts/newsletter-008/index.md index 3b2941dc0..1748ead97 100644 --- a/content/posts/newsletter-008/index.md +++ b/content/posts/newsletter-008/index.md @@ -291,9 +291,9 @@ _Discussions: [/r/rust](https://www.reddit.com/r/rust_gamedev/comments/foywc6/an [assets_manager]: https://github.com/a1phyr/assets_manager -### [netstack](netstack) v0.3.0 +### [netstack] v0.3.0 -netstack is a batteries included networking crate for games. Requiring an +[netstack] is a batteries included networking crate for games. Requiring an exchange of a secret and connection tokens. At the moment, UDP transport, connection management, packet signaling, and packet acknowledgement are features already implemented. Examples for getting started are provided