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

Fixed nightly conflict with

This commit is contained in:
Nick Mavis 2019-09-16 15:00:09 -04:00
parent 7cb551d66d
commit c19375c5ca
12 changed files with 32 additions and 32 deletions

View file

@ -1,9 +1,9 @@
use byteorder::{BigEndian, WriteBytesExt};
use std::io::Write;
use core::channel::ChannelData;
use core::session::Session;
use core::spotify_id::FileId;
use librespot_core::channel::ChannelData;
use librespot_core::session::Session;
use librespot_core::spotify_id::FileId;
pub fn get(session: &Session, file: FileId) -> ChannelData {
let (channel_id, channel) = session.channel().allocate();

View file

@ -3,7 +3,7 @@ extern crate futures;
extern crate linear_map;
extern crate protobuf;
extern crate librespot_core as core;
extern crate librespot_core;
extern crate librespot_protocol as protocol;
pub mod cover;
@ -11,9 +11,9 @@ pub mod cover;
use futures::Future;
use linear_map::LinearMap;
use core::mercury::MercuryError;
use core::session::Session;
use core::spotify_id::{FileId, SpotifyId};
use librespot_core::mercury::MercuryError;
use librespot_core::session::Session;
use librespot_core::spotify_id::{FileId, SpotifyId};
pub use protocol::metadata::AudioFile_Format as FileFormat;