惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
博客园_首页
U
Unit 42
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
IT之家
IT之家
G
Google Developers Blog
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
Jina AI
Jina AI
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
小众软件
小众软件
H
Help Net Security

Rust Blog

Security Advisory for Cargo (CVE-2026-5223) | Rust Blog Security Advisory for Cargo (CVE-2026-5222) | Rust Blog Project goals update — April 2026 (end of 2025H2) | Rust Blog Rust is participating in Outreachy | Rust Blog Raising the baseline for the `nvptx64-nvidia-cuda` target | Rust Blog Announcing Google Summer of Code 2026 selected projects | Rust Blog Announcing Rust 1.95.0 | Rust Blog docs.rs: building fewer targets by default | Rust Blog Changes to WebAssembly targets and handling undefined symbols | Rust Blog Announcing Rust 1.94.1 | Rust Blog Security advisory for Cargo | Rust Blog What we heard about Rust's challenges | Rust Blog Call for Testing: Build Dir Layout v2 | Rust Blog Announcing rustup 1.29.0 | Rust Blog Announcing Rust 1.94.0 | Rust Blog 2025 State of Rust Survey Results | Rust Blog Rust debugging survey 2026 | Rust Blog Update on the October 15, 2018 incident on crates.io Announcing Rust 1.29.2 Announcing Rust 1.29 Announcing Rust 1.28 What is Rust 2018? Announcing Rust 1.27.2 Announcing Rust 1.27.1 Security Advisory for rustdoc Announcing Rust 1.27 Announcing Rust 1.26.2 Announcing Rust 1.26.1 Rust turns three Announcing Rust 1.26
Clippy is removing its plugin interface | Inside Rust Blog
Philipp Krones on behalf of the Dev tools team (Clippy) · 2019-11-04 · via Rust Blog

Today, we're announcing that Clippy will completely remove its plugin interface. Using the plugin interface has been deprecated for about one and a half year now (rust-lang/rust-clippy#2712). Since then, an unsilenceable warning has been emitted. Now that compiler plugins are officially deprecated (rust-lang/rust#64675), Clippy will remove its support for the plugin interface completely (rust-lang/rust-clippy#4714). This change will hit stable with version 1.41.0.

Does this post affect me?

Most likely, no. This post only affects you, if you're still using Clippy through its plugin interface. If you do so, you get the warning

warning: the clippy plugin is being deprecated, please use cargo clippy or rls with the clippy feature

when compiling your crate. If you don't see this warning, nothing will change for you.

How do I migrate from the plugin interface?

If you are still using the Clippy plugin interface, here are some steps you can take to migrate to cargo clippy.

  1. Cargo.toml: Remove every occurrence of the clippy dependency and the clippy feature.
  2. Completely remove every occurrence of feature(plugin) and plugin(clippy).
  3. Replace every occurrence of feature = "clippy" with feature = "cargo-clippy". The cargo-clippy feature is automatically enabled when running cargo clippy.
  4. CI: You now have to install Clippy via rustup, with rustup component add clippy. Once installed, you can run cargo clippy (for more usage instructions, see the Clippy README). Note that Clippy is not included in every nightly, but you can check its availability on the rustup components history page.

Where should I go if I have more questions?

If you need help with migrating from the plugin interface, you can contact us via Discord or open an issue on GitHub.