Skip to content

add alloc feature change to readme and changelog #517

add alloc feature change to readme and changelog

add alloc feature change to readme and changelog #517

Triggered via push July 7, 2024 13:57
Status Success
Total duration 1m 49s
Artifacts

scheduled.yml

on: push
ubuntu / nightly
1m 41s
ubuntu / nightly
ubuntu / nightly / updated
1m 40s
ubuntu / nightly / updated
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
src/lib.rs#L927
warning: --> src/lib.rs:927:41 | 927 | (self.1)(unsafe { &mut *slot }).map_err(|e| { | ^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_inspect help: try | 927 ~ (self.1)(unsafe { &mut *slot }).inspect_err(|e| { 928 | // SAFETY: `slot` was initialized above. 929 ~ unsafe { core::ptr::drop_in_place(slot) }; |
src/lib.rs#L829
warning: --> src/lib.rs:829:23 | 829 | (self.1)(val).map_err(|e| { | ^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_inspect = note: `#[warn(clippy::manual_inspect)]` on by default help: try | 829 ~ (self.1)(val).inspect_err(|e| { 830 | // SAFETY: `slot` was initialized above. 831 ~ unsafe { core::ptr::drop_in_place(slot) }; |