all platforms: update Mycelium dependencies #953
Annotations
10 errors and 2 warnings
platforms/pomelo/src/main.rs#L71
error[E0560]: struct `KernelSettings` has no field named `timer_granularity`
--> platforms/pomelo/src/main.rs:71:9
|
71 | timer_granularity: maitake::time::Duration::from_micros(1),
| ^^^^^^^^^^^^^^^^^ `KernelSettings` does not have this field
|
= note: all struct fields are already assigned
|
platforms/pomelo/src/main.rs#L71
error[E0560]: struct `KernelSettings` has no field named `timer_granularity`
--> platforms/pomelo/src/main.rs:71:9
|
71 | timer_granularity: maitake::time::Duration::from_micros(1),
| ^^^^^^^^^^^^^^^^^ `KernelSettings` does not have this field
|
= note: all struct fields are already assigned
|
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~
|
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~
|
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~
|
platforms/pomelo/src/main.rs#L75
error[E0061]: this function takes 2 arguments but 1 argument was supplied
--> platforms/pomelo/src/main.rs:75:49
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings).unwrap())
| ^^^^^^^^^^^---------- argument #2 of type `Clock` is missing
|
note: associated function defined here
--> /home/runner/work/mnemos/mnemos/source/kernel/src/lib.rs:172:19
|
172 | pub unsafe fn new(
| ^^^
help: provide the argument
|
75 | mnemos_alloc::containers::Box::into_raw(Kernel::new(settings, /* Clock */).unwrap())
| ~~~~~~~~~~~~~~~~~~~~~~~
|
platforms/pomelo/src/main.rs#L188
error[E0599]: no method named `force_advance` found for reference `&maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:188:31
|
188 | let next_turn = timer.force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
platforms/pomelo/src/main.rs#L188
error[E0599]: no method named `force_advance` found for reference `&maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:188:31
|
188 | let next_turn = timer.force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
platforms/pomelo/src/main.rs#L217
error[E0599]: no method named `force_advance` found for reference `&'static maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:217:28
|
217 | kernel.timer().force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
platforms/pomelo/src/main.rs#L217
error[E0599]: no method named `force_advance` found for reference `&'static maitake::time::Timer` in the current scope
--> platforms/pomelo/src/main.rs:217:28
|
217 | kernel.timer().force_advance(dt);
| ^^^^^^^^^^^^^ method not found in `&Timer`
|
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 use a deprecated Node.js version 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