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' ] diff --git a/Cargo.toml b/Cargo.toml index 293e6a7..d1395a7 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 = "6", features = ["inline"] } +async-ringbuf = "0.3.1" [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"] 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})