From 515cc588c745d13169a10503c0ef2e5418abfe90 Mon Sep 17 00:00:00 2001 From: Congyu WANG Date: Thu, 11 Apr 2024 11:43:10 +0800 Subject: [PATCH 1/5] fix test CMakeLists --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index f8585c6..bd3b0f4 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -28,7 +28,7 @@ set_property(TARGET CommonCxxTests PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE) # Add all the ADD_TEST for each test set(TestsToRun ${Tests}) -list(REMOVE_ITEM TestsToRun CommonCxxTests.cxx) +list(FILTER TestsToRun EXCLUDE REGEX ".*CommonCxxTests\\.cxx$") foreach (test ${TestsToRun}) get_filename_component(TName ${test} NAME_WE) add_test(NAME ${TName} COMMAND CommonCxxTests ${TName}) From da956ee94537c10358707f9bc2fbc7e1412acfdc Mon Sep 17 00:00:00 2001 From: Congyu WANG Date: Thu, 11 Apr 2024 11:50:17 +0800 Subject: [PATCH 2/5] remove unused clangd item --- .clangd | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.clangd b/.clangd index 0b8b86c..c8f81f7 100644 --- a/.clangd +++ b/.clangd @@ -15,6 +15,5 @@ Diagnostics: 'cppcoreguidelines-pro-type-reinterpret-cast', 'cppcoreguidelines-pro-type-union-access', 'cppcoreguidelines-special-member-functions', - 'bugprone-easily-swappable-parameters', - 'performance-avoid-endl' + 'bugprone-easily-swappable-parameters' ] From b258f6b1db7b276b705da74ebe36a38fb1ea945b Mon Sep 17 00:00:00 2001 From: Congyu WANG Date: Thu, 25 Apr 2024 19:37:47 +0800 Subject: [PATCH 3/5] use async-ringbuf v0.2.0 release --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 293e6a7..73cebf8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,11 +8,11 @@ edition = "2021" crate-type = ["staticlib"] [dependencies] -dashmap = { version = "5.5.3", features = ["inline"] } -async-ringbuf = "0.2.0-rc.5" +dashmap = { version = "5", features = ["inline"] } +async-ringbuf = "0.2.0" [dependencies.tokio] -version = "1.36.0" +version = "1.37" default-features = false features = [ "rt", @@ -26,11 +26,11 @@ features = [ ] [dependencies.tracing] -version = "0.1.40" +version = "0.1" default-features = false features = ["std"] [dependencies.tracing-subscriber] -version = "0.3.18" +version = "0.3" default-features = false features = ["std", "fmt", "env-filter", "registry"] From bb013d58aa5e9b691c3d5a7aff92b564fb1475f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2024 10:29:12 +0800 Subject: [PATCH 4/5] Update async-ringbuf requirement from 0.2.0 to 0.3.1 (#56) --- updated-dependencies: - dependency-name: async-ringbuf dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 73cebf8..adc27f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["staticlib"] [dependencies] dashmap = { version = "5", features = ["inline"] } -async-ringbuf = "0.2.0" +async-ringbuf = "0.3.1" [dependencies.tokio] version = "1.37" From 1d4f0f42b59a941500e9806a89c2a3f41345a0b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2024 10:43:25 +0800 Subject: [PATCH 5/5] Update dashmap requirement from 5 to 6 (#54) Updates the requirements on [dashmap](https://github.com/xacrimon/dashmap) to permit the latest version. - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/compare/v5.0.0...v6.0.1) --- updated-dependencies: - dependency-name: dashmap dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Congyu <52687642+Congyuwang@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index adc27f2..d1395a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" crate-type = ["staticlib"] [dependencies] -dashmap = { version = "5", features = ["inline"] } +dashmap = { version = "6", features = ["inline"] } async-ringbuf = "0.3.1" [dependencies.tokio]