From be0d084b3a557ae560a40ceb16a9ea987c0abc87 Mon Sep 17 00:00:00 2001 From: iGxnon Date: Sun, 21 Jul 2024 00:00:07 +0800 Subject: [PATCH] v0.1.3 Signed-off-by: iGxnon --- CHANGELOG.md | 12 +++++++++++- Cargo.toml | 2 +- src/tests.rs | 4 +++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e78a78a..0b7cbab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,17 @@ ## Unreleased -- Support RFC6298 RttEstimator +--- +## 0.1.3 + +- Preliminary implementing RFC6298 RttEstimator +- Zero copy packets decoding +- Support offline packets lifetime span tracing +- Add experimental `Ping` for clients +- Reduced the overhead when calling `poll_close` + - By introducing a simple time reactor +- Add examples for E2E tracing +- Fixed some API call issues. --- ## 0.1.2 diff --git a/Cargo.toml b/Cargo.toml index dbd298d..6329832 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raknet-rs" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "Apache-2.0" authors = ["iGxnon"] diff --git a/src/tests.rs b/src/tests.rs index 11b219f..80457a6 100644 --- a/src/tests.rs +++ b/src/tests.rs @@ -1,3 +1,5 @@ +#![allow(clippy::use_debug)] + use std::collections::HashMap; use std::iter::repeat; use std::sync::Arc; @@ -93,7 +95,7 @@ impl Drop for TestTraceLogGuard { if list.is_empty() { continue; } - eprintln!("{trace_id:?}",); + eprintln!("{trace_id:?}"); let l = &list[&SpanId::default()]; for (i, root) in l.iter().enumerate() { dfs(&list, &spans_map, *root, 0, i == l.len() - 1);