Skip to content

Commit 1a46128

Browse files
committed
Swap sections
1 parent 2f79369 commit 1a46128

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

posts/inside-rust/2019-11-04-Clippy-removes-plugin-interface.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,12 @@ description: "Now that compiler plugins are deprecated, Clippy is removing its d
66
team: the Dev tools team (Clippy) <https://www.rust-lang.org/governance/teams/dev-tools#clippy>
77
---
88

9-
### Does this post affect me?
10-
11-
Most likely, no. This post only affects you, if you're still using Clippy
12-
through its plugin interface. If you do so, you get the warning
13-
14-
```
15-
warning: the clippy plugin is being deprecated, please use cargo clippy or rls with the clippy feature
16-
```
17-
18-
when compiling your crate. If you don't see this warning, nothing will change
19-
for you.
20-
219
### What is removed and why?
2210

2311
Today, we're announcing that Clippy will completely remove its plugin interface.
2412
Using the plugin interface has been deprecated for about one and a half year now
25-
([rust-lang/rust-clippy#2712]). Since then, unsilenceable warning have been
26-
emitted. Now that compiler plugins are officially deprecated
13+
([rust-lang/rust-clippy#2712]). Since then, an unsilenceable warning has been
14+
emitted. Now that compiler plugins are officially deprecated
2715
([rust-lang/rust#64675]), Clippy will remove its support for the plugin
2816
interface completely ([rust-lang/rust-clippy#4714]). This change will hit stable
2917
with version 1.40.0.
@@ -32,6 +20,18 @@ with version 1.40.0.
3220
[rust-lang/rust#64675]: https://github.com/rust-lang/rust/pull/64675
3321
[rust-lang/rust-clippy#4714]: https://github.com/rust-lang/rust-clippy/pull/4714
3422

23+
### Does this post affect me?
24+
25+
Most likely, no. This post only affects you, if you're still using Clippy
26+
through its plugin interface. If you do so, you get the warning
27+
28+
```
29+
warning: the clippy plugin is being deprecated, please use cargo clippy or rls with the clippy feature
30+
```
31+
32+
when compiling your crate. If you don't see this warning, nothing will change
33+
for you.
34+
3535
### How do I migrate from the plugin interface?
3636

3737
If you are still using the Clippy plugin interface, here are some steps you can

0 commit comments

Comments
 (0)