1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 02:09:26 +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

@ -6,7 +6,7 @@ use aes_ctr::stream_cipher::{
};
use aes_ctr::stream_cipher::generic_array::GenericArray;
use core::audio_key::AudioKey;
use librespot_core::audio_key::AudioKey;
const AUDIO_AESIV: [u8; 16] = [
0x72, 0xe0, 0x67, 0xfb, 0xdd, 0xcb, 0xcf, 0x77,

View file

@ -9,9 +9,9 @@ use std::io::{self, Read, Seek, SeekFrom, Write};
use std::sync::{Arc, Condvar, Mutex};
use tempfile::NamedTempFile;
use core::channel::{Channel, ChannelData, ChannelError, ChannelHeaders};
use core::session::Session;
use core::spotify_id::FileId;
use librespot_core::channel::{Channel, ChannelData, ChannelError, ChannelHeaders};
use librespot_core::session::Session;
use librespot_core::spotify_id::FileId;
const CHUNK_SIZE: usize = 0x20000;

View file

@ -10,7 +10,7 @@ extern crate num_traits;
extern crate tempfile;
extern crate aes_ctr;
extern crate librespot_core as core;
extern crate librespot_core;
mod decrypt;
mod fetch;