delete snafu

This commit is contained in:
nora 2022-11-20 20:19:59 +01:00
parent e8ea766ff0
commit 06f9546606
No known key found for this signature in database
3 changed files with 1 additions and 38 deletions

View file

@ -1,5 +1,4 @@
use futures::{stream, StreamExt};
use snafu::prelude::*;
use std::time::{Duration, Instant};
const REQUEST_COUNT: usize = 10;
@ -38,7 +37,7 @@ async fn main() -> Result<()> {
Ok(())
}
#[derive(Debug, Snafu)]
#[derive(Debug)]
struct Error;
type Result<T, E = Error> = ::core::result::Result<T, E>;