Skip to content

Bump version

Bump version #367

Triggered via push April 10, 2024 11:57
Status Success
Total duration 2m 1s
Artifacts

osx.yml

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

Annotations

76 warnings
usage of a legacy numeric constant: src/lib.rs#L69
warning: usage of a legacy numeric constant --> src/lib.rs:69:29 | 69 | max_frame_size: std::u16::MAX as u32, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 69 | max_frame_size: u16::MAX as u32, | ~~~~~~~~
usage of a legacy numeric constant: src/session.rs#L1177
warning: usage of a legacy numeric constant --> src/session.rs:1177:30 | 1177 | incoming_window: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 1177 | incoming_window: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/session.rs#L1150
warning: usage of a legacy numeric constant --> src/session.rs:1150:34 | 1150 | incoming_window: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 1150 | incoming_window: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/connection.rs#L310
warning: usage of a legacy numeric constant --> src/connection.rs:310:25 | 310 | handle_max: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 310 | handle_max: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/connection.rs#L308
warning: usage of a legacy numeric constant --> src/connection.rs:308:30 | 308 | incoming_window: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 308 | incoming_window: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/connection.rs#L200
warning: usage of a legacy numeric constant --> src/connection.rs:200:37 | 200 | handle_max: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 200 | handle_max: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/connection.rs#L199
warning: usage of a legacy numeric constant --> src/connection.rs:199:42 | 199 | outgoing_window: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 199 | outgoing_window: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/connection.rs#L198
warning: usage of a legacy numeric constant --> src/connection.rs:198:42 | 198 | incoming_window: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants = note: `#[warn(clippy::legacy_numeric_constants)]` on by default help: use the associated constant instead | 198 | incoming_window: u32::MAX, | ~~~~~~~~
struct `WeakCell` is never constructed: src/cell.rs#L10
warning: struct `WeakCell` is never constructed --> src/cell.rs:10:19 | 10 | pub(crate) struct WeakCell<T> { | ^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
the item `TryFrom` is imported redundantly: src/sndlink.rs#L1
warning: the item `TryFrom` is imported redundantly --> src/sndlink.rs:1:34 | 1 | use std::{collections::VecDeque, convert::TryFrom, future::Future}; | ^^^^^^^^^^^^^^^^ --> /rustc/8b2459c1f21187f9792d99310171a15e64feb9cf/library/std/src/prelude/mod.rs:148:13 | = note: the item `TryFrom` is already defined here
the item `TryFrom` is imported redundantly: src/session.rs#L1
warning: the item `TryFrom` is imported redundantly --> src/session.rs:1:34 | 1 | use std::{collections::VecDeque, convert::TryFrom, fmt, future::Future}; | ^^^^^^^^^^^^^^^^ --> /rustc/8b2459c1f21187f9792d99310171a15e64feb9cf/library/std/src/prelude/mod.rs:148:13 | = note: the item `TryFrom` is already defined here
the item `TryFrom` is imported redundantly: src/router.rs#L1
warning: the item `TryFrom` is imported redundantly --> src/router.rs:1:11 | 1 | use std::{convert::TryFrom, future::poll_fn, marker, rc::Rc}; | ^^^^^^^^^^^^^^^^ --> /rustc/8b2459c1f21187f9792d99310171a15e64feb9cf/library/std/src/prelude/mod.rs:148:13 | = note: the item `TryFrom` is already defined here
the item `TryFrom` is imported redundantly: src/error.rs#L1
warning: the item `TryFrom` is imported redundantly --> src/error.rs:1:11 | 1 | use std::{convert::TryFrom, error, io}; | ^^^^^^^^^^^^^^^^ --> /rustc/8b2459c1f21187f9792d99310171a15e64feb9cf/library/std/src/prelude/mod.rs:148:13 | = note: the item `TryFrom` is already defined here | = note: `#[warn(unused_imports)]` on by default
importing legacy numeric constants: codec/src/protocol/definitions.rs#L5
warning: importing legacy numeric constants --> codec/src/protocol/definitions.rs:5:5 | 5 | use std::u8; | ^^^^^^^ | = help: remove this import = note: then `u8::<CONST>` will resolve to the respective associated constant = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
assigning the result of `Clone::clone()` may be inefficient: codec/src/message/message.rs#L263
warning: assigning the result of `Clone::clone()` may be inefficient --> codec/src/message/message.rs:263:40 | 263 | msg.set_properties(|props| props.correlation_id = data.message_id.clone()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `props.correlation_id.clone_from(&data.message_id)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones = note: `#[warn(clippy::assigning_clones)]` on by default
usage of a legacy numeric constant: codec/src/message/body.rs#L78
warning: usage of a legacy numeric constant --> codec/src/message/body.rs:78:25 | 78 | if length > std::u8::MAX as usize { | ^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 78 | if length > u8::MAX as usize { | ~~~~~~~
usage of a legacy numeric constant: codec/src/message/body.rs#L48
warning: usage of a legacy numeric constant --> codec/src/message/body.rs:48:45 | 48 | let size = length + if length > std::u8::MAX as usize { 5 } else { 2 }; | ^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 48 | let size = length + if length > u8::MAX as usize { 5 } else { 2 }; | ~~~~~~~
importing legacy numeric constants: codec/src/codec/encode.rs#L2
warning: importing legacy numeric constants --> codec/src/codec/encode.rs:2:37 | 2 | use std::{collections::HashMap, i8, u8}; | ^^ | = help: remove this import = note: then `u8::<CONST>` will resolve to the respective associated constant = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
importing legacy numeric constants: codec/src/codec/encode.rs#L2
warning: importing legacy numeric constants --> codec/src/codec/encode.rs:2:33 | 2 | use std::{collections::HashMap, i8, u8}; | ^^ | = help: remove this import = note: then `i8::<CONST>` will resolve to the respective associated constant = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
importing legacy numeric constants: codec/src/codec/decode.rs#L1
warning: importing legacy numeric constants --> codec/src/codec/decode.rs:1:79 | 1 | use std::{char, collections, convert::TryFrom, hash::BuildHasher, hash::Hash, u8}; | ^^ | = help: remove this import = note: then `u8::<CONST>` will resolve to the respective associated constant = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants = note: `#[warn(clippy::legacy_numeric_constants)]` on by default
stable - x86_64-apple-darwin
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/toolchain@v1, actions-rs/cargo@v1, Swatinem/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
stable - x86_64-apple-darwin
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1, Swatinem/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
stable - x86_64-apple-darwin: codec/src/codec/decode.rs#L680
use of deprecated method `chrono::TimeZone::ymd`: use `with_ymd_and_hms()` instead
stable - x86_64-apple-darwin: codec/src/codec/decode.rs#L680
use of deprecated method `chrono::Date::<Tz>::and_hms_milli`: Use and_hms_milli_opt() instead
stable - x86_64-apple-darwin: codec/src/codec/decode.rs#L683
use of deprecated method `chrono::TimeZone::ymd`: use `with_ymd_and_hms()` instead
stable - x86_64-apple-darwin: codec/src/codec/decode.rs#L683
use of deprecated method `chrono::Date::<Tz>::and_hms_milli`: Use and_hms_milli_opt() instead
stable - x86_64-apple-darwin: codec/src/codec/decode.rs#L693
use of deprecated method `chrono::TimeZone::ymd`: use `with_ymd_and_hms()` instead
stable - x86_64-apple-darwin: codec/src/codec/decode.rs#L693
use of deprecated method `chrono::Date::<Tz>::and_hms_milli`: Use and_hms_milli_opt() instead
stable - x86_64-apple-darwin: codec/src/codec/decode.rs#L696
use of deprecated method `chrono::TimeZone::ymd`: use `with_ymd_and_hms()` instead
stable - x86_64-apple-darwin: codec/src/codec/decode.rs#L696
use of deprecated method `chrono::Date::<Tz>::and_hms_milli`: Use and_hms_milli_opt() instead
stable - x86_64-apple-darwin: codec/src/codec/decode.rs#L752
use of deprecated method `chrono::TimeZone::ymd`: use `with_ymd_and_hms()` instead
stable - x86_64-apple-darwin: codec/src/codec/decode.rs#L752
use of deprecated method `chrono::Date::<Tz>::and_hms_milli`: Use and_hms_milli_opt() instead
stable - x86_64-apple-darwin
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/
stable - x86_64-apple-darwin
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/
stable - x86_64-apple-darwin
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/
stable - x86_64-apple-darwin
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/
stable - x86_64-apple-darwin
The `save-state` 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/
stable - x86_64-apple-darwin
The `save-state` 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/
usage of a legacy numeric constant: src/lib.rs#L69
warning: usage of a legacy numeric constant --> src/lib.rs:69:29 | 69 | max_frame_size: std::u16::MAX as u32, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 69 | max_frame_size: u16::MAX as u32, | ~~~~~~~~
usage of a legacy numeric constant: src/session.rs#L1177
warning: usage of a legacy numeric constant --> src/session.rs:1177:30 | 1177 | incoming_window: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 1177 | incoming_window: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/session.rs#L1150
warning: usage of a legacy numeric constant --> src/session.rs:1150:34 | 1150 | incoming_window: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 1150 | incoming_window: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/connection.rs#L310
warning: usage of a legacy numeric constant --> src/connection.rs:310:25 | 310 | handle_max: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 310 | handle_max: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/connection.rs#L308
warning: usage of a legacy numeric constant --> src/connection.rs:308:30 | 308 | incoming_window: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 308 | incoming_window: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/connection.rs#L200
warning: usage of a legacy numeric constant --> src/connection.rs:200:37 | 200 | handle_max: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 200 | handle_max: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/connection.rs#L199
warning: usage of a legacy numeric constant --> src/connection.rs:199:42 | 199 | outgoing_window: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 199 | outgoing_window: u32::MAX, | ~~~~~~~~
usage of a legacy numeric constant: src/connection.rs#L198
warning: usage of a legacy numeric constant --> src/connection.rs:198:42 | 198 | incoming_window: std::u32::MAX, | ^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants = note: `#[warn(clippy::legacy_numeric_constants)]` on by default help: use the associated constant instead | 198 | incoming_window: u32::MAX, | ~~~~~~~~
struct `WeakCell` is never constructed: src/cell.rs#L10
warning: struct `WeakCell` is never constructed --> src/cell.rs:10:19 | 10 | pub(crate) struct WeakCell<T> { | ^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
the item `TryFrom` is imported redundantly: src/sndlink.rs#L1
warning: the item `TryFrom` is imported redundantly --> src/sndlink.rs:1:34 | 1 | use std::{collections::VecDeque, convert::TryFrom, future::Future}; | ^^^^^^^^^^^^^^^^ --> /rustc/8b2459c1f21187f9792d99310171a15e64feb9cf/library/std/src/prelude/mod.rs:148:13 | = note: the item `TryFrom` is already defined here
the item `TryFrom` is imported redundantly: src/session.rs#L1
warning: the item `TryFrom` is imported redundantly --> src/session.rs:1:34 | 1 | use std::{collections::VecDeque, convert::TryFrom, fmt, future::Future}; | ^^^^^^^^^^^^^^^^ --> /rustc/8b2459c1f21187f9792d99310171a15e64feb9cf/library/std/src/prelude/mod.rs:148:13 | = note: the item `TryFrom` is already defined here
the item `TryFrom` is imported redundantly: src/router.rs#L1
warning: the item `TryFrom` is imported redundantly --> src/router.rs:1:11 | 1 | use std::{convert::TryFrom, future::poll_fn, marker, rc::Rc}; | ^^^^^^^^^^^^^^^^ --> /rustc/8b2459c1f21187f9792d99310171a15e64feb9cf/library/std/src/prelude/mod.rs:148:13 | = note: the item `TryFrom` is already defined here
the item `TryFrom` is imported redundantly: src/error.rs#L1
warning: the item `TryFrom` is imported redundantly --> src/error.rs:1:11 | 1 | use std::{convert::TryFrom, error, io}; | ^^^^^^^^^^^^^^^^ --> /rustc/8b2459c1f21187f9792d99310171a15e64feb9cf/library/std/src/prelude/mod.rs:148:13 | = note: the item `TryFrom` is already defined here | = note: `#[warn(unused_imports)]` on by default
importing legacy numeric constants: codec/src/protocol/definitions.rs#L5
warning: importing legacy numeric constants --> codec/src/protocol/definitions.rs:5:5 | 5 | use std::u8; | ^^^^^^^ | = help: remove this import = note: then `u8::<CONST>` will resolve to the respective associated constant = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
assigning the result of `Clone::clone()` may be inefficient: codec/src/message/message.rs#L263
warning: assigning the result of `Clone::clone()` may be inefficient --> codec/src/message/message.rs:263:40 | 263 | msg.set_properties(|props| props.correlation_id = data.message_id.clone()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `props.correlation_id.clone_from(&data.message_id)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones = note: `#[warn(clippy::assigning_clones)]` on by default
usage of a legacy numeric constant: codec/src/message/body.rs#L78
warning: usage of a legacy numeric constant --> codec/src/message/body.rs:78:25 | 78 | if length > std::u8::MAX as usize { | ^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 78 | if length > u8::MAX as usize { | ~~~~~~~
usage of a legacy numeric constant: codec/src/message/body.rs#L48
warning: usage of a legacy numeric constant --> codec/src/message/body.rs:48:45 | 48 | let size = length + if length > std::u8::MAX as usize { 5 } else { 2 }; | ^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants help: use the associated constant instead | 48 | let size = length + if length > u8::MAX as usize { 5 } else { 2 }; | ~~~~~~~
importing legacy numeric constants: codec/src/codec/encode.rs#L2
warning: importing legacy numeric constants --> codec/src/codec/encode.rs:2:37 | 2 | use std::{collections::HashMap, i8, u8}; | ^^ | = help: remove this import = note: then `u8::<CONST>` will resolve to the respective associated constant = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
importing legacy numeric constants: codec/src/codec/encode.rs#L2
warning: importing legacy numeric constants --> codec/src/codec/encode.rs:2:33 | 2 | use std::{collections::HashMap, i8, u8}; | ^^ | = help: remove this import = note: then `i8::<CONST>` will resolve to the respective associated constant = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
importing legacy numeric constants: codec/src/codec/decode.rs#L1
warning: importing legacy numeric constants --> codec/src/codec/decode.rs:1:79 | 1 | use std::{char, collections, convert::TryFrom, hash::BuildHasher, hash::Hash, u8}; | ^^ | = help: remove this import = note: then `u8::<CONST>` will resolve to the respective associated constant = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants = note: `#[warn(clippy::legacy_numeric_constants)]` on by default
nightly - x86_64-apple-darwin
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/toolchain@v1, actions-rs/cargo@v1, Swatinem/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
nightly - x86_64-apple-darwin
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1, Swatinem/[email protected]. 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-apple-darwin
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-apple-darwin
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-apple-darwin
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-apple-darwin
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-apple-darwin
The `save-state` 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-apple-darwin
The `save-state` 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-apple-darwin: codec/src/codec/decode.rs#L548
the item `Decode` is imported redundantly
nightly - x86_64-apple-darwin: codec/src/protocol/mod.rs#L317
the item `BytesMut` is imported redundantly
nightly - x86_64-apple-darwin: codec/src/protocol/mod.rs#L318
the item `Uuid` is imported redundantly
nightly - x86_64-apple-darwin: codec/src/protocol/mod.rs#L321
the item `Decode` is imported redundantly
nightly - x86_64-apple-darwin: codec/src/protocol/mod.rs#L321
the item `Encode` is imported redundantly
nightly - x86_64-apple-darwin: codec/src/codec/decode.rs#L680
use of deprecated method `chrono::TimeZone::ymd`: use `with_ymd_and_hms()` instead
nightly - x86_64-apple-darwin: codec/src/codec/decode.rs#L680
use of deprecated method `chrono::Date::<Tz>::and_hms_milli`: Use and_hms_milli_opt() instead
nightly - x86_64-apple-darwin: codec/src/codec/decode.rs#L683
use of deprecated method `chrono::TimeZone::ymd`: use `with_ymd_and_hms()` instead
nightly - x86_64-apple-darwin: codec/src/codec/decode.rs#L683
use of deprecated method `chrono::Date::<Tz>::and_hms_milli`: Use and_hms_milli_opt() instead
nightly - x86_64-apple-darwin: codec/src/codec/decode.rs#L693
use of deprecated method `chrono::TimeZone::ymd`: use `with_ymd_and_hms()` instead