global: prototype transfer vectors #72
Annotations
6 warnings
rustfmt
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
the following explicit lifetimes could be elided: 'a:
theon/src/allocator.rs#L252
warning: the following explicit lifetimes could be elided: 'a
--> theon/src/allocator.rs:252:20
|
252 | fn free_prefix<'a>(&mut self, prefix: &'a mut [u8]) {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
252 - fn free_prefix<'a>(&mut self, prefix: &'a mut [u8]) {
252 + fn free_prefix(&mut self, prefix: &mut [u8]) {
|
|
the feature `inline_const` has been stable since 1.79.0-nightly and no longer requires an attribute to enable:
theon/src/main.rs#L10
warning: the feature `inline_const` has been stable since 1.79.0-nightly and no longer requires an attribute to enable
--> theon/src/main.rs:10:12
|
10 | #![feature(inline_const)]
| ^^^^^^^^^^^^
|
= note: `#[warn(stable_features)]` on by default
|
lint
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
lint
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
test
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|