chore: Fix "unexpected cfg
condition name" (#102)
#205
ci.yml
on: push
Matrix: build
Build (MSRV)
1m 12s
Clippy (stable)
34s
Rustfmt (stable)
10s
Build (nightly)
21s
all systems go!
0s
Annotations
17 errors and 41 warnings
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L856
error: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:856:6
|
856 | impl<'a, T, C: cfg::Config> VacantEntry<'a, T, C> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
856 - impl<'a, T, C: cfg::Config> VacantEntry<'a, T, C> {
856 + impl<T, C: cfg::Config> VacantEntry<'_, T, C> {
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L837
error: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:837:6
|
837 | impl<'a, T, C> PartialEq<T> for Entry<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
837 - impl<'a, T, C> PartialEq<T> for Entry<'a, T, C>
837 + impl<T, C> PartialEq<T> for Entry<'_, T, C>
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L827
error: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:827:6
|
827 | impl<'a, T, C> fmt::Debug for Entry<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
827 - impl<'a, T, C> fmt::Debug for Entry<'a, T, C>
827 + impl<T, C> fmt::Debug for Entry<'_, T, C>
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L810
error: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:810:6
|
810 | impl<'a, T, C: cfg::Config> Drop for Entry<'a, T, C> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
810 - impl<'a, T, C: cfg::Config> Drop for Entry<'a, T, C> {
810 + impl<T, C: cfg::Config> Drop for Entry<'_, T, C> {
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L802
error: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:802:6
|
802 | impl<'a, T, C: cfg::Config> std::ops::Deref for Entry<'a, T, C> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
802 - impl<'a, T, C: cfg::Config> std::ops::Deref for Entry<'a, T, C> {
802 + impl<T, C: cfg::Config> std::ops::Deref for Entry<'_, T, C> {
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L785
error: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:785:6
|
785 | impl<'a, T, C: cfg::Config> Entry<'a, T, C> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
785 - impl<'a, T, C: cfg::Config> Entry<'a, T, C> {
785 + impl<T, C: cfg::Config> Entry<'_, T, C> {
|
|
the following explicit lifetimes could be elided: 'a:
src/pool.rs#L1071
error: the following explicit lifetimes could be elided: 'a
--> src/pool.rs:1071:6
|
1071 | impl<'a, T, C> PartialEq<T> for RefMut<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1071 - impl<'a, T, C> PartialEq<T> for RefMut<'a, T, C>
1071 + impl<T, C> PartialEq<T> for RefMut<'_, T, C>
|
|
the following explicit lifetimes could be elided: 'a:
src/pool.rs#L1061
error: the following explicit lifetimes could be elided: 'a
--> src/pool.rs:1061:6
|
1061 | impl<'a, T, C> fmt::Debug for RefMut<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1061 - impl<'a, T, C> fmt::Debug for RefMut<'a, T, C>
1061 + impl<T, C> fmt::Debug for RefMut<'_, T, C>
|
|
the following explicit lifetimes could be elided: 'a:
src/pool.rs#L1043
error: the following explicit lifetimes could be elided: 'a
--> src/pool.rs:1043:6
|
1043 | impl<'a, T, C> Drop for RefMut<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1043 - impl<'a, T, C> Drop for RefMut<'a, T, C>
1043 + impl<T, C> Drop for RefMut<'_, T, C>
|
|
the following explicit lifetimes could be elided: 'a:
src/pool.rs#L1029
error: the following explicit lifetimes could be elided: 'a
--> src/pool.rs:1029:6
|
1029 | impl<'a, T, C> std::ops::DerefMut for RefMut<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1029 - impl<'a, T, C> std::ops::DerefMut for RefMut<'a, T, C>
1029 + impl<T, C> std::ops::DerefMut for RefMut<'_, T, C>
|
|
the following explicit lifetimes could be elided: 'a:
src/pool.rs#L1017
error: the following explicit lifetimes could be elided: 'a
--> src/pool.rs:1017:6
|
1017 | impl<'a, T, C: cfg::Config> std::ops::Deref for RefMut<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1017 - impl<'a, T, C: cfg::Config> std::ops::Deref for RefMut<'a, T, C>
1017 + impl<T, C: cfg::Config> std::ops::Deref for RefMut<'_, T, C>
|
|
the following explicit lifetimes could be elided: 'a:
src/pool.rs#L940
error: the following explicit lifetimes could be elided: 'a
--> src/pool.rs:940:6
|
940 | impl<'a, T, C> PartialEq<T> for Ref<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
940 - impl<'a, T, C> PartialEq<T> for Ref<'a, T, C>
940 + impl<T, C> PartialEq<T> for Ref<'_, T, C>
|
|
the following explicit lifetimes could be elided: 'a:
src/pool.rs#L930
error: the following explicit lifetimes could be elided: 'a
--> src/pool.rs:930:6
|
930 | impl<'a, T, C> fmt::Debug for Ref<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
930 - impl<'a, T, C> fmt::Debug for Ref<'a, T, C>
930 + impl<T, C> fmt::Debug for Ref<'_, T, C>
|
|
the following explicit lifetimes could be elided: 'a:
src/pool.rs#L908
error: the following explicit lifetimes could be elided: 'a
--> src/pool.rs:908:6
|
908 | impl<'a, T, C> Drop for Ref<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
908 - impl<'a, T, C> Drop for Ref<'a, T, C>
908 + impl<T, C> Drop for Ref<'_, T, C>
|
|
the following explicit lifetimes could be elided: 'a:
src/pool.rs#L896
error: the following explicit lifetimes could be elided: 'a
--> src/pool.rs:896:6
|
896 | impl<'a, T, C> std::ops::Deref for Ref<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
896 - impl<'a, T, C> std::ops::Deref for Ref<'a, T, C>
896 + impl<T, C> std::ops::Deref for Ref<'_, T, C>
|
|
the following explicit lifetimes could be elided: 'a:
src/pool.rs#L873
error: the following explicit lifetimes could be elided: 'a
--> src/pool.rs:873:6
|
873 | impl<'a, T, C> Ref<'a, T, C>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
873 - impl<'a, T, C> Ref<'a, T, C>
873 + impl<T, C> Ref<'_, T, C>
|
|
Clippy (stable)
Clippy had exited with the 101 exit code
|
Rustfmt (stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Rustfmt (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Rustfmt (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Rustfmt (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Rustfmt (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (nightly)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Build (nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (stable, x86_64-unknown-linux-gnu)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Build (stable, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (stable, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (stable, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (stable, x86_64-unknown-linux-gnu)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Clippy (stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Clippy (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Clippy (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Clippy (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Clippy (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (stable, i686-unknown-linux-musl)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Build (stable, i686-unknown-linux-musl)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (stable, i686-unknown-linux-musl)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (stable, i686-unknown-linux-musl)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (stable, i686-unknown-linux-musl)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (MSRV)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Build (MSRV)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (MSRV)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (MSRV)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (MSRV)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Build (MSRV)
unused manifest key: lints
|
Tests (stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Loom tests (stable)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Loom tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Loom tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Loom tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Loom tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|