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 | |
---|---|---|
binary-aarch64-unknown-linux-gnu-tuic-server
Expired
|
1.07 MB |
|
binary-aarch64-unknown-linux-musl-tuic-server
Expired
|
1.14 MB |
|
binary-armv7-unknown-linux-gnueabi-tuic-server
Expired
|
1.02 MB |
|
binary-armv7-unknown-linux-gnueabihf-tuic-server
Expired
|
1.06 MB |
|
binary-armv7-unknown-linux-musleabi-tuic-server
Expired
|
1.08 MB |
|
binary-armv7-unknown-linux-musleabihf-tuic-server
Expired
|
1.08 MB |
|
binary-i686-unknown-linux-gnu-tuic-server
Expired
|
1010 KB |
|
binary-i686-unknown-linux-musl-tuic-server
Expired
|
1.02 MB |
|
binary-x86_64-apple-darwin-tuic-client
Expired
|
1.05 MB |
|
binary-x86_64-apple-darwin-tuic-server
Expired
|
1.03 MB |
|
binary-x86_64-pc-windows-msvc-tuic-server
Expired
|
933 KB |
|
binary-x86_64-unknown-freebsd-tuic-server
Expired
|
1.1 MB |
|
binary-x86_64-unknown-linux-gnu-tuic-server
Expired
|
1.12 MB |
|
binary-x86_64-unknown-linux-musl-tuic-server
Expired
|
1.18 MB |
|