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
The tool_lints warning has been canceled by rust-lang/rust#54358 on the current 1.30 beta channel, so writing #[allow(needless_pass_by_value)] should be fine.
BTW, the feature has been stabilized by rust-lang/rust#54870 on the current 1.31 nightly channel meaning you don't need #![feature(tool_lints)] to write #[allow(clippy::needless_pass_by_value)] either.
The text was updated successfully, but these errors were encountered:
That is my bad, I should learn to check against all (or more) supported rust versions.
I have published 0.9.3 which should resolve this, it also moves u128 support behind a default feature (in case people don't need/want it) and adds very early experimental serde support.
886f854 added a
#![feature(tool_lints)]
which requires nightly to work, making it not possible to use 0.9.2 on beta or stablepcg_rand/src/lib.rs
Line 121 in 93ff7d3
The
tool_lints
warning has been canceled by rust-lang/rust#54358 on the current 1.30 beta channel, so writing#[allow(needless_pass_by_value)]
should be fine.BTW, the feature has been stabilized by rust-lang/rust#54870 on the current 1.31 nightly channel meaning you don't need
#![feature(tool_lints)]
to write#[allow(clippy::needless_pass_by_value)]
either.The text was updated successfully, but these errors were encountered: