Skip to content

fix(deps): update rust crate uuid to 1.4 (#299) #2558

fix(deps): update rust crate uuid to 1.4 (#299)

fix(deps): update rust crate uuid to 1.4 (#299) #2558

Triggered via push July 30, 2023 17:01
Status Success
Total duration 1m 42s
Artifacts

linux.yml

on: push
Matrix: build_and_test
Fit to window
Zoom out
Zoom in

Annotations

34 warnings
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 983 | ... On::With(j) => with_var!(ident, j), | ------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `with_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 982 | ... On::Each(j) => each_var!(ident.as_str(), j), | ---------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `each_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_mac... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 978 | self_var!(ident); | ---------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `self_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span::ca... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 970 | ... Some(On::With(j)) => with_var!(ident, *j), | -------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `with_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span::ca... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 969 | ... Some(On::Each(j)) => each_var!(ident, *j), | -------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `each_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::S... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 968 | ... None => self_var!(ident), | ---------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: `#[warn(clippy::from_str_radix_10)]` on by default = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `self_var` (in Nightly builds, run with -Z macro-backtrace for more info)
try not to call a closure in the expression where it is declared: yarte_parser/src/strnom.rs#L120
warning: try not to call a closure in the expression where it is declared --> yarte_parser/src/strnom.rs:120:44 | 120 | match $i.chars().position(|c| !$f(c)) { | ^^^^^ | ::: yarte_parser/src/parse.rs:664:5 | 664 | take_while!(i, |i| !is_ws(i)).and_then(|(c, s)| { | ----------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call = note: `#[warn(clippy::redundant_closure_call)]` on by default = note: this warning originates in the macro `take_while` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 983 | ... On::With(j) => with_var!(ident, j), | ------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `with_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 982 | ... On::Each(j) => each_var!(ident.as_str(), j), | ---------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `each_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_mac... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 978 | self_var!(ident); | ---------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `self_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span::ca... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 970 | ... Some(On::With(j)) => with_var!(ident, *j), | -------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `with_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span::ca... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 969 | ... Some(On::Each(j)) => each_var!(ident, *j), | -------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `each_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::S... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 968 | ... None => self_var!(ident), | ---------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: `#[warn(clippy::from_str_radix_10)]` on by default = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `self_var` (in Nightly builds, run with -Z macro-backtrace for more info)
try not to call a closure in the expression where it is declared: yarte_parser/src/strnom.rs#L120
warning: try not to call a closure in the expression where it is declared --> yarte_parser/src/strnom.rs:120:44 | 120 | match $i.chars().position(|c| !$f(c)) { | ^^^^^ | ::: yarte_parser/src/parse.rs:664:5 | 664 | take_while!(i, |i| !is_ws(i)).and_then(|(c, s)| { | ----------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call = note: `#[warn(clippy::redundant_closure_call)]` on by default = note: this warning originates in the macro `take_while` (in Nightly builds, run with -Z macro-backtrace for more info)
unsafe function's docs miss `# Safety` section: yarte/src/lib.rs#L202
warning: unsafe function's docs miss `# Safety` section --> yarte/src/lib.rs:202:5 | 202 | unsafe fn _yarte_in_derive_buf_ptr(&mut self) -> *mut u8 { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc
unsafe function's docs miss `# Safety` section: yarte/src/lib.rs#L197
warning: unsafe function's docs miss `# Safety` section --> yarte/src/lib.rs:197:5 | 197 | unsafe fn _yarte_in_derive_advance(&mut self, cnt: usize) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc
unsafe function's docs miss `# Safety` section: yarte/src/lib.rs#L182
warning: unsafe function's docs miss `# Safety` section --> yarte/src/lib.rs:182:5 | 182 | unsafe fn _yarte_in_derive_extend_from_slice(&mut self, src: &[u8]) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc = note: `#[warn(clippy::missing_safety_doc)]` on by default
unneeded sub `cfg` when there is only one condition: yarte/src/lib.rs#L161
warning: unneeded sub `cfg` when there is only one condition --> yarte/src/lib.rs:161:7 | 161 | #[cfg(any(feature = "bytes-buf"))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `feature = "bytes-buf"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg = note: `#[warn(clippy::non_minimal_cfg)]` on by default
unneeded sub `cfg` when there is only one condition: yarte/src/lib.rs#L161
warning: unneeded sub `cfg` when there is only one condition --> yarte/src/lib.rs:161:7 | 161 | #[cfg(any(feature = "bytes-buf"))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `feature = "bytes-buf"` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#non_minimal_cfg = note: `#[warn(clippy::non_minimal_cfg)]` on by default
methods with the following characteristics: (`to_*` and `*_mut`) usually take `self` by mutable reference: yarte_helpers/src/helpers/ser_json/mod.rs#L18
warning: methods with the following characteristics: (`to_*` and `*_mut`) usually take `self` by mutable reference --> yarte_helpers/src/helpers/ser_json/mod.rs:18:32 | 18 | fn to_bytes_mut<B: Buffer>(&self, buf: &mut B); | ^^^^^ | = help: consider choosing a less ambiguous name = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention = note: `#[warn(clippy::wrong_self_convention)]` on by default
methods with the following characteristics: (`to_*` and `*_mut`) usually take `self` by mutable reference: yarte_helpers/src/helpers/ser_json/mod.rs#L18
warning: methods with the following characteristics: (`to_*` and `*_mut`) usually take `self` by mutable reference --> yarte_helpers/src/helpers/ser_json/mod.rs:18:32 | 18 | fn to_bytes_mut<B: Buffer>(&self, buf: &mut B); | ^^^^^ | = help: consider choosing a less ambiguous name = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention = note: `#[warn(clippy::wrong_self_convention)]` on by default
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 983 | ... On::With(j) => with_var!(ident, j), | ------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `with_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 982 | ... On::Each(j) => each_var!(ident.as_str(), j), | ---------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `each_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_mac... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 978 | self_var!(ident); | ---------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `self_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span::ca... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 970 | ... Some(On::With(j)) => with_var!(ident, *j), | -------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `with_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::Span::ca... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 969 | ... Some(On::Each(j)) => each_var!(ident, *j), | -------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `each_var` (in Nightly builds, run with -Z macro-backtrace for more info)
this call to `from_str_radix` can be replaced with a call to `str::parse`: yarte_hir/src/lib.rs#L874
warning: this call to `from_str_radix` can be replaced with a call to `str::parse` --> yarte_hir/src/lib.rs:874:52 | 874 | ... let field = syn::Index{ index: u32::from_str_radix(str::from_utf8(&ident[1..]).unwrap(), 10).unwrap(), span: proc_macro2::S... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `str::from_utf8(&ident[1..]).unwrap().parse::<u32>()` ... 968 | ... None => self_var!(ident), | ---------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_str_radix_10 = note: `#[warn(clippy::from_str_radix_10)]` on by default = note: this warning originates in the macro `index_var` which comes from the expansion of the macro `self_var` (in Nightly builds, run with -Z macro-backtrace for more info)
try not to call a closure in the expression where it is declared: yarte_parser/src/strnom.rs#L120
warning: try not to call a closure in the expression where it is declared --> yarte_parser/src/strnom.rs:120:44 | 120 | match $i.chars().position(|c| !$f(c)) { | ^^^^^ | ::: yarte_parser/src/parse.rs:664:5 | 664 | take_while!(i, |i| !is_ws(i)).and_then(|(c, s)| { | ----------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call = note: `#[warn(clippy::redundant_closure_call)]` on by default = note: this warning originates in the macro `take_while` (in Nightly builds, run with -Z macro-backtrace for more info)
methods with the following characteristics: (`to_*` and `*_mut`) usually take `self` by mutable reference: yarte_helpers/src/helpers/ser_json/mod.rs#L18
warning: methods with the following characteristics: (`to_*` and `*_mut`) usually take `self` by mutable reference --> yarte_helpers/src/helpers/ser_json/mod.rs:18:32 | 18 | fn to_bytes_mut<B: Buffer>(&self, buf: &mut B); | ^^^^^ | = help: consider choosing a less ambiguous name = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention = note: `#[warn(clippy::wrong_self_convention)]` on by default
nightly - x86_64-unknown-linux-gnu
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/
nightly - x86_64-unknown-linux-gnu
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/
nightly - x86_64-unknown-linux-gnu
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/
nightly - x86_64-unknown-linux-gnu
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/
nightly - x86_64-unknown-linux-gnu
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/