Fix warnings in Rust 1.25

This commit is contained in:
Rafał Harabień 2018-04-28 14:53:32 +02:00
parent 8bb24994e0
commit e9dec65318
4 changed files with 12 additions and 14 deletions

22
Cargo.lock generated
View File

@ -1,14 +1,3 @@
[root]
name = "fatfs"
version = "0.2.0"
dependencies = [
"bitflags 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "aho-corasick"
version = "0.6.3"
@ -45,6 +34,17 @@ dependencies = [
"regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "fatfs"
version = "0.2.0"
dependencies = [
"bitflags 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "kernel32-sys"
version = "0.2.2"

View File

@ -2,7 +2,6 @@ extern crate fatfs;
use std::fs::OpenOptions;
use std::io::prelude::*;
use std::str;
use fatfs::{FileSystem, FsOptions, BufStream};

View File

@ -1,4 +1,3 @@
use std::ascii::AsciiExt;
use std::io::prelude::*;
use std::io;
use std::io::{ErrorKind, SeekFrom};

View File

@ -209,7 +209,7 @@ impl FsOptions {
}
}
pub(crate) type FileSystemRef<'a, 'b: 'a> = &'a FileSystem<'b>;
pub(crate) type FileSystemRef<'a, 'b> = &'a FileSystem<'b>;
/// FAT filesystem main struct.
pub struct FileSystem<'a> {