Skip to content

Commit 5ea9619

Browse files
committed
fix clippy error
1 parent b8f70d0 commit 5ea9619

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
env:
1414
RUST_TOOLCHAIN: nightly
1515
TOOLCHAIN_PROFILE: minimal
16+
CARGO_TERM_COLOR: always
1617

1718
jobs:
1819
lints:

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@ coredump*
66
/coverage
77

88
# visual studio code files
9-
.vscode
9+
.vscode
10+
11+
# idea files
12+
.idea

monoio/src/driver/uring/lifecycle.rs

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ pub(crate) enum Lifecycle {
1717

1818
/// The submitter no longer has interest in the operation result. The state
1919
/// must be passed to the driver and held until the operation completes.
20+
#[allow(dead_code)]
2021
Ignored(Box<dyn std::any::Any>),
2122

2223
/// The operation has completed.

0 commit comments

Comments
 (0)