promise: integrate the pieces of pinky_swear we use #399
Annotations
4 warnings
security_audit
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_audit
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v2, actions-rs/audit-check@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
usage of a legacy numeric method:
src/channel.rs#L632
warning: usage of a legacy numeric method
--> src/channel.rs:632:57
|
632 | self.configuration.set_frame_max(FrameSize::max_value());
| ^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
632 | self.configuration.set_frame_max(FrameSize::MAX);
| ~~~
|
usage of a legacy numeric method:
src/channel.rs#L621
warning: usage of a legacy numeric method
--> src/channel.rs:621:59
|
621 | self.configuration.set_channel_max(ChannelId::max_value());
| ^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
= note: `-W clippy::legacy-numeric-constants` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::legacy_numeric_constants)]`
help: use the associated constant instead
|
621 | self.configuration.set_channel_max(ChannelId::MAX);
| ~~~
|