Skip to content

Merge branch 'main' of github.com:NULLx76/ringbuffer into remove-depr… #279

Merge branch 'main' of github.com:NULLx76/ringbuffer into remove-depr…

Merge branch 'main' of github.com:NULLx76/ringbuffer into remove-depr… #279

Triggered via push September 15, 2023 07:44
Status Failure
Total duration 2m 9s
Artifacts

rust.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

13 errors and 30 warnings
unsafe function's docs miss `# Safety` section: src/ringbuffer_trait.rs#L142
error: unsafe function's docs miss `# Safety` section --> src/ringbuffer_trait.rs:142:5 | 142 | unsafe fn ptr_get_mut(rb: *mut Self, index: isize) -> Option<*mut T>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc
item in documentation is missing backticks: src/ringbuffer_trait.rs#L140
error: item in documentation is missing backticks --> src/ringbuffer_trait.rs:140:71 | 140 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of RingBuffer | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown help: try | 140 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of `RingBuffer` | ~~~~~~~~~~~~
unsafe function's docs miss `# Safety` section: src/ringbuffer_trait.rs#L59
error: unsafe function's docs miss `# Safety` section --> src/ringbuffer_trait.rs:59:5 | 59 | unsafe fn ptr_capacity(rb: *const Self) -> usize; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc
item in documentation is missing backticks: src/ringbuffer_trait.rs#L57
error: item in documentation is missing backticks --> src/ringbuffer_trait.rs:57:71 | 57 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of RingBuffer | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown help: try | 57 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of `RingBuffer` | ~~~~~~~~~~~~
unsafe function's docs miss `# Safety` section: src/ringbuffer_trait.rs#L35
error: unsafe function's docs miss `# Safety` section --> src/ringbuffer_trait.rs:35:5 | 35 | unsafe fn ptr_len(rb: *const Self) -> usize; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc note: the lint level is defined here --> src/lib.rs:3:9 | 3 | #![deny(warnings)] | ^^^^^^^^ = note: `#[deny(clippy::missing_safety_doc)]` implied by `#[deny(warnings)]`
item in documentation is missing backticks: src/ringbuffer_trait.rs#L33
error: item in documentation is missing backticks --> src/ringbuffer_trait.rs:33:71 | 33 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of RingBuffer | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown note: the lint level is defined here --> src/lib.rs:11:9 | 11 | #![deny(clippy::doc_markdown)] | ^^^^^^^^^^^^^^^^^^^^ help: try | 33 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of `RingBuffer` | ~~~~~~~~~~~~
Lint
Clippy had exited with the 101 exit code
unsafe function's docs miss `# Safety` section: src/ringbuffer_trait.rs#L142
error: unsafe function's docs miss `# Safety` section --> src/ringbuffer_trait.rs:142:5 | 142 | unsafe fn ptr_get_mut(rb: *mut Self, index: isize) -> Option<*mut T>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc
item in documentation is missing backticks: src/ringbuffer_trait.rs#L140
error: item in documentation is missing backticks --> src/ringbuffer_trait.rs:140:71 | 140 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of RingBuffer | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown help: try | 140 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of `RingBuffer` | ~~~~~~~~~~~~
unsafe function's docs miss `# Safety` section: src/ringbuffer_trait.rs#L59
error: unsafe function's docs miss `# Safety` section --> src/ringbuffer_trait.rs:59:5 | 59 | unsafe fn ptr_capacity(rb: *const Self) -> usize; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc
item in documentation is missing backticks: src/ringbuffer_trait.rs#L57
error: item in documentation is missing backticks --> src/ringbuffer_trait.rs:57:71 | 57 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of RingBuffer | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown help: try | 57 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of `RingBuffer` | ~~~~~~~~~~~~
unsafe function's docs miss `# Safety` section: src/ringbuffer_trait.rs#L35
error: unsafe function's docs miss `# Safety` section --> src/ringbuffer_trait.rs:35:5 | 35 | unsafe fn ptr_len(rb: *const Self) -> usize; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc note: the lint level is defined here --> src/lib.rs:3:9 | 3 | #![deny(warnings)] | ^^^^^^^^ = note: `#[deny(clippy::missing_safety_doc)]` implied by `#[deny(warnings)]`
item in documentation is missing backticks: src/ringbuffer_trait.rs#L33
error: item in documentation is missing backticks --> src/ringbuffer_trait.rs:33:71 | 33 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of RingBuffer | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown note: the lint level is defined here --> src/lib.rs:11:9 | 11 | #![deny(clippy::doc_markdown)] | ^^^^^^^^^^^^^^^^^^^^ help: try | 33 | /// Safety: ONLY SAFE WHEN self is a *mut to to an implementor of `RingBuffer` | ~~~~~~~~~~~~
Build no-std
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Build no-std
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 no-std
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 no-std
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 no-std
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 no-std without alloc
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Build no-std without alloc
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 no-std without alloc
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 no-std without alloc
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 no-std without alloc
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/
Lint
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1, 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/
Lint
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/
Lint
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/
Lint
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/
Lint
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/
Test Stable
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@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 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/
Test 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/
Test 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/
Test 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/
Test Nightly
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@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 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/
Test 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/
Test 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/
Test 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/
Test Beta
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@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 Beta
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/
Test Beta
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/
Test Beta
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/
Test Beta
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/