update toolchain to nightly-2024-07-30 #867
Annotations
2 errors and 2 warnings
source/alloc/src/heap.rs#L68
error: you should consider adding a `Default` implementation for `MnemosAlloc<U>`
--> source/alloc/src/heap.rs:68:5
|
68 | / pub const fn new() -> Self {
69 | | Self {
70 | | allocator: U::INIT,
71 | | heap_size: AtomicUsize::new(0),
... |
75 | | }
76 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
= note: `-D clippy::new-without-default` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::new_without_default)]`
help: try adding this
|
65 + impl<U: UnderlyingAllocator> Default for MnemosAlloc<U> {
66 + fn default() -> Self {
67 + Self::new()
68 + }
69 + }
|
|
|
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v2, extractions/setup-just@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
This job failed
Loading