From 0c134422bacb1986b080ca5ea4103e5cedc12012 Mon Sep 17 00:00:00 2001 From: renovate <29139614+renovate@users.noreply.github.com> Date: Fri, 26 Jul 2024 01:26:44 +0000 Subject: [PATCH] chore(deps): update dependency rust to v1.80.0 (#4474) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [rust](https://togithub.com/rust-lang/rust) | minor | `1.79.0` -> `1.80.0` | --- ### Release Notes
rust-lang/rust (rust) ### [`v1.80.0`](https://togithub.com/rust-lang/rust/compare/1.79.0...1.80.0) [Compare Source](https://togithub.com/rust-lang/rust/compare/1.79.0...1.80.0)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/oxc-project/oxc). --- .clippy.toml | 1 + Cargo.toml | 4 +++- rust-toolchain.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 .clippy.toml diff --git a/.clippy.toml b/.clippy.toml new file mode 100644 index 000000000..7d99e6bda --- /dev/null +++ b/.clippy.toml @@ -0,0 +1 @@ +ignore-interior-mutability = ["oxc_linter::rule::RuleWithSeverity"] diff --git a/Cargo.toml b/Cargo.toml index cb08355e0..a4ce5e9d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,6 +19,7 @@ rust-version = "1.74" absolute_paths_not_starting_with_crate = "warn" non_ascii_idents = "warn" unit-bindings = "warn" +unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)', 'cfg(coverage_nightly)'] } [workspace.lints.clippy] all = { level = "warn", priority = -1 } @@ -69,7 +70,8 @@ missing_const_for_fn = "allow" # cargo cargo = { level = "warn", priority = -1 } multiple_crate_versions = "allow" -cargo_common_metadata = "allow" # TODO: fix this +cargo_common_metadata = "allow" # FIXME +doc_lazy_continuation = "allow" # FIXME [workspace.dependencies] # publish = true diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 7ae2b72dd..dfd5bfe0d 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.79.0" +channel = "1.80.0" profile = "default"