feat: add polytone #104
Triggered via pull request
May 31, 2024 16:51
Reecepbcups
synchronize
#169
Status
Success
Total duration
12s
Artifacts
–
Annotations
3 warnings
pr-labler
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/labeler@v4.3.0. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
the borrowed expression implements the required traits:
packages/polytone/src/handshake/voice.rs#L34
warning: the borrowed expression implements the required traits
--> packages/polytone/src/handshake/voice.rs:34:27
|
34 | from_json(&Binary::from_base64(counterparty_version).unwrap()).unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `Binary::from_base64(counterparty_version).unwrap()`
|
= 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:
packages/polytone/src/handshake/note.rs#L34
warning: the borrowed expression implements the required traits
--> packages/polytone/src/handshake/note.rs:34:27
|
34 | from_json(&Binary::from_base64(counterparty_version).unwrap()).unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `Binary::from_base64(counterparty_version).unwrap()`
|
= 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
|