Skip to content

Commit

Permalink
fix clippy error (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
loongs-zhang authored Jan 30, 2024
1 parent 4aa1dc6 commit be701d3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
env:
RUST_TOOLCHAIN: nightly
TOOLCHAIN_PROFILE: minimal
CARGO_TERM_COLOR: always

jobs:
lints:
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ coredump*
/coverage

# visual studio code files
.vscode
.vscode

# idea files
.idea
1 change: 1 addition & 0 deletions monoio/src/driver/uring/lifecycle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ pub(crate) enum Lifecycle {

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

/// The operation has completed.
Expand Down

0 comments on commit be701d3

Please sign in to comment.