build: change opt-level #12
Annotations
29 errors and 3 warnings
Compile (ubuntu-latest, x86_64-unknown-linux-gnu, x86_64-linux, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, x86_64-unknown-linux-gnu, x86_64-linux, true)
The operation was canceled.
|
Compile (ubuntu-latest, armv7-unknown-linux-musleabi, armv7-linux-musl, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, armv7-unknown-linux-musleabi, armv7-linux-musl, true)
The operation was canceled.
|
Compile (ubuntu-latest, x86_64-unknown-freebsd, x86_64-freebsd, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, x86_64-unknown-freebsd, x86_64-freebsd, true)
The operation was canceled.
|
Compile (ubuntu-latest, armv7-unknown-linux-gnueabi, armv7-linux, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, armv7-unknown-linux-gnueabi, armv7-linux, true)
The operation was canceled.
|
Compile (macos-latest, x86_64-apple-darwin, x86_64-darwin, false)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, x86_64-unknown-linux-musl, x86_64-linux-musl, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, x86_64-unknown-linux-musl, x86_64-linux-musl, true)
The operation was canceled.
|
Compile (windows-latest, x86_64-pc-windows-msvc, x86_64-windows, false, .exe)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (windows-latest, x86_64-pc-windows-msvc, x86_64-windows, false, .exe)
The operation was canceled.
|
Compile (ubuntu-latest, aarch64-unknown-linux-musl, aarch64-linux-musl, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, aarch64-unknown-linux-musl, aarch64-linux-musl, true)
The operation was canceled.
|
Compile (ubuntu-latest, i686-unknown-linux-musl, i686-linux-musl, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, aarch64-unknown-linux-gnu, aarch64-linux, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, i686-unknown-linux-musl, i686-linux-musl, true)
The operation was canceled.
|
Compile (ubuntu-latest, aarch64-unknown-linux-gnu, aarch64-linux, true)
The operation was canceled.
|
Compile (windows-latest, i686-pc-windows-msvc, i686-windows, true, .exe)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (windows-latest, i686-pc-windows-msvc, i686-windows, true, .exe)
The operation was canceled.
|
Compile (ubuntu-latest, i686-unknown-linux-gnu, i686-linux, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, i686-unknown-linux-gnu, i686-linux, true)
The operation was canceled.
|
Compile (ubuntu-latest, armv7-unknown-linux-musleabihf, armv7-linux-muslhf, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, armv7-unknown-linux-musleabihf, armv7-linux-muslhf, true)
The operation was canceled.
|
Compile (ubuntu-latest, armv7-unknown-linux-gnueabihf, armv7-linux-hf, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (ubuntu-latest, armv7-unknown-linux-gnueabihf, armv7-linux-hf, true)
The operation was canceled.
|
Compile (macos-latest, aarch64-apple-darwin, aarch64-darwin, true)
Canceling since a higher priority waiting request for 'binary-release-refs/heads/dev' exists
|
Compile (macos-latest, aarch64-apple-darwin, aarch64-darwin, true)
The operation was canceled.
|
this `MutexGuard` is held across an `await` point:
tuic-client/src/connection/mod.rs#L148
warning: this `MutexGuard` is held across an `await` point
--> tuic-client/src/connection/mod.rs:148:32
|
148 | let new_conn = ENDPOINT.get().unwrap().lock().connect().await?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
note: these are all the `await` points this lock is held through
--> tuic-client/src/connection/mod.rs:148:73
|
148 | let new_conn = ENDPOINT.get().unwrap().lock().connect().await?;
| ^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_lock
|
this `MutexGuard` is held across an `await` point:
tuic-client/src/connection/mod.rs#L131
warning: this `MutexGuard` is held across an `await` point
--> tuic-client/src/connection/mod.rs:131:13
|
131 | / ENDPOINT
132 | | .get()
133 | | .unwrap()
134 | | .lock()
| |_______________________^
|
= help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
note: these are all the `await` points this lock is held through
--> tuic-client/src/connection/mod.rs:136:18
|
136 | .await
| ^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_lock
= note: `#[warn(clippy::await_holding_lock)]` on by default
|
you should consider adding a `Default` implementation for `Heartbeat`:
tuic/src/protocol/heartbeat.rs#L16
warning: you should consider adding a `Default` implementation for `Heartbeat`
--> tuic/src/protocol/heartbeat.rs:16:5
|
16 | / pub const fn new() -> Self {
17 | | Self
18 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
= note: `#[warn(clippy::new_without_default)]` on by default
help: try adding this
|
12 + impl Default for Heartbeat {
13 + fn default() -> Self {
14 + Self::new()
15 + }
16 + }
|
|
Artifacts
Produced during runtime
Name | Size | Digest | |
---|---|---|---|
binary-aarch64-unknown-linux-gnu-tuic-server
Expired
|
1.07 MB |
sha256:7106185c5044bf28435038815437c248a11a5b54a493d94b34c50db3a63dcba6
|
|
binary-aarch64-unknown-linux-musl-tuic-server
Expired
|
1.14 MB |
sha256:ca34eb4a69524f0ab420ca5234d6f581f8b668189960a0eb6258ad764cbd71bc
|
|
binary-armv7-unknown-linux-gnueabi-tuic-server
Expired
|
1.02 MB |
sha256:d22e6f0dc7e8b0a63c069941f0b7f24a36f5a2fa5488502585cd51ad21637e87
|
|
binary-armv7-unknown-linux-gnueabihf-tuic-server
Expired
|
1.06 MB |
sha256:438afb911a3f1253c8f0dab2be4787ae1d0c878583cbf9aacc7181b7ad17c971
|
|
binary-armv7-unknown-linux-musleabi-tuic-server
Expired
|
1.08 MB |
sha256:e39269343887defd97fbde3c418a452b570a643397b027157b3f70ab7505982f
|
|
binary-armv7-unknown-linux-musleabihf-tuic-server
Expired
|
1.08 MB |
sha256:4f9725f49330d5fb4d3c2e47133673ef1539f98ef530b5e3028a0d4504299d71
|
|
binary-i686-unknown-linux-gnu-tuic-server
Expired
|
1010 KB |
sha256:f564728265bc8acdd9a47330b1a80e0cd6172e23e1ee8a5e1636e92d24f8adfa
|
|
binary-i686-unknown-linux-musl-tuic-server
Expired
|
1.02 MB |
sha256:7199e19c77d1b0dfa115996575fa7be9bc11c7ef82f161993ca6459f9802171e
|
|
binary-x86_64-apple-darwin-tuic-client
Expired
|
1.05 MB |
sha256:eec91fe2ecb3457c653486e87834797a0af97724ddb76f0d60404f85805c6a89
|
|
binary-x86_64-apple-darwin-tuic-server
Expired
|
1.03 MB |
sha256:042999456af77717208cb1f51a32e714b4fba5d704a3d6e6bdeb1c5e68b3d5a9
|
|
binary-x86_64-pc-windows-msvc-tuic-server
Expired
|
933 KB |
sha256:1fcf74986bd4f14cca23f069b33b4e8a41a6ac1e7e5b72602600da798c89b1c1
|
|
binary-x86_64-unknown-freebsd-tuic-server
Expired
|
1.1 MB |
sha256:9ddab665340dfecabdb1ecde0b26dd806613b38294c8e57a8747b16cd5a7a8d0
|
|
binary-x86_64-unknown-linux-gnu-tuic-server
Expired
|
1.12 MB |
sha256:7e013ecb9baacfccb232cd360eb279608a1eaecd2029dbdd135d9f4c39ab6b19
|
|
binary-x86_64-unknown-linux-musl-tuic-server
Expired
|
1.18 MB |
sha256:8680af47b23abb27f34456bffa3b408d76f9edd9c04b2b54989397956116e414
|
|