Skip to content

Commit

Permalink
silence warnings reported by newer rust versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Keruspe committed Aug 21, 2024
1 parent ceffdc9 commit 176dcdf
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
1 change: 1 addition & 0 deletions examples/a-chat/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ async fn connection_writer_loop(
None => break,
},
void = shutdown.next().fuse() => match void {
#[allow(unreachable_patterns)]
Some(void) => match void {},
None => break,
}
Expand Down
2 changes: 1 addition & 1 deletion src/io/buf_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pin_project! {
/// # Ok(()) }) }
///```
#[derive(Debug)]
pub struct IntoInnerError<W>(W, crate::io::Error);
pub struct IntoInnerError<W>(W, #[allow(dead_code)] crate::io::Error);

impl<W: Write> BufWriter<W> {
/// Creates a new `BufWriter` with a default buffer capacity. The default is currently 8 KB,
Expand Down
2 changes: 1 addition & 1 deletion src/io/read/bytes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ impl<T: Read + Unpin> Stream for Bytes<T> {
}
}

#[cfg(all(test, default))]
#[cfg(all(test, feature = "default"))]
mod tests {
use crate::io;
use crate::prelude::*;
Expand Down
2 changes: 1 addition & 1 deletion src/io/read/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ impl<T: BufRead, U: BufRead> BufRead for Chain<T, U> {
}
}

#[cfg(all(test, default))]
#[cfg(all(test, feature = "default"))]
mod tests {
use crate::io;
use crate::prelude::*;
Expand Down
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,6 @@
#![doc(test(attr(allow(unused_extern_crates, unused_variables))))]
#![doc(html_logo_url = "https://async.rs/images/logo--hero.svg")]

extern crate alloc;

#[macro_use]
mod utils;

Expand Down
5 changes: 2 additions & 3 deletions src/utils.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use alloc::string::String;

/// Calls a function and aborts if it panics.
///
/// This is useful in unsafe code where we can't recover from panics.
Expand Down Expand Up @@ -55,8 +53,9 @@ pub fn random(n: u32) -> u32 {
}

/// Add additional context to errors
#[cfg(any(feature = "unstable", feature = "default"))]
pub(crate) trait Context {
fn context(self, message: impl Fn() -> String) -> Self;
fn context(self, message: impl Fn() -> alloc::string::String) -> Self;

Check failure on line 58 in src/utils.rs

View workflow job for this annotation

GitHub Actions / Check io_safety feature (ubuntu-latest)

failed to resolve: use of undeclared crate or module `alloc`

Check failure on line 58 in src/utils.rs

View workflow job for this annotation

GitHub Actions / Check tokio02 feature

failed to resolve: use of undeclared crate or module `alloc`

Check failure on line 58 in src/utils.rs

View workflow job for this annotation

GitHub Actions / Build and test (macOS-latest, stable)

failed to resolve: use of undeclared crate or module `alloc`

Check failure on line 58 in src/utils.rs

View workflow job for this annotation

GitHub Actions / Build and test (ubuntu-latest, stable)

failed to resolve: use of undeclared crate or module `alloc`

Check failure on line 58 in src/utils.rs

View workflow job for this annotation

GitHub Actions / Build and test (ubuntu-latest, nightly)

failed to resolve: use of undeclared crate or module `alloc`

Check failure on line 58 in src/utils.rs

View workflow job for this annotation

GitHub Actions / Check wasm targets (stable)

failed to resolve: use of undeclared crate or module `alloc`

Check failure on line 58 in src/utils.rs

View workflow job for this annotation

GitHub Actions / Build and test (ubuntu-latest, beta)

failed to resolve: use of undeclared crate or module `alloc`

Check failure on line 58 in src/utils.rs

View workflow job for this annotation

GitHub Actions / Check wasm targets (beta)

failed to resolve: use of undeclared crate or module `alloc`
}

#[cfg(all(
Expand Down

0 comments on commit 176dcdf

Please sign in to comment.