Fix wasm warnings

This commit is contained in:
Nicolas Luck
2023-10-17 22:07:38 +02:00
parent 2776beb842
commit 0c9740fe52
4 changed files with 20 additions and 6 deletions

View File

@@ -21,7 +21,9 @@ use std::fmt::Debug;
use std::fs::{File, OpenOptions};
use std::hash::Hash;
use std::io;
use std::io::{BufRead, Cursor, ErrorKind, Read, Seek, SeekFrom, Write};
use std::io::{Cursor, ErrorKind, Read, Seek, SeekFrom, Write};
#[cfg(feature = "http")]
use std::io::BufRead;
use std::mem;
use std::net::{Shutdown, TcpStream};
use std::ops::{Deref, DerefMut};