1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 10:19:27 +02:00

Turn child crates into rust 2018 edition

This commit is contained in:
marcelbuesing 2020-01-17 19:09:10 +01:00
parent 38d82f2dc2
commit c9147d31ab
No known key found for this signature in database
GPG key ID: 5E8C5624159F80BB
8 changed files with 13 additions and 7 deletions

View file

@ -1,9 +1,9 @@
use crate::range_set::{Range, RangeSet};
use byteorder::{BigEndian, ByteOrder, WriteBytesExt};
use bytes::Bytes;
use futures::sync::{mpsc, oneshot};
use futures::Stream;
use futures::{Async, Future, Poll};
use range_set::{Range, RangeSet};
use std::cmp::{max, min};
use std::fs;
use std::io::{self, Read, Seek, SeekFrom, Write};