From 190f63c2fa01c719fda676f4b27f8d6288b57e0c Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Tue, 17 Dec 2024 20:15:16 -0500 Subject: [PATCH] Bump version --- CHANGELOG.md | 9 ++++++ Cargo.lock | 14 ++++---- cargo-dylint/Cargo.toml | 8 ++--- driver/Cargo.lock | 4 +-- driver/Cargo.toml | 4 +-- dylint-link/Cargo.toml | 8 ++--- dylint/Cargo.toml | 8 ++--- examples/Cargo.toml | 4 +-- .../derive_opportunity/Cargo.lock | 10 +++--- .../derive_opportunity/Cargo.toml | 2 +- .../missing_doc_comment_openai/Cargo.lock | 10 +++--- .../missing_doc_comment_openai/Cargo.toml | 2 +- examples/general/Cargo.lock | 26 +++++++-------- examples/general/Cargo.toml | 2 +- examples/general/abs_home_path/Cargo.toml | 2 +- .../await_holding_span_guard/Cargo.toml | 2 +- examples/general/basic_dead_store/Cargo.toml | 2 +- examples/general/crate_wide_allow/Cargo.toml | 2 +- .../crate_wide_allow/ui_manifest/Cargo.lock | 2 +- .../crate_wide_allow/ui_manifest/Cargo.toml | 2 +- .../incorrect_matches_operation/Cargo.toml | 2 +- .../Cargo.toml | 2 +- .../non_thread_safe_call_in_test/Cargo.toml | 2 +- .../wrong_serialize_struct_arg/Cargo.toml | 2 +- examples/restriction/Cargo.lock | 32 +++++++++---------- .../assert_eq_arg_misordering/Cargo.toml | 2 +- .../restriction/collapsible_unwrap/Cargo.toml | 2 +- .../restriction/const_path_join/Cargo.toml | 2 +- examples/restriction/env_literal/Cargo.toml | 2 +- .../inconsistent_qualification/Cargo.toml | 2 +- .../misleading_variable_name/Cargo.toml | 2 +- .../restriction/overscoped_allow/Cargo.toml | 2 +- .../question_mark_in_expression/Cargo.toml | 2 +- .../Cargo.toml | 2 +- .../register_lints_warn/Cargo.toml | 2 +- .../restriction/suboptimal_pattern/Cargo.toml | 2 +- examples/restriction/try_io_result/Cargo.toml | 2 +- examples/supplementary/Cargo.lock | 26 +++++++-------- examples/supplementary/Cargo.toml | 2 +- .../supplementary/commented_code/Cargo.toml | 2 +- .../escaping_doc_link/Cargo.toml | 2 +- .../inconsistent_struct_pattern/Cargo.toml | 2 +- .../supplementary/local_ref_cell/Cargo.toml | 2 +- .../redundant_reference/Cargo.toml | 2 +- .../supplementary/unnamed_constant/Cargo.toml | 2 +- .../unnecessary_borrow_mut/Cargo.toml | 2 +- .../Cargo.toml | 2 +- examples/testing/clippy/Cargo.lock | 10 +++--- examples/testing/clippy/Cargo.toml | 2 +- examples/testing/marker/Cargo.toml | 2 +- examples/testing/straggler/Cargo.lock | 10 +++--- examples/testing/straggler/Cargo.toml | 2 +- expensive/Cargo.toml | 4 +-- internal/Cargo.toml | 2 +- internal/template/Cargo.toml~ | 4 +-- utils/linting/Cargo.lock | 4 +-- utils/linting/Cargo.toml | 4 +-- utils/testing/Cargo.toml | 6 ++-- 58 files changed, 145 insertions(+), 136 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49a17ec8a..1abd2ed2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 3.3.0 + +- Add EuroRust 2024 slides to README.md ([#1370](https://github.com/trailofbits/dylint/pull/1370)) +- Upgrade `cargo-util-schemas` to version 0.7 ([#1394](https://github.com/trailofbits/dylint/pull/1394) and [#1429](https://github.com/trailofbits/dylint/pull/1429)) +- Upgrade `cargo_metadata` to version 0.19 ([8a7bc95](https://github.com/trailofbits/dylint/commit/8a7bc9575875c50da2acae390be0f5a611103a38)) +- Bump `dylint`'s MSRV to 1.78 ([c4c27d1](https://github.com/trailofbits/dylint/commit/c4c27d1e9969e9f1c0a097223fa99fd2a30c0a6d)) +- Upgrade `thiserror` to version 2 ([7398557](https://github.com/trailofbits/dylint/commit/73985574c95ba2c512df4c1b25ebe1aab0a05e92)) +- Remove mention of `rustc_attr` from Dylint library template, as the crate was [recently renamed](https://github.com/rust-lang/rust/pull/134381) ([#1446](https://github.com/trailofbits/dylint/pull/1446)) + ## 3.2.1 - Enable drivers to be installed concurrently. Previously, an attempt to install a driver would fail if the existing driver was running. ([4438f40](https://github.com/trailofbits/dylint/commit/4438f402591d05e369636f54e18b4bab232702b5) and [231974a](https://github.com/trailofbits/dylint/commit/231974a7b94d2c22e85227998a6bc8fd94c5cd0f)) diff --git a/Cargo.lock b/Cargo.lock index 0bd752cc0..a4e885721 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -375,7 +375,7 @@ dependencies = [ [[package]] name = "cargo-dylint" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "assert_cmd", @@ -891,7 +891,7 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" [[package]] name = "dylint" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -926,7 +926,7 @@ dependencies = [ [[package]] name = "dylint-link" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "assert_cmd", @@ -941,7 +941,7 @@ dependencies = [ [[package]] name = "dylint_examples" -version = "3.2.1" +version = "3.3.0" dependencies = [ "cargo-util", "cargo_metadata", @@ -952,7 +952,7 @@ dependencies = [ [[package]] name = "dylint_internal" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -979,7 +979,7 @@ dependencies = [ [[package]] name = "dylint_testing" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "cargo_metadata", @@ -1109,7 +1109,7 @@ dependencies = [ [[package]] name = "expensive" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "dylint_internal", diff --git a/cargo-dylint/Cargo.toml b/cargo-dylint/Cargo.toml index 47a06f71a..448d06af8 100644 --- a/cargo-dylint/Cargo.toml +++ b/cargo-dylint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-dylint" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A tool for running Rust lints from dynamic libraries" edition = "2021" @@ -16,10 +16,10 @@ anyhow = { version = "1.0", features = ["backtrace"] } clap = { version = "4.5", features = ["cargo", "derive", "wrap_help"] } env_logger = "0.11" -dylint = { version = "=3.2.1", path = "../dylint", features = [ +dylint = { version = "=3.3.0", path = "../dylint", features = [ "package_options", ] } -dylint_internal = { version = "=3.2.1", path = "../internal" } +dylint_internal = { version = "=3.3.0", path = "../internal" } [dev-dependencies] assert_cmd = "2.0" @@ -37,7 +37,7 @@ similar-asserts = "1.6" tempfile = "3.14" walkdir = "2.5" -dylint_internal = { version = "=3.2.1", path = "../internal", features = [ +dylint_internal = { version = "=3.3.0", path = "../internal", features = [ "examples", "testing", ] } diff --git a/driver/Cargo.lock b/driver/Cargo.lock index 223b807b6..ac96f6d01 100644 --- a/driver/Cargo.lock +++ b/driver/Cargo.lock @@ -25,7 +25,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "dylint_driver" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "dylint_internal", @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "dylint_internal" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "log", diff --git a/driver/Cargo.toml b/driver/Cargo.toml index d98ca3c25..affa700df 100644 --- a/driver/Cargo.toml +++ b/driver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint_driver" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "Dylint driver library" edition = "2021" @@ -15,7 +15,7 @@ log = "0.4" rustversion = "1.0" serde_json = "1.0" -dylint_internal = { version = "=3.2.1", path = "../internal", features = [ +dylint_internal = { version = "=3.3.0", path = "../internal", features = [ "rustup", ] } diff --git a/dylint-link/Cargo.toml b/dylint-link/Cargo.toml index 921a58522..5b588ece9 100644 --- a/dylint-link/Cargo.toml +++ b/dylint-link/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint-link" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A wrapper around Rust's default linker to help create Dyling libraries" edition = "2021" @@ -13,19 +13,19 @@ env_logger = "0.11" if_chain = "1.0" toml_edit = "0.22" -dylint_internal = { version = "=3.2.1", path = "../internal", features = [ +dylint_internal = { version = "=3.3.0", path = "../internal", features = [ "cargo", ] } [build-dependencies] -dylint_internal = { version = "=3.2.1", path = "../internal" } +dylint_internal = { version = "=3.3.0", path = "../internal" } [dev-dependencies] assert_cmd = "2.0" predicates = "3.1" tempfile = "3.14" -dylint_internal = { version = "=3.2.1", path = "../internal", features = [ +dylint_internal = { version = "=3.3.0", path = "../internal", features = [ "packaging", ] } diff --git a/dylint/Cargo.toml b/dylint/Cargo.toml index b17971763..3f0769d0c 100644 --- a/dylint/Cargo.toml +++ b/dylint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A tool for running Rust lints from dynamic libraries" edition = "2021" @@ -38,7 +38,7 @@ toml = { version = "0.8", optional = true } url = { version = "2.5", optional = true } walkdir = "2.5" -dylint_internal = { version = "=3.2.1", path = "../internal", features = [ +dylint_internal = { version = "=3.3.0", path = "../internal", features = [ "config", "git", "packaging", @@ -47,14 +47,14 @@ dylint_internal = { version = "=3.2.1", path = "../internal", features = [ ] } [build-dependencies] -dylint_internal = { version = "=3.2.1", path = "../internal", features = [ +dylint_internal = { version = "=3.3.0", path = "../internal", features = [ "cargo", ] } [dev-dependencies] env_logger = "0.11" -dylint_internal = { version = "=3.2.1", path = "../internal", features = [ +dylint_internal = { version = "=3.3.0", path = "../internal", features = [ "examples", ] } diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 5352d4238..8d84e613e 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint_examples" -version = "3.2.1" +version = "3.3.0" description = "A dummy package for testing the example Dylint libraries" edition = "2021" license = "MIT OR Apache-2.0" @@ -12,7 +12,7 @@ cargo_metadata = "0.19" toml_edit = "0.22" walkdir = "2.5" -dylint_internal = { version = "=3.2.1", path = "../internal", features = [ +dylint_internal = { version = "=3.3.0", path = "../internal", features = [ "clippy_utils", "examples", ] } diff --git a/examples/experimental/derive_opportunity/Cargo.lock b/examples/experimental/derive_opportunity/Cargo.lock index 8b907d622..d30f2e14c 100644 --- a/examples/experimental/derive_opportunity/Cargo.lock +++ b/examples/experimental/derive_opportunity/Cargo.lock @@ -221,7 +221,7 @@ dependencies = [ [[package]] name = "derive_opportunity" -version = "3.2.1" +version = "3.3.0" dependencies = [ "bitflags 2.6.0", "clippy_utils", @@ -304,7 +304,7 @@ dependencies = [ [[package]] name = "dylint" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -323,7 +323,7 @@ dependencies = [ [[package]] name = "dylint_internal" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -344,7 +344,7 @@ dependencies = [ [[package]] name = "dylint_linting" -version = "3.2.1" +version = "3.3.0" dependencies = [ "cargo_metadata", "dylint_internal", @@ -357,7 +357,7 @@ dependencies = [ [[package]] name = "dylint_testing" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "cargo_metadata", diff --git a/examples/experimental/derive_opportunity/Cargo.toml b/examples/experimental/derive_opportunity/Cargo.toml index 3b9acc591..8af9773fe 100644 --- a/examples/experimental/derive_opportunity/Cargo.toml +++ b/examples/experimental/derive_opportunity/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_opportunity" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for traits that could be derived" edition = "2021" diff --git a/examples/experimental/missing_doc_comment_openai/Cargo.lock b/examples/experimental/missing_doc_comment_openai/Cargo.lock index b9a84e3fb..5ad2ad0a4 100644 --- a/examples/experimental/missing_doc_comment_openai/Cargo.lock +++ b/examples/experimental/missing_doc_comment_openai/Cargo.lock @@ -320,7 +320,7 @@ dependencies = [ [[package]] name = "dylint" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "dylint_internal" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -360,7 +360,7 @@ dependencies = [ [[package]] name = "dylint_linting" -version = "3.2.1" +version = "3.3.0" dependencies = [ "cargo_metadata", "dylint_internal", @@ -373,7 +373,7 @@ dependencies = [ [[package]] name = "dylint_testing" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "cargo_metadata", @@ -844,7 +844,7 @@ dependencies = [ [[package]] name = "missing_doc_comment_openai" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "curl", diff --git a/examples/experimental/missing_doc_comment_openai/Cargo.toml b/examples/experimental/missing_doc_comment_openai/Cargo.toml index db5a71830..4720f4c06 100644 --- a/examples/experimental/missing_doc_comment_openai/Cargo.toml +++ b/examples/experimental/missing_doc_comment_openai/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "missing_doc_comment_openai" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint that suggests doc comments using OpenAI" edition = "2021" diff --git a/examples/general/Cargo.lock b/examples/general/Cargo.lock index 71dc17013..13ef11f3b 100644 --- a/examples/general/Cargo.lock +++ b/examples/general/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "abs_home_path" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_internal", @@ -117,7 +117,7 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "await_holding_span_guard" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -127,7 +127,7 @@ dependencies = [ [[package]] name = "basic_dead_store" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -279,7 +279,7 @@ dependencies = [ [[package]] name = "crate_wide_allow" -version = "3.2.1" +version = "3.3.0" dependencies = [ "assert_cmd", "cargo_metadata 0.18.1", @@ -394,7 +394,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "dylint" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -413,7 +413,7 @@ dependencies = [ [[package]] name = "dylint_internal" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -434,7 +434,7 @@ dependencies = [ [[package]] name = "dylint_linting" -version = "3.2.1" +version = "3.3.0" dependencies = [ "cargo_metadata 0.19.0", "dylint_internal", @@ -447,7 +447,7 @@ dependencies = [ [[package]] name = "dylint_testing" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "cargo_metadata 0.19.0", @@ -544,7 +544,7 @@ dependencies = [ [[package]] name = "general" -version = "3.2.1" +version = "3.3.0" dependencies = [ "abs_home_path", "await_holding_span_guard", @@ -795,7 +795,7 @@ checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" [[package]] name = "incorrect_matches_operation" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -951,7 +951,7 @@ dependencies = [ [[package]] name = "non_local_effect_before_error_return" -version = "3.2.1" +version = "3.3.0" dependencies = [ "bitflags 2.6.0", "clippy_utils", @@ -964,7 +964,7 @@ dependencies = [ [[package]] name = "non_thread_safe_call_in_test" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_internal", @@ -1795,7 +1795,7 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" [[package]] name = "wrong_serialize_struct_arg" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_internal", diff --git a/examples/general/Cargo.toml b/examples/general/Cargo.toml index 252e8a55a..2b072be97 100644 --- a/examples/general/Cargo.toml +++ b/examples/general/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "general" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "General-purpose lints" edition = "2021" diff --git a/examples/general/abs_home_path/Cargo.toml b/examples/general/abs_home_path/Cargo.toml index 3065cfe54..6c7b81831 100644 --- a/examples/general/abs_home_path/Cargo.toml +++ b/examples/general/abs_home_path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abs_home_path" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for string literals that are absolute paths into the user's home directory" edition = "2021" diff --git a/examples/general/await_holding_span_guard/Cargo.toml b/examples/general/await_holding_span_guard/Cargo.toml index 8a46d08e2..a5e15c6d9 100644 --- a/examples/general/await_holding_span_guard/Cargo.toml +++ b/examples/general/await_holding_span_guard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "await_holding_span_guard" -version = "3.2.1" +version = "3.3.0" authors = ["David Barsky"] description = "A lint to check for Span guards held while calling await inside an async function" edition = "2021" diff --git a/examples/general/basic_dead_store/Cargo.toml b/examples/general/basic_dead_store/Cargo.toml index f06aa7a9d..cfbc07057 100644 --- a/examples/general/basic_dead_store/Cargo.toml +++ b/examples/general/basic_dead_store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "basic_dead_store" -version = "3.2.1" +version = "3.3.0" authors = ["Filipe Casal "] description = "A lint to find simple instances of dead stores in arrays" edition = "2021" diff --git a/examples/general/crate_wide_allow/Cargo.toml b/examples/general/crate_wide_allow/Cargo.toml index b8e4d42e6..ab8a0d5d3 100644 --- a/examples/general/crate_wide_allow/Cargo.toml +++ b/examples/general/crate_wide_allow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crate_wide_allow" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for `#![allow(...)]` used at the crate level" edition = "2021" diff --git a/examples/general/crate_wide_allow/ui_manifest/Cargo.lock b/examples/general/crate_wide_allow/ui_manifest/Cargo.lock index ef0afbcc3..1f92598f1 100644 --- a/examples/general/crate_wide_allow/ui_manifest/Cargo.lock +++ b/examples/general/crate_wide_allow/ui_manifest/Cargo.lock @@ -4,4 +4,4 @@ version = 4 [[package]] name = "ui_manifest" -version = "3.2.1" +version = "3.3.0" diff --git a/examples/general/crate_wide_allow/ui_manifest/Cargo.toml b/examples/general/crate_wide_allow/ui_manifest/Cargo.toml index 22522319b..eb9a9887b 100644 --- a/examples/general/crate_wide_allow/ui_manifest/Cargo.toml +++ b/examples/general/crate_wide_allow/ui_manifest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ui_manifest" -version = "3.2.1" +version = "3.3.0" edition = "2021" [lints.clippy] diff --git a/examples/general/incorrect_matches_operation/Cargo.toml b/examples/general/incorrect_matches_operation/Cargo.toml index 7d7c42de9..0e0422399 100644 --- a/examples/general/incorrect_matches_operation/Cargo.toml +++ b/examples/general/incorrect_matches_operation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incorrect_matches_operation" -version = "3.2.1" +version = "3.3.0" authors = ["Dominik Czarnota "] description = "A lint to check for incorrect operators used with matches! macros" edition = "2021" diff --git a/examples/general/non_local_effect_before_error_return/Cargo.toml b/examples/general/non_local_effect_before_error_return/Cargo.toml index a415f72ba..8f6d1d435 100644 --- a/examples/general/non_local_effect_before_error_return/Cargo.toml +++ b/examples/general/non_local_effect_before_error_return/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "non_local_effect_before_error_return" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for non-local effects before return of an error" edition = "2021" diff --git a/examples/general/non_thread_safe_call_in_test/Cargo.toml b/examples/general/non_thread_safe_call_in_test/Cargo.toml index efa29a498..03d57ca04 100644 --- a/examples/general/non_thread_safe_call_in_test/Cargo.toml +++ b/examples/general/non_thread_safe_call_in_test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "non_thread_safe_call_in_test" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for non-thread-safe function calls in tests" edition = "2021" diff --git a/examples/general/wrong_serialize_struct_arg/Cargo.toml b/examples/general/wrong_serialize_struct_arg/Cargo.toml index 56099e269..9d6bba7e5 100644 --- a/examples/general/wrong_serialize_struct_arg/Cargo.toml +++ b/examples/general/wrong_serialize_struct_arg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wrong_serialize_struct_arg" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for calls to `serialize_struct` with incorrect `len` arguments" edition = "2021" diff --git a/examples/restriction/Cargo.lock b/examples/restriction/Cargo.lock index b7b5be781..7ff4741fb 100644 --- a/examples/restriction/Cargo.lock +++ b/examples/restriction/Cargo.lock @@ -99,7 +99,7 @@ dependencies = [ [[package]] name = "assert_eq_arg_misordering" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -214,7 +214,7 @@ dependencies = [ [[package]] name = "collapsible_unwrap" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -253,7 +253,7 @@ dependencies = [ [[package]] name = "const_path_join" -version = "3.2.1" +version = "3.3.0" dependencies = [ "camino", "clippy_utils", @@ -444,7 +444,7 @@ dependencies = [ [[package]] name = "dylint" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -463,7 +463,7 @@ dependencies = [ [[package]] name = "dylint_internal" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -484,7 +484,7 @@ dependencies = [ [[package]] name = "dylint_linting" -version = "3.2.1" +version = "3.3.0" dependencies = [ "cargo_metadata 0.19.0", "dylint_internal", @@ -497,7 +497,7 @@ dependencies = [ [[package]] name = "dylint_testing" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "cargo_metadata 0.19.0", @@ -529,7 +529,7 @@ dependencies = [ [[package]] name = "env_literal" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_internal", @@ -849,7 +849,7 @@ checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" [[package]] name = "inconsistent_qualification" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "diesel", @@ -1006,7 +1006,7 @@ dependencies = [ [[package]] name = "misleading_variable_name" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "cargo_metadata 0.18.1", @@ -1058,7 +1058,7 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "overscoped_allow" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "assert_cmd", @@ -1135,7 +1135,7 @@ dependencies = [ [[package]] name = "question_mark_in_expression" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -1175,7 +1175,7 @@ dependencies = [ [[package]] name = "ref_aware_redundant_closure_for_method_calls" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_internal", @@ -1214,7 +1214,7 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "register_lints_warn" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -1399,7 +1399,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "suboptimal_pattern" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -1577,7 +1577,7 @@ dependencies = [ [[package]] name = "try_io_result" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "clippy_utils", diff --git a/examples/restriction/assert_eq_arg_misordering/Cargo.toml b/examples/restriction/assert_eq_arg_misordering/Cargo.toml index bbe0d97e6..b72ae8b96 100644 --- a/examples/restriction/assert_eq_arg_misordering/Cargo.toml +++ b/examples/restriction/assert_eq_arg_misordering/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "assert_eq_arg_misordering" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for `assert_eq!(actual, expected)`" edition = "2021" diff --git a/examples/restriction/collapsible_unwrap/Cargo.toml b/examples/restriction/collapsible_unwrap/Cargo.toml index 8f3edeebb..d48961cfb 100644 --- a/examples/restriction/collapsible_unwrap/Cargo.toml +++ b/examples/restriction/collapsible_unwrap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "collapsible_unwrap" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for an `unwrap` that could be combined with an `expect` or `unwrap` using `and_then`" edition = "2021" diff --git a/examples/restriction/const_path_join/Cargo.toml b/examples/restriction/const_path_join/Cargo.toml index c65157168..fa7c395e7 100644 --- a/examples/restriction/const_path_join/Cargo.toml +++ b/examples/restriction/const_path_join/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "const_path_join" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for joining of constant path components" edition = "2021" diff --git a/examples/restriction/env_literal/Cargo.toml b/examples/restriction/env_literal/Cargo.toml index b74da0f0e..d7a5a6e32 100644 --- a/examples/restriction/env_literal/Cargo.toml +++ b/examples/restriction/env_literal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "env_literal" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for environment variables referred to with string literals" edition = "2021" diff --git a/examples/restriction/inconsistent_qualification/Cargo.toml b/examples/restriction/inconsistent_qualification/Cargo.toml index 458c07c00..99a633c62 100644 --- a/examples/restriction/inconsistent_qualification/Cargo.toml +++ b/examples/restriction/inconsistent_qualification/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inconsistent_qualification" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for inconsistent qualification of module items" edition = "2021" diff --git a/examples/restriction/misleading_variable_name/Cargo.toml b/examples/restriction/misleading_variable_name/Cargo.toml index f4f8c63d5..279ae8e8d 100644 --- a/examples/restriction/misleading_variable_name/Cargo.toml +++ b/examples/restriction/misleading_variable_name/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "misleading_variable_name" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for variables whose names suggest they have types other than the ones they have" edition = "2021" diff --git a/examples/restriction/overscoped_allow/Cargo.toml b/examples/restriction/overscoped_allow/Cargo.toml index a8746b77e..cca243036 100644 --- a/examples/restriction/overscoped_allow/Cargo.toml +++ b/examples/restriction/overscoped_allow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "overscoped_allow" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for `allow` attributes whose scope could be reduced" edition = "2021" diff --git a/examples/restriction/question_mark_in_expression/Cargo.toml b/examples/restriction/question_mark_in_expression/Cargo.toml index 3fe803240..eb3893a13 100644 --- a/examples/restriction/question_mark_in_expression/Cargo.toml +++ b/examples/restriction/question_mark_in_expression/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "question_mark_in_expression" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for the `?` operator in expressions" edition = "2021" diff --git a/examples/restriction/ref_aware_redundant_closure_for_method_calls/Cargo.toml b/examples/restriction/ref_aware_redundant_closure_for_method_calls/Cargo.toml index 02f19b5dc..e67d86b88 100644 --- a/examples/restriction/ref_aware_redundant_closure_for_method_calls/Cargo.toml +++ b/examples/restriction/ref_aware_redundant_closure_for_method_calls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ref_aware_redundant_closure_for_method_calls" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A ref-aware fork of `redundant_closure_for_method_calls`" edition = "2021" diff --git a/examples/restriction/register_lints_warn/Cargo.toml b/examples/restriction/register_lints_warn/Cargo.toml index f91ad8ecf..0d474c18f 100644 --- a/examples/restriction/register_lints_warn/Cargo.toml +++ b/examples/restriction/register_lints_warn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "register_lints_warn" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for calls to `rustc_errors::DiagCtxtHandle::warn` from within a `register_lints` function" edition = "2021" diff --git a/examples/restriction/suboptimal_pattern/Cargo.toml b/examples/restriction/suboptimal_pattern/Cargo.toml index acb4a6d7c..fa53bc7b9 100644 --- a/examples/restriction/suboptimal_pattern/Cargo.toml +++ b/examples/restriction/suboptimal_pattern/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "suboptimal_pattern" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for patterns that could perform additional destructuring" edition = "2021" diff --git a/examples/restriction/try_io_result/Cargo.toml b/examples/restriction/try_io_result/Cargo.toml index 575425473..110a0bef7 100644 --- a/examples/restriction/try_io_result/Cargo.toml +++ b/examples/restriction/try_io_result/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "try_io_result" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for the `?` operator applied to `std::io::Result`" edition = "2021" diff --git a/examples/supplementary/Cargo.lock b/examples/supplementary/Cargo.lock index a270d584c..6e0a6762d 100644 --- a/examples/supplementary/Cargo.lock +++ b/examples/supplementary/Cargo.lock @@ -217,7 +217,7 @@ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" [[package]] name = "commented_code" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -380,7 +380,7 @@ dependencies = [ [[package]] name = "dylint" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -399,7 +399,7 @@ dependencies = [ [[package]] name = "dylint_internal" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -420,7 +420,7 @@ dependencies = [ [[package]] name = "dylint_linting" -version = "3.2.1" +version = "3.3.0" dependencies = [ "cargo_metadata 0.19.0", "dylint_internal", @@ -433,7 +433,7 @@ dependencies = [ [[package]] name = "dylint_testing" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "cargo_metadata 0.19.0", @@ -494,7 +494,7 @@ dependencies = [ [[package]] name = "escaping_doc_link" -version = "3.2.1" +version = "3.3.0" dependencies = [ "cargo-util", "cargo_metadata 0.18.1", @@ -792,7 +792,7 @@ dependencies = [ [[package]] name = "inconsistent_struct_pattern" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -927,7 +927,7 @@ checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" [[package]] name = "local_ref_cell" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_internal", @@ -1079,7 +1079,7 @@ dependencies = [ [[package]] name = "redundant_reference" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -1294,7 +1294,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "supplementary" -version = "3.2.1" +version = "3.3.0" dependencies = [ "commented_code", "dylint_linting", @@ -1495,7 +1495,7 @@ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" [[package]] name = "unnamed_constant" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", @@ -1505,7 +1505,7 @@ dependencies = [ [[package]] name = "unnecessary_borrow_mut" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_internal", @@ -1515,7 +1515,7 @@ dependencies = [ [[package]] name = "unnecessary_conversion_for_trait" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_internal", diff --git a/examples/supplementary/Cargo.toml b/examples/supplementary/Cargo.toml index 7e79f8e72..d588773fd 100644 --- a/examples/supplementary/Cargo.toml +++ b/examples/supplementary/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "supplementary" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "Supplementary lints" edition = "2021" diff --git a/examples/supplementary/commented_code/Cargo.toml b/examples/supplementary/commented_code/Cargo.toml index ea5ae3455..71da5ce48 100644 --- a/examples/supplementary/commented_code/Cargo.toml +++ b/examples/supplementary/commented_code/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "commented_code" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for code that has been commented out" edition = "2021" diff --git a/examples/supplementary/escaping_doc_link/Cargo.toml b/examples/supplementary/escaping_doc_link/Cargo.toml index f7051cb6b..e3b27df2f 100644 --- a/examples/supplementary/escaping_doc_link/Cargo.toml +++ b/examples/supplementary/escaping_doc_link/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "escaping_doc_link" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for doc comment links that escape their packages" edition = "2021" diff --git a/examples/supplementary/inconsistent_struct_pattern/Cargo.toml b/examples/supplementary/inconsistent_struct_pattern/Cargo.toml index e5529e18f..3e23150ba 100644 --- a/examples/supplementary/inconsistent_struct_pattern/Cargo.toml +++ b/examples/supplementary/inconsistent_struct_pattern/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inconsistent_struct_pattern" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for struct patterns whose fields do not match their declared order" edition = "2021" diff --git a/examples/supplementary/local_ref_cell/Cargo.toml b/examples/supplementary/local_ref_cell/Cargo.toml index a7e6e1186..bf7935512 100644 --- a/examples/supplementary/local_ref_cell/Cargo.toml +++ b/examples/supplementary/local_ref_cell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "local_ref_cell" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for `RefCell` local variables" edition = "2021" diff --git a/examples/supplementary/redundant_reference/Cargo.toml b/examples/supplementary/redundant_reference/Cargo.toml index 5d7435d98..9c67e8333 100644 --- a/examples/supplementary/redundant_reference/Cargo.toml +++ b/examples/supplementary/redundant_reference/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redundant_reference" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for reference fields used only to read one copyable subfield" edition = "2021" diff --git a/examples/supplementary/unnamed_constant/Cargo.toml b/examples/supplementary/unnamed_constant/Cargo.toml index 2af98e9a8..a6b55f52f 100644 --- a/examples/supplementary/unnamed_constant/Cargo.toml +++ b/examples/supplementary/unnamed_constant/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unnamed_constant" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for unnamed constants, aka magic numbers" edition = "2021" diff --git a/examples/supplementary/unnecessary_borrow_mut/Cargo.toml b/examples/supplementary/unnecessary_borrow_mut/Cargo.toml index c552b2041..36fee5400 100644 --- a/examples/supplementary/unnecessary_borrow_mut/Cargo.toml +++ b/examples/supplementary/unnecessary_borrow_mut/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unnecessary_borrow_mut" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for calls to `RefCell::borrow_mut` that could be `RefCell::borrow`" edition = "2021" diff --git a/examples/supplementary/unnecessary_conversion_for_trait/Cargo.toml b/examples/supplementary/unnecessary_conversion_for_trait/Cargo.toml index 69d1ae96a..edfe023c0 100644 --- a/examples/supplementary/unnecessary_conversion_for_trait/Cargo.toml +++ b/examples/supplementary/unnecessary_conversion_for_trait/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unnecessary_conversion_for_trait" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint to check for unnecessary trait-behavior-preserving calls" edition = "2021" diff --git a/examples/testing/clippy/Cargo.lock b/examples/testing/clippy/Cargo.lock index 4c4a2a08c..c463f1115 100644 --- a/examples/testing/clippy/Cargo.lock +++ b/examples/testing/clippy/Cargo.lock @@ -177,7 +177,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clippy" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "cargo_metadata 0.19.0", @@ -354,7 +354,7 @@ dependencies = [ [[package]] name = "dylint" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -373,7 +373,7 @@ dependencies = [ [[package]] name = "dylint_internal" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -394,7 +394,7 @@ dependencies = [ [[package]] name = "dylint_linting" -version = "3.2.1" +version = "3.3.0" dependencies = [ "cargo_metadata 0.19.0", "dylint_internal", @@ -407,7 +407,7 @@ dependencies = [ [[package]] name = "dylint_testing" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "cargo_metadata 0.19.0", diff --git a/examples/testing/clippy/Cargo.toml b/examples/testing/clippy/Cargo.toml index bfc82a77b..fd106c7fd 100644 --- a/examples/testing/clippy/Cargo.toml +++ b/examples/testing/clippy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "All of the Clippy lints as a Dylint library" edition = "2021" diff --git a/examples/testing/marker/Cargo.toml b/examples/testing/marker/Cargo.toml index f80e35d70..278108a36 100644 --- a/examples/testing/marker/Cargo.toml +++ b/examples/testing/marker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marker" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "Marker lints run from a Dylint library" edition = "2021" diff --git a/examples/testing/straggler/Cargo.lock b/examples/testing/straggler/Cargo.lock index 4f979fb1a..7a743f442 100644 --- a/examples/testing/straggler/Cargo.lock +++ b/examples/testing/straggler/Cargo.lock @@ -300,7 +300,7 @@ dependencies = [ [[package]] name = "dylint" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -319,7 +319,7 @@ dependencies = [ [[package]] name = "dylint_internal" -version = "3.2.1" +version = "3.3.0" dependencies = [ "ansi_term", "anyhow", @@ -340,7 +340,7 @@ dependencies = [ [[package]] name = "dylint_linting" -version = "3.2.1" +version = "3.3.0" dependencies = [ "cargo_metadata", "dylint_internal", @@ -353,7 +353,7 @@ dependencies = [ [[package]] name = "dylint_testing" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "cargo_metadata", @@ -1125,7 +1125,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "straggler" -version = "3.2.1" +version = "3.3.0" dependencies = [ "clippy_utils", "dylint_linting", diff --git a/examples/testing/straggler/Cargo.toml b/examples/testing/straggler/Cargo.toml index e718e4fb1..b8e607005 100644 --- a/examples/testing/straggler/Cargo.toml +++ b/examples/testing/straggler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "straggler" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "A lint that uses an old toolchain for testing purposes" edition = "2021" diff --git a/expensive/Cargo.toml b/expensive/Cargo.toml index c44e09f0a..c9a2eef49 100644 --- a/expensive/Cargo.toml +++ b/expensive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "expensive" description = "Expensive tests" -version = "3.2.1" +version = "3.3.0" edition = "2021" publish = false @@ -9,7 +9,7 @@ publish = false anyhow = "1.0" tempfile = "3.14" -dylint_internal = { version = "=3.2.1", path = "../internal", features = [ +dylint_internal = { version = "=3.3.0", path = "../internal", features = [ "clippy_utils", "rustup", "sed", diff --git a/internal/Cargo.toml b/internal/Cargo.toml index 661ef84cc..6938cbda4 100644 --- a/internal/Cargo.toml +++ b/internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint_internal" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "Dylint internals" edition = "2021" diff --git a/internal/template/Cargo.toml~ b/internal/template/Cargo.toml~ index dc7f4176d..5f02979f6 100644 --- a/internal/template/Cargo.toml~ +++ b/internal/template/Cargo.toml~ @@ -11,10 +11,10 @@ crate-type = ["cdylib"] [dependencies] clippy_utils = { git = "https://github.com/rust-lang/rust-clippy", rev = "ff4a26d442bead94a4c96fb1de967374bc4fbd8e" } -dylint_linting = "3.2.1" +dylint_linting = "3.3.0" [dev-dependencies] -dylint_testing = "3.2.1" +dylint_testing = "3.3.0" [workspace] diff --git a/utils/linting/Cargo.lock b/utils/linting/Cargo.lock index ab4c21333..a65abca52 100644 --- a/utils/linting/Cargo.lock +++ b/utils/linting/Cargo.lock @@ -108,7 +108,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "dylint_internal" -version = "3.2.1" +version = "3.3.0" dependencies = [ "anyhow", "cargo_metadata", @@ -121,7 +121,7 @@ dependencies = [ [[package]] name = "dylint_linting" -version = "3.2.1" +version = "3.3.0" dependencies = [ "assert_cmd", "cargo_metadata", diff --git a/utils/linting/Cargo.toml b/utils/linting/Cargo.toml index eeab6d4b6..15ae44132 100644 --- a/utils/linting/Cargo.toml +++ b/utils/linting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint_linting" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "Utilities for writing Dylint libraries" edition = "2021" @@ -15,7 +15,7 @@ serde = "1.0" thiserror = "2.0" toml = "0.8" -dylint_internal = { version = "=3.2.1", path = "../../internal", features = [ +dylint_internal = { version = "=3.3.0", path = "../../internal", features = [ "config", ] } diff --git a/utils/testing/Cargo.toml b/utils/testing/Cargo.toml index 8c61e86bd..06a375f4b 100644 --- a/utils/testing/Cargo.toml +++ b/utils/testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dylint_testing" -version = "3.2.1" +version = "3.3.0" authors = ["Samuel E. Moelius III "] description = "Utilities for testing Dylint libraries" edition = "2021" @@ -17,8 +17,8 @@ regex = "1.11" serde_json = "1.0" tempfile = "3.14" -dylint = { version = "=3.2.1", path = "../../dylint" } -dylint_internal = { version = "=3.2.1", path = "../../internal" } +dylint = { version = "=3.3.0", path = "../../dylint" } +dylint_internal = { version = "=3.3.0", path = "../../internal" } [features] default = []