You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> cargo clean
> cargo check
Checking zzz v0.1.0 (C:\temp\zzz)
Finished dev [unoptimized + debuginfo] target(s) in 0.22s
> cargo clippy
Checking zzz v0.1.0 (C:\temp\zzz)
warning: statement with no effect
--> src\main.rs:2:5
|
2 | 0;
| ^^
|
= note: `#[warn(clippy::no_effect)]` on by default
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#no_effect
Finished dev [unoptimized + debuginfo] target(s) in 0.40s
Step 3 should produce the following output:
> cargo clean
> cargo clippy
Checking zzz v0.1.0 (C:\temp\zzz)
warning: statement with no effect
--> src\main.rs:2:5
|
2 | 0;
| ^^
|
= note: `#[warn(clippy::no_effect)]` on by default
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#no_effect
Finished dev [unoptimized + debuginfo] target(s) in 0.40s
> cargo check
Checking zzz v0.1.0 (C:\temp\zzz)
Finished dev [unoptimized + debuginfo] target(s) in 0.22s
Actual result
Step 2 produces the following output
> cargo clean
> cargo check
Checking zzz v0.1.0 (C:\temp\zzz)
Finished dev [unoptimized + debuginfo] target(s) in 0.22s
> cargo clippy
Finished dev [unoptimized + debuginfo] target(s) in 0.06s
Step 3 produces the following output
> cargo clean
> cargo clippy
Checking zzz v0.1.0 (C:\temp\zzz)
warning: statement with no effect
--> src\main.rs:2:5
|
2 | 0;
| ^^
|
= note: `#[warn(clippy::no_effect)]` on by default
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#no_effect
Finished dev [unoptimized + debuginfo] target(s) in 0.40s
> cargo check
warning: statement with no effect
--> src\main.rs:2:5
|
2 | 0;
| ^^
|
= note: `#[warn(clippy::no_effect)]` on by default
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#no_effect
Finished dev [unoptimized + debuginfo] target(s) in 0.09s
Socket activation is necessary to make it easier to use systemd to
sandbox this service, since it's basically one big SSRF vector if not
sandboxed away from localhost and any local services whatsoever.
Also adds a hack per
rust-lang/cargo#8075 (comment)
so you can run `cargo clippy --features clippy`.
Steps to reproduce
Expected result
Step 2 should produce the following output:
Step 3 should produce the following output:
Actual result
Step 2 produces the following output
Step 3 produces the following output
Version info
The text was updated successfully, but these errors were encountered: