Skip to content

Dialect default

Dialect default #693

Triggered via push January 10, 2024 08:56
Status Success
Total duration 5m 15s
Artifacts
run-guard
0s
run-guard
Matrix: testing
security
7s
security
Matrix: embedded
coverage
3s
coverage
Fit to window
Zoom out
Zoom in

Annotations

620 warnings
unneeded `return` statement: src/events.rs#L55
warning: unneeded `return` statement --> src/events.rs:55:9 | 55 | / return Ok(thread::spawn(move || { 56 | | let mut hold = true; 57 | | 58 | | while hold { ... | 64 | | Ok(()) 65 | | })); | |___________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return help: remove `return` | 55 ~ Ok(thread::spawn(move || { 56 + let mut hold = true; 57 + 58 + while hold { 59 + self.wait_for_event(name.clone())?; 60 + 61 + hold = handler(&mut self)?; 62 + } 63 + 64 + Ok(()) 65 ~ })) |
unneeded `return` statement: src/events.rs#L40
warning: unneeded `return` statement --> src/events.rs:40:9 | 40 | return conn.listen_event(name, handler); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 40 - return conn.listen_event(name, handler); 40 + conn.listen_event(name, handler) |
unused variable: `c`: src/connection/simple.rs#L188
warning: unused variable: `c` --> src/connection/simple.rs:188:47 | 188 | TypeConnectionContainer::PureRust(c) => { | ^ help: if this is intentional, prefix it with an underscore: `_c` | = note: `#[warn(unused_variables)]` on by default
casting to the same type is unnecessary (`u32` -> `u32`): rsfbclient-rust/src/xsqlda.rs#L132
warning: casting to the same type is unnecessary (`u32` -> `u32`) --> rsfbclient-rust/src/xsqlda.rs:132:15 | 132 | match sqltype as u32 { | ^^^^^^^^^^^^^^ help: try: `sqltype` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-rust/src/wire.rs#L233
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-rust/src/wire.rs:233:22 | 233 | dpb.extend(&[1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-rust/src/wire.rs#L232
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-rust/src/wire.rs:232:59 | 232 | dpb.extend(&[ibase::isc_dpb_no_db_triggers as u8, 1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-rust/src/wire.rs#L228
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-rust/src/wire.rs:228:52 | 228 | dpb.extend(&[ibase::isc_dpb_sql_dialect as u8, 1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
this function has too many arguments (8/7): rsfbclient-rust/src/wire.rs#L196
warning: this function has too many arguments (8/7) --> rsfbclient-rust/src/wire.rs:196:1 | 196 | / fn build_dpb( 197 | | user: &str, 198 | | pass: &str, 199 | | protocol: ProtocolVersion, ... | 204 | | no_db_triggers: bool, 205 | | ) -> Bytes { | |__________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
this function has too many arguments (8/7): rsfbclient-rust/src/wire.rs#L169
warning: this function has too many arguments (8/7) --> rsfbclient-rust/src/wire.rs:169:1 | 169 | / pub fn create( 170 | | db_name: &str, 171 | | user: &str, 172 | | pass: &str, ... | 177 | | dialect: Dialect, 178 | | ) -> Bytes { | |__________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
this function has too many arguments (8/7): rsfbclient-rust/src/wire.rs#L135
warning: this function has too many arguments (8/7) --> rsfbclient-rust/src/wire.rs:135:1 | 135 | / pub fn attach( 136 | | db_name: &str, 137 | | user: &str, 138 | | pass: &str, ... | 143 | | no_db_triggers: bool, 144 | | ) -> Bytes { | |__________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments = note: `#[warn(clippy::too_many_arguments)]` on by default
casting to the same type is unnecessary (`usize` -> `usize`): rsfbclient-rust/src/util.rs#L16
warning: casting to the same type is unnecessary (`usize` -> `usize`) --> rsfbclient-rust/src/util.rs:16:19 | 16 | let len = bytes.len() as usize; | ^^^^^^^^^^^^^^^^^^^^ help: try: `bytes.len()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
the borrowed expression implements the required traits: rsfbclient-rust/src/srp.rs#L149
warning: the borrowed expression implements the required traits --> rsfbclient-rust/src/srp.rs:149:31 | 149 | .chain_update(&key) | ^^^^ help: change this to: `key` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
the borrowed expression implements the required traits: rsfbclient-rust/src/srp.rs#L148
warning: the borrowed expression implements the required traits --> rsfbclient-rust/src/srp.rs:148:31 | 148 | .chain_update(&b_pub.to_bytes_be()) | ^^^^^^^^^^^^^^^^^^^^ help: change this to: `b_pub.to_bytes_be()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
the borrowed expression implements the required traits: rsfbclient-rust/src/srp.rs#L147
warning: the borrowed expression implements the required traits --> rsfbclient-rust/src/srp.rs:147:31 | 147 | .chain_update(&self.a_pub.to_bytes_be()) | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `self.a_pub.to_bytes_be()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
the borrowed expression implements the required traits: rsfbclient-rust/src/srp.rs#L109
warning: the borrowed expression implements the required traits --> rsfbclient-rust/src/srp.rs:109:35 | 109 | .chain_update(&self.a_pub.to_bytes_be()) | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `self.a_pub.to_bytes_be()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
the borrowed expression implements the required traits: rsfbclient-rust/src/srp.rs#L94
warning: the borrowed expression implements the required traits --> rsfbclient-rust/src/srp.rs:94:22 | 94 | Sha1::digest(&s.to_bytes_be()) | ^^^^^^^^^^^^^^^^ help: change this to: `s.to_bytes_be()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args = note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
casting integer literal to `u8` is unnecessary: rsfbclient-rust/src/client.rs#L478
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-rust/src/client.rs:478:22 | 478 | tpb.push(4 as u8); | ^^^^^^^ help: try: `4_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
using `clone` on type `Option<&str>` which implements the `Copy` trait: rsfbclient-rust/src/client.rs#L433
warning: using `clone` on type `Option<&str>` which implements the `Copy` trait --> rsfbclient-rust/src/client.rs:433:13 | 433 | role_name.clone(), | ^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `role_name` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
using `clone` on type `Option<&str>` which implements the `Copy` trait: rsfbclient-rust/src/client.rs#L407
warning: using `clone` on type `Option<&str>` which implements the `Copy` trait --> rsfbclient-rust/src/client.rs:407:13 | 407 | role_name.clone(), | ^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `role_name` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy = note: `#[warn(clippy::clone_on_copy)]` on by default
manual implementation of `Option::map`: rsfbclient-rust/src/client.rs#L148
warning: manual implementation of `Option::map` --> rsfbclient-rust/src/client.rs:148:20 | 148 | let role = match &config.role_name { | ____________________^ 149 | | Some(ro) => Some(ro.as_str()), 150 | | None => None, 151 | | }; | |_________^ help: try: `config.role_name.as_ref().map(|ro| ro.as_str())` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_map
manual implementation of `Option::map`: rsfbclient-rust/src/client.rs#L96
warning: manual implementation of `Option::map` --> rsfbclient-rust/src/client.rs:96:20 | 96 | let role = match &config.role_name { | ____________________^ 97 | | Some(ro) => Some(ro.as_str()), 98 | | None => None, 99 | | }; | |_________^ help: try: `config.role_name.as_ref().map(|ro| ro.as_str())` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_map = note: `#[warn(clippy::manual_map)]` on by default
casting to the same type is unnecessary (`usize` -> `usize`): rsfbclient-rust/src/blr.rs#L73
warning: casting to the same type is unnecessary (`usize` -> `usize`) --> rsfbclient-rust/src/blr.rs:73:57 | 73 | values.put_slice(&[0; 4][..4 - (bytes.len() as usize % 4)]) | ^^^^^^^^^^^^^^^^^^^^ help: try: `bytes.len()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast = note: `#[warn(clippy::unnecessary_cast)]` on by default
casting to the same type is unnecessary (`usize` -> `usize`): rsfbclient-native/src/xsqlda.rs#L39
warning: casting to the same type is unnecessary (`usize` -> `usize`) --> rsfbclient-native/src/xsqlda.rs:39:79 | 39 | let xsqlvar = unsafe { self.ptr.as_mut().sqlvar.get_unchecked_mut(col as usize) }; | ^^^^^^^^^^^^ help: try: `col` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-native/src/connection.rs#L724
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-native/src/connection.rs:724:60 | 724 | dpb.extend(&[ibase::isc_dpb_sql_dialect as u8, 1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`usize` -> `usize`): rsfbclient-native/src/connection.rs#L517
warning: casting to the same type is unnecessary (`usize` -> `usize`) --> rsfbclient-native/src/connection.rs:517:12 | 517 | Ok(affected as usize) | ^^^^^^^^^^^^^^^^^ help: try: `affected` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-native/src/connection.rs#L225
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-native/src/connection.rs:225:22 | 225 | tpb.push(4 as u8); | ^^^^^^^ help: try: `4_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-native/src/connection.rs#L124
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-native/src/connection.rs:124:26 | 124 | dpb.extend(&[1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-native/src/connection.rs#L123
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-native/src/connection.rs:123:63 | 123 | dpb.extend(&[ibase::isc_dpb_no_db_triggers as u8, 1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast = note: `#[warn(clippy::unnecessary_cast)]` on by default
this `impl` can be derived: rsfbclient-core/src/transaction.rs#L110
warning: this `impl` can be derived --> rsfbclient-core/src/transaction.rs:110:1 | 110 | / impl Default for TransactionConfiguration { 111 | | fn default() -> Self { 112 | | Self { 113 | | data_access: TrDataAccessMode::default(), ... | 117 | | } 118 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls = note: `#[warn(clippy::derivable_impls)]` on by default = help: remove the manual implementation... help: ...and instead derive it | 104 + #[derive(Default)] 105 | pub struct TransactionConfiguration { |
casting to the same type is unnecessary (`i64` -> `i64`): rsfbclient-core/src/date_time.rs#L69
warning: casting to the same type is unnecessary (`i64` -> `i64`) --> rsfbclient-core/src/date_time.rs:69:6 | 69 | ((146097 * c) as i64 / 4 + (1461 * ya) / 4 + (153 * month + 2) / 5 + day + 1721119 - 2400001) | ^^^^^^^^^^^^^^^^^^^ help: try: `(146097 * c)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast = note: `#[warn(clippy::unnecessary_cast)]` on by default
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`: rsfbclient-core/src/date_time.rs#L129
warning: use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()` --> rsfbclient-core/src/date_time.rs:129:22 | 129 | chrono::Utc::today().naive_utc().and_time(self).into_param() | ^^^^^
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead: rsfbclient-core/src/date_time.rs#L122
warning: use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead --> rsfbclient-core/src/date_time.rs:122:34 | 122 | self.and_time(NaiveTime::from_hms(0, 0, 0)).into_param() | ^^^^^^^^
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead: rsfbclient-core/src/date_time.rs#L87
warning: use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead --> rsfbclient-core/src/date_time.rs:87:24 | 87 | chrono::NaiveTime::from_hms_nano(hours, minutes, seconds, fraction * FRACTION_TO_NANOS) | ^^^^^^^^^^^^^
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead: rsfbclient-core/src/date_time.rs#L50
warning: use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead --> rsfbclient-core/src/date_time.rs:50:24 | 50 | chrono::NaiveDate::from_ymd(year, month as u32, day as u32) | ^^^^^^^^ | = note: `#[warn(deprecated)]` on by default
linting
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, 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/
linting
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/
linting
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/
linting
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/
linting
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/
linting: rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
linting: rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
linting: rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
linting: rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
linting
`rsfbclient-core` (lib) generated 4 warnings
unneeded `return` statement: src/events.rs#L55
warning: unneeded `return` statement --> src/events.rs:55:9 | 55 | / return Ok(thread::spawn(move || { 56 | | let mut hold = true; 57 | | 58 | | while hold { ... | 64 | | Ok(()) 65 | | })); | |___________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return help: remove `return` | 55 ~ Ok(thread::spawn(move || { 56 + let mut hold = true; 57 + 58 + while hold { 59 + self.wait_for_event(name.clone())?; 60 + 61 + hold = handler(&mut self)?; 62 + } 63 + 64 + Ok(()) 65 ~ })) |
unneeded `return` statement: src/events.rs#L40
warning: unneeded `return` statement --> src/events.rs:40:9 | 40 | return conn.listen_event(name, handler); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 40 - return conn.listen_event(name, handler); 40 + conn.listen_event(name, handler) |
unused variable: `c`: src/connection/simple.rs#L188
warning: unused variable: `c` --> src/connection/simple.rs:188:47 | 188 | TypeConnectionContainer::PureRust(c) => { | ^ help: if this is intentional, prefix it with an underscore: `_c` | = note: `#[warn(unused_variables)]` on by default
casting to the same type is unnecessary (`u32` -> `u32`): rsfbclient-rust/src/xsqlda.rs#L132
warning: casting to the same type is unnecessary (`u32` -> `u32`) --> rsfbclient-rust/src/xsqlda.rs:132:15 | 132 | match sqltype as u32 { | ^^^^^^^^^^^^^^ help: try: `sqltype` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-rust/src/wire.rs#L233
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-rust/src/wire.rs:233:22 | 233 | dpb.extend(&[1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-rust/src/wire.rs#L232
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-rust/src/wire.rs:232:59 | 232 | dpb.extend(&[ibase::isc_dpb_no_db_triggers as u8, 1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-rust/src/wire.rs#L228
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-rust/src/wire.rs:228:52 | 228 | dpb.extend(&[ibase::isc_dpb_sql_dialect as u8, 1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
this function has too many arguments (8/7): rsfbclient-rust/src/wire.rs#L196
warning: this function has too many arguments (8/7) --> rsfbclient-rust/src/wire.rs:196:1 | 196 | / fn build_dpb( 197 | | user: &str, 198 | | pass: &str, 199 | | protocol: ProtocolVersion, ... | 204 | | no_db_triggers: bool, 205 | | ) -> Bytes { | |__________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
this function has too many arguments (8/7): rsfbclient-rust/src/wire.rs#L169
warning: this function has too many arguments (8/7) --> rsfbclient-rust/src/wire.rs:169:1 | 169 | / pub fn create( 170 | | db_name: &str, 171 | | user: &str, 172 | | pass: &str, ... | 177 | | dialect: Dialect, 178 | | ) -> Bytes { | |__________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
this function has too many arguments (8/7): rsfbclient-rust/src/wire.rs#L135
warning: this function has too many arguments (8/7) --> rsfbclient-rust/src/wire.rs:135:1 | 135 | / pub fn attach( 136 | | db_name: &str, 137 | | user: &str, 138 | | pass: &str, ... | 143 | | no_db_triggers: bool, 144 | | ) -> Bytes { | |__________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments = note: `#[warn(clippy::too_many_arguments)]` on by default
casting to the same type is unnecessary (`usize` -> `usize`): rsfbclient-rust/src/util.rs#L16
warning: casting to the same type is unnecessary (`usize` -> `usize`) --> rsfbclient-rust/src/util.rs:16:19 | 16 | let len = bytes.len() as usize; | ^^^^^^^^^^^^^^^^^^^^ help: try: `bytes.len()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
the borrowed expression implements the required traits: rsfbclient-rust/src/srp.rs#L149
warning: the borrowed expression implements the required traits --> rsfbclient-rust/src/srp.rs:149:31 | 149 | .chain_update(&key) | ^^^^ help: change this to: `key` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
the borrowed expression implements the required traits: rsfbclient-rust/src/srp.rs#L148
warning: the borrowed expression implements the required traits --> rsfbclient-rust/src/srp.rs:148:31 | 148 | .chain_update(&b_pub.to_bytes_be()) | ^^^^^^^^^^^^^^^^^^^^ help: change this to: `b_pub.to_bytes_be()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
the borrowed expression implements the required traits: rsfbclient-rust/src/srp.rs#L147
warning: the borrowed expression implements the required traits --> rsfbclient-rust/src/srp.rs:147:31 | 147 | .chain_update(&self.a_pub.to_bytes_be()) | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `self.a_pub.to_bytes_be()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
the borrowed expression implements the required traits: rsfbclient-rust/src/srp.rs#L109
warning: the borrowed expression implements the required traits --> rsfbclient-rust/src/srp.rs:109:35 | 109 | .chain_update(&self.a_pub.to_bytes_be()) | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `self.a_pub.to_bytes_be()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
the borrowed expression implements the required traits: rsfbclient-rust/src/srp.rs#L94
warning: the borrowed expression implements the required traits --> rsfbclient-rust/src/srp.rs:94:22 | 94 | Sha1::digest(&s.to_bytes_be()) | ^^^^^^^^^^^^^^^^ help: change this to: `s.to_bytes_be()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args = note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
casting integer literal to `u8` is unnecessary: rsfbclient-rust/src/client.rs#L478
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-rust/src/client.rs:478:22 | 478 | tpb.push(4 as u8); | ^^^^^^^ help: try: `4_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
using `clone` on type `Option<&str>` which implements the `Copy` trait: rsfbclient-rust/src/client.rs#L433
warning: using `clone` on type `Option<&str>` which implements the `Copy` trait --> rsfbclient-rust/src/client.rs:433:13 | 433 | role_name.clone(), | ^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `role_name` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
using `clone` on type `Option<&str>` which implements the `Copy` trait: rsfbclient-rust/src/client.rs#L407
warning: using `clone` on type `Option<&str>` which implements the `Copy` trait --> rsfbclient-rust/src/client.rs:407:13 | 407 | role_name.clone(), | ^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `role_name` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy = note: `#[warn(clippy::clone_on_copy)]` on by default
manual implementation of `Option::map`: rsfbclient-rust/src/client.rs#L148
warning: manual implementation of `Option::map` --> rsfbclient-rust/src/client.rs:148:20 | 148 | let role = match &config.role_name { | ____________________^ 149 | | Some(ro) => Some(ro.as_str()), 150 | | None => None, 151 | | }; | |_________^ help: try: `config.role_name.as_ref().map(|ro| ro.as_str())` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_map
manual implementation of `Option::map`: rsfbclient-rust/src/client.rs#L96
warning: manual implementation of `Option::map` --> rsfbclient-rust/src/client.rs:96:20 | 96 | let role = match &config.role_name { | ____________________^ 97 | | Some(ro) => Some(ro.as_str()), 98 | | None => None, 99 | | }; | |_________^ help: try: `config.role_name.as_ref().map(|ro| ro.as_str())` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_map = note: `#[warn(clippy::manual_map)]` on by default
casting to the same type is unnecessary (`usize` -> `usize`): rsfbclient-rust/src/blr.rs#L73
warning: casting to the same type is unnecessary (`usize` -> `usize`) --> rsfbclient-rust/src/blr.rs:73:57 | 73 | values.put_slice(&[0; 4][..4 - (bytes.len() as usize % 4)]) | ^^^^^^^^^^^^^^^^^^^^ help: try: `bytes.len()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast = note: `#[warn(clippy::unnecessary_cast)]` on by default
casting to the same type is unnecessary (`usize` -> `usize`): rsfbclient-native/src/xsqlda.rs#L39
warning: casting to the same type is unnecessary (`usize` -> `usize`) --> rsfbclient-native/src/xsqlda.rs:39:79 | 39 | let xsqlvar = unsafe { self.ptr.as_mut().sqlvar.get_unchecked_mut(col as usize) }; | ^^^^^^^^^^^^ help: try: `col` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-native/src/connection.rs#L724
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-native/src/connection.rs:724:60 | 724 | dpb.extend(&[ibase::isc_dpb_sql_dialect as u8, 1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`usize` -> `usize`): rsfbclient-native/src/connection.rs#L517
warning: casting to the same type is unnecessary (`usize` -> `usize`) --> rsfbclient-native/src/connection.rs:517:12 | 517 | Ok(affected as usize) | ^^^^^^^^^^^^^^^^^ help: try: `affected` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-native/src/connection.rs#L225
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-native/src/connection.rs:225:22 | 225 | tpb.push(4 as u8); | ^^^^^^^ help: try: `4_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-native/src/connection.rs#L124
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-native/src/connection.rs:124:26 | 124 | dpb.extend(&[1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting integer literal to `u8` is unnecessary: rsfbclient-native/src/connection.rs#L123
warning: casting integer literal to `u8` is unnecessary --> rsfbclient-native/src/connection.rs:123:63 | 123 | dpb.extend(&[ibase::isc_dpb_no_db_triggers as u8, 1 as u8]); | ^^^^^^^ help: try: `1_u8` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast = note: `#[warn(clippy::unnecessary_cast)]` on by default
this `impl` can be derived: rsfbclient-core/src/transaction.rs#L110
warning: this `impl` can be derived --> rsfbclient-core/src/transaction.rs:110:1 | 110 | / impl Default for TransactionConfiguration { 111 | | fn default() -> Self { 112 | | Self { 113 | | data_access: TrDataAccessMode::default(), ... | 117 | | } 118 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls = note: `#[warn(clippy::derivable_impls)]` on by default = help: remove the manual implementation... help: ...and instead derive it | 104 + #[derive(Default)] 105 | pub struct TransactionConfiguration { |
casting to the same type is unnecessary (`i64` -> `i64`): rsfbclient-core/src/date_time.rs#L69
warning: casting to the same type is unnecessary (`i64` -> `i64`) --> rsfbclient-core/src/date_time.rs:69:6 | 69 | ((146097 * c) as i64 / 4 + (1461 * ya) / 4 + (153 * month + 2) / 5 + day + 1721119 - 2400001) | ^^^^^^^^^^^^^^^^^^^ help: try: `(146097 * c)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast = note: `#[warn(clippy::unnecessary_cast)]` on by default
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`: rsfbclient-core/src/date_time.rs#L129
warning: use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()` --> rsfbclient-core/src/date_time.rs:129:22 | 129 | chrono::Utc::today().naive_utc().and_time(self).into_param() | ^^^^^
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead: rsfbclient-core/src/date_time.rs#L122
warning: use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead --> rsfbclient-core/src/date_time.rs:122:34 | 122 | self.and_time(NaiveTime::from_hms(0, 0, 0)).into_param() | ^^^^^^^^
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead: rsfbclient-core/src/date_time.rs#L87
warning: use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead --> rsfbclient-core/src/date_time.rs:87:24 | 87 | chrono::NaiveTime::from_hms_nano(hours, minutes, seconds, fraction * FRACTION_TO_NANOS) | ^^^^^^^^^^^^^
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead: rsfbclient-core/src/date_time.rs#L50
warning: use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead --> rsfbclient-core/src/date_time.rs:50:24 | 50 | chrono::NaiveDate::from_ymd(year, month as u32, day as u32) | ^^^^^^^^ | = note: `#[warn(deprecated)]` on by default
security
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/audit-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/
security
1 warnings found!
embedded (dynamic_loading)
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/
embedded (dynamic_loading)
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/
embedded (dynamic_loading)
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/
embedded (dynamic_loading)
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/
embedded (dynamic_loading)
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/
embedded (dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
embedded (dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
embedded (dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
embedded (dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
embedded (dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
embedded (dynamic_loading): src/tests/connection.rs#L10
unused import: `std::time::SystemTime`
embedded (dynamic_loading): src/events.rs#L72
unused imports: `Arc`, `Mutex`
embedded (dynamic_loading): src/events.rs#L73
unused import: `std::time::Duration`
embedded (dynamic_loading): src/events.rs#L74
unused import: `std::thread`
embedded (dynamic_loading): src/tests/params.rs#L287
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
embedded (linking)
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/
embedded (linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
embedded (linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
embedded (linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
embedded (linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
embedded (linking)
`rsfbclient-core` (lib) generated 4 warnings
embedded (linking): src/events.rs#L72
unused imports: `Arc`, `Mutex`
embedded (linking): src/events.rs#L73
unused import: `std::time::Duration`
embedded (linking): src/events.rs#L74
unused import: `std::thread`
embedded (linking): src/tests/params.rs#L287
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
embedded (linking): src/tests/params.rs#L297
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
embedded (linking)
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/
embedded (linking)
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/
embedded (linking)
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/
embedded (linking)
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/
testing (macos-latest, v3, dynamic_loading)
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/
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (macos-latest, v3, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (macos-latest, v3, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L55
use of deprecated associated function `chrono::NaiveDateTime::from_timestamp`: use `from_timestamp_opt()` instead
testing (macos-latest, v3, dynamic_loading)
`rsfbclient-diesel` (lib test) generated 3 warnings (3 duplicates)
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (macos-latest, v3, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (macos-latest, v3, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (macos-latest, v3, dynamic_loading)
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/
testing (macos-latest, v3, dynamic_loading)
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/
testing (macos-latest, v3, dynamic_loading)
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/
testing (macos-latest, v3, dynamic_loading)
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/
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (macos-latest, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (macos-latest, v3, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (macos-latest, v3, dynamic_loading): src/tests/params.rs#L287
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, dynamic_loading): src/tests/params.rs#L297
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, dynamic_loading): src/tests/params.rs#L297
use of deprecated method `chrono::NaiveDate::and_hms`: use `and_hms_opt()` instead
testing (macos-latest, v3, dynamic_loading): src/tests/params.rs#L307
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (macos-latest, v3, dynamic_loading): src/tests/row.rs#L227
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, linking)
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/
testing (macos-latest, v3, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (macos-latest, v3, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (macos-latest, v3, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (macos-latest, v3, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (macos-latest, v3, linking)
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/
testing (macos-latest, v3, linking)
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/
testing (macos-latest, v3, linking)
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/
testing (macos-latest, v3, linking)
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/
testing (macos-latest, v3, pure_rust)
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/
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (macos-latest, v3, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (macos-latest, v3, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (macos-latest, v3, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (macos-latest, v3, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (macos-latest, v3, pure_rust): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (macos-latest, v3, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (macos-latest, v3, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (macos-latest, v3, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (macos-latest, v3, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (macos-latest, v3, pure_rust): src/events.rs#L72
unused imports: `Arc`, `Mutex`
testing (macos-latest, v3, pure_rust): src/events.rs#L73
unused import: `std::time::Duration`
testing (macos-latest, v3, pure_rust)
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/
testing (macos-latest, v3, pure_rust)
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/
testing (macos-latest, v3, pure_rust)
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/
testing (macos-latest, v3, pure_rust)
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/
testing (ubuntu-20.04, v4, dynamic_loading)
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, actions-rs/tarpaulin@v0.1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, dynamic_loading): src/tests/params.rs#L287
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): src/tests/params.rs#L297
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): src/tests/params.rs#L297
use of deprecated method `chrono::NaiveDate::and_hms`: use `and_hms_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): src/tests/params.rs#L307
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): src/tests/row.rs#L227
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, dynamic_loading)
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/
testing (ubuntu-20.04, v4, dynamic_loading)
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/
testing (ubuntu-20.04, v4, dynamic_loading)
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/
testing (ubuntu-20.04, v4, dynamic_loading)
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/
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L55
use of deprecated associated function `chrono::NaiveDateTime::from_timestamp`: use `from_timestamp_opt()` instead
testing (ubuntu-20.04, v4, dynamic_loading)
`rsfbclient-diesel` (lib test) generated 3 warnings (3 duplicates)
testing (ubuntu-20.04, v3, linking)
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, actions-rs/tarpaulin@v0.1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v3, linking)
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/
testing (ubuntu-20.04, v3, linking)
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/
testing (ubuntu-20.04, v3, linking)
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/
testing (ubuntu-20.04, v3, linking)
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/
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v3, linking): src/tests/params.rs#L287
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, linking): src/tests/params.rs#L297
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, linking): src/tests/params.rs#L297
use of deprecated method `chrono::NaiveDate::and_hms`: use `and_hms_opt()` instead
testing (ubuntu-20.04, v3, linking): src/tests/params.rs#L307
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, linking): src/tests/row.rs#L227
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v3, linking): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-diesel/src/fb/types.rs#L55
use of deprecated associated function `chrono::NaiveDateTime::from_timestamp`: use `from_timestamp_opt()` instead
testing (ubuntu-20.04, v3, linking)
`rsfbclient-diesel` (lib) generated 3 warnings
testing (ubuntu-20.04, v3, linking): rsfbclient-diesel/src/tests/types.rs#L109
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v3, dynamic_loading)
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, actions-rs/tarpaulin@v0.1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
testing (ubuntu-20.04, v3, dynamic_loading)
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/
testing (ubuntu-20.04, v3, dynamic_loading)
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/
testing (ubuntu-20.04, v3, dynamic_loading)
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/
testing (ubuntu-20.04, v3, dynamic_loading)
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/
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L55
use of deprecated associated function `chrono::NaiveDateTime::from_timestamp`: use `from_timestamp_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading)
`rsfbclient-diesel` (lib test) generated 3 warnings (3 duplicates)
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v3, dynamic_loading): src/tests/params.rs#L287
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): src/tests/params.rs#L297
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): src/tests/params.rs#L297
use of deprecated method `chrono::NaiveDate::and_hms`: use `and_hms_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): src/tests/params.rs#L307
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): src/tests/row.rs#L227
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, dynamic_loading)
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/
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, dynamic_loading): src/tests/params.rs#L287
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, dynamic_loading): src/tests/params.rs#L297
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, dynamic_loading): src/tests/params.rs#L297
use of deprecated method `chrono::NaiveDate::and_hms`: use `and_hms_opt()` instead
testing (windows-latest, v4, dynamic_loading): src/tests/params.rs#L307
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, dynamic_loading): src/tests/row.rs#L227
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, dynamic_loading)
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/
testing (windows-latest, v4, dynamic_loading)
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/
testing (windows-latest, v4, dynamic_loading)
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/
testing (windows-latest, v4, dynamic_loading)
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/
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (windows-latest, v4, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L55
use of deprecated associated function `chrono::NaiveDateTime::from_timestamp`: use `from_timestamp_opt()` instead
testing (windows-latest, v4, dynamic_loading)
`rsfbclient-diesel` (lib test) generated 3 warnings (3 duplicates)
testing (ubuntu-20.04, v2, linking)
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, actions-rs/tarpaulin@v0.1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
testing (ubuntu-20.04, v2, linking)
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/
testing (ubuntu-20.04, v2, linking)
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/
testing (ubuntu-20.04, v2, linking)
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/
testing (ubuntu-20.04, v2, linking)
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/
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, linking): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-diesel/src/fb/types.rs#L55
use of deprecated associated function `chrono::NaiveDateTime::from_timestamp`: use `from_timestamp_opt()` instead
testing (ubuntu-20.04, v2, linking)
`rsfbclient-diesel` (lib) generated 3 warnings
testing (ubuntu-20.04, v2, linking): rsfbclient-diesel/src/tests/types.rs#L109
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, linking): src/tests/params.rs#L287
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, linking): src/tests/params.rs#L297
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, linking): src/tests/params.rs#L297
use of deprecated method `chrono::NaiveDate::and_hms`: use `and_hms_opt()` instead
testing (ubuntu-20.04, v2, linking): src/tests/params.rs#L307
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, linking): src/tests/row.rs#L227
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, linking)
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, actions-rs/tarpaulin@v0.1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, linking): src/tests/params.rs#L287
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, linking): src/tests/params.rs#L297
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, linking): src/tests/params.rs#L297
use of deprecated method `chrono::NaiveDate::and_hms`: use `and_hms_opt()` instead
testing (ubuntu-20.04, v4, linking): src/tests/params.rs#L307
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, linking): src/tests/row.rs#L227
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, linking): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-diesel/src/fb/types.rs#L55
use of deprecated associated function `chrono::NaiveDateTime::from_timestamp`: use `from_timestamp_opt()` instead
testing (ubuntu-20.04, v4, linking)
`rsfbclient-diesel` (lib) generated 3 warnings
testing (ubuntu-20.04, v4, linking): rsfbclient-diesel/src/tests/types.rs#L109
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, linking)
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/
testing (ubuntu-20.04, v4, linking)
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/
testing (ubuntu-20.04, v4, linking)
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/
testing (ubuntu-20.04, v4, linking)
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/
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, dynamic_loading)
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, actions-rs/tarpaulin@v0.1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-diesel/src/fb/types.rs#L55
use of deprecated associated function `chrono::NaiveDateTime::from_timestamp`: use `from_timestamp_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading)
`rsfbclient-diesel` (lib test) generated 3 warnings (3 duplicates)
testing (ubuntu-20.04, v2, dynamic_loading)
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/
testing (ubuntu-20.04, v2, dynamic_loading)
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/
testing (ubuntu-20.04, v2, dynamic_loading)
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/
testing (ubuntu-20.04, v2, dynamic_loading)
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/
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, dynamic_loading): src/tests/params.rs#L287
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): src/tests/params.rs#L297
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): src/tests/params.rs#L297
use of deprecated method `chrono::NaiveDate::and_hms`: use `and_hms_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): src/tests/params.rs#L307
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): src/tests/row.rs#L227
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, dynamic_loading): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, dynamic_loading)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, linking)
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/
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, linking): src/tests/params.rs#L287
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, linking): src/tests/params.rs#L297
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, linking): src/tests/params.rs#L297
use of deprecated method `chrono::NaiveDate::and_hms`: use `and_hms_opt()` instead
testing (windows-latest, v4, linking): src/tests/params.rs#L307
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, linking): src/tests/row.rs#L227
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, linking): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-diesel/src/fb/types.rs#L55
use of deprecated associated function `chrono::NaiveDateTime::from_timestamp`: use `from_timestamp_opt()` instead
testing (windows-latest, v4, linking)
`rsfbclient-diesel` (lib) generated 3 warnings
testing (windows-latest, v4, linking): rsfbclient-diesel/src/tests/types.rs#L109
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, linking)
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/
testing (windows-latest, v4, linking)
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/
testing (windows-latest, v4, linking)
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/
testing (windows-latest, v4, linking)
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/
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, linking): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, linking)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, pure_rust)
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/
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (windows-latest, v4, pure_rust): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (windows-latest, v4, pure_rust)
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/
testing (windows-latest, v4, pure_rust)
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/
testing (windows-latest, v4, pure_rust)
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/
testing (windows-latest, v4, pure_rust)
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/
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (windows-latest, v4, pure_rust): examples/events.rs#L9
unused imports: `Queryable`, `RemoteEventsManager`
testing (windows-latest, v4, pure_rust)
`rsfbclient` (example "events") generated 1 warning (run `cargo fix --example "events"` to apply 1 suggestion)
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (windows-latest, v4, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (windows-latest, v4, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (windows-latest, v4, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, pure_rust)
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, actions-rs/tarpaulin@v0.1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (ubuntu-20.04, v2, pure_rust): src/events.rs#L71
unused import: `crate::*`
testing (ubuntu-20.04, v2, pure_rust): src/events.rs#L72
unused imports: `Arc`, `Mutex`
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (ubuntu-20.04, v2, pure_rust)
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/
testing (ubuntu-20.04, v2, pure_rust)
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/
testing (ubuntu-20.04, v2, pure_rust)
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/
testing (ubuntu-20.04, v2, pure_rust)
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/
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v2, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v2, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (ubuntu-20.04, v2, pure_rust): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (ubuntu-20.04, v4, pure_rust)
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, actions-rs/tarpaulin@v0.1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, pure_rust)
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/
testing (ubuntu-20.04, v4, pure_rust)
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/
testing (ubuntu-20.04, v4, pure_rust)
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/
testing (ubuntu-20.04, v4, pure_rust)
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/
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v4, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v4, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v4, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (ubuntu-20.04, v4, pure_rust): src/events.rs#L71
unused import: `crate::*`
testing (ubuntu-20.04, v4, pure_rust): src/events.rs#L72
unused imports: `Arc`, `Mutex`
testing (ubuntu-20.04, v3, pure_rust)
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, actions-rs/tarpaulin@v0.1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v3, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (ubuntu-20.04, v3, pure_rust): src/events.rs#L71
unused import: `crate::*`
testing (ubuntu-20.04, v3, pure_rust): src/events.rs#L72
unused imports: `Arc`, `Mutex`
testing (ubuntu-20.04, v3, pure_rust)
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/
testing (ubuntu-20.04, v3, pure_rust)
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/
testing (ubuntu-20.04, v3, pure_rust)
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/
testing (ubuntu-20.04, v3, pure_rust)
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/
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v3, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L50
use of deprecated associated function `chrono::NaiveDate::from_ymd`: use `from_ymd_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L87
use of deprecated associated function `chrono::NaiveTime::from_hms_nano`: use `from_hms_nano_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L122
use of deprecated associated function `chrono::NaiveTime::from_hms`: use `from_hms_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-core/src/date_time.rs#L129
use of deprecated associated function `chrono::Utc::today`: use `Utc::now()` instead, potentially with `.date_naive()`
testing (ubuntu-20.04, v3, pure_rust)
`rsfbclient-core` (lib) generated 4 warnings
testing (ubuntu-20.04, v3, pure_rust)
`rsfbclient` (lib) generated 2 warnings (run `cargo fix --lib -p rsfbclient` to apply 2 suggestions)
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-diesel/src/fb/types.rs#L47
use of deprecated associated function `chrono::NaiveDate::from_num_days_from_ce`: use `from_num_days_from_ce_opt()` instead
testing (ubuntu-20.04, v3, pure_rust): rsfbclient-diesel/src/fb/types.rs#L51
use of deprecated associated function `chrono::NaiveTime::from_num_seconds_from_midnight`: use `from_num_seconds_from_midnight_opt()` instead