Skip to content

Commit

Permalink
Migrated audio crate to futures 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannesd3 committed Jan 25, 2021
1 parent 424ba3a commit 80d384e
Show file tree
Hide file tree
Showing 4 changed files with 415 additions and 364 deletions.
9 changes: 5 additions & 4 deletions audio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@ path = "../core"
version = "0.1.3"

[dependencies]
aes-ctr = "0.6"
bit-set = "0.5"
byteorder = "1.3"
bytes = "0.4"
futures = "0.1"
byteorder = "1.4"
bytes = "1.0"
futures = "0.3"
lewton = "0.9"
log = "0.4"
num-bigint = "0.3"
num-traits = "0.2"
pin-project = "1.0"
tempfile = "3.1"
aes-ctr = "0.3"

librespot-tremor = { version = "0.1.0", optional = true }
vorbis = { version ="0.0.14", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions audio/src/decrypt.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::io;

use aes_ctr::stream_cipher::generic_array::GenericArray;
use aes_ctr::stream_cipher::{NewStreamCipher, SyncStreamCipher, SyncStreamCipherSeek};
use aes_ctr::cipher::generic_array::GenericArray;
use aes_ctr::cipher::{NewStreamCipher, SyncStreamCipher, SyncStreamCipherSeek};
use aes_ctr::Aes128Ctr;

use librespot_core::audio_key::AudioKey;
Expand Down
Loading

0 comments on commit 80d384e

Please sign in to comment.