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
Move lint config to Cargo.toml. Adapt to Rust 1.88 (#1335)
This PR fixes issues for Rust 1.88 style check.
* Move lint configurations to Cargo.toml from `lib.rs` (Lint configs in
`Cargo.toml` is effective for the `bench` source code, but `lib.rs` does
not effect `bench`)
* Disable `uninlined_format_args`.
* Allow one more case of `mut_from_ref`, identified by clippy.
* Set `enum-map` to `2.7.3` (We use `EnumMap::from_fn`.
[`2.7.3`](https://docs.rs/enum-map/latest/enum_map/struct.EnumMap.html#method.from_fn)
has this function, but
[`2.6.3`](https://docs.rs/enum-map/2.6.3/enum_map/struct.EnumMap.html#)
does not have this function)
0 commit comments