mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-03 01:39:28 +02:00
Bump deps
This bumps deps that don't need major code refactoring or MSRV bumps.
This commit is contained in:
parent
5568c70cd1
commit
c03d3ad102
7 changed files with 64 additions and 50 deletions
|
@ -31,7 +31,7 @@ num-integer = "0.1"
|
|||
num-traits = "0.2"
|
||||
once_cell = "1.5.2"
|
||||
pbkdf2 = { version = "0.8", default-features = false, features = ["hmac"] }
|
||||
priority-queue = "1.1"
|
||||
priority-queue = "1.2"
|
||||
protobuf = "2.14.0"
|
||||
rand = "0.8"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
@ -41,14 +41,14 @@ shannon = "0.2.0"
|
|||
thiserror = "1.0.7"
|
||||
tokio = { version = "1.0", features = ["io-util", "net", "rt", "sync"] }
|
||||
tokio-stream = "0.1.1"
|
||||
tokio-util = { version = "0.6", features = ["codec"] }
|
||||
tokio-util = { version = "0.7", features = ["codec"] }
|
||||
url = "2.1"
|
||||
uuid = { version = "0.8", default-features = false, features = ["v4"] }
|
||||
uuid = { version = "1.0", default-features = false, features = ["v4"] }
|
||||
|
||||
[build-dependencies]
|
||||
rand = "0.8"
|
||||
vergen = "3.0.4"
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.8"
|
||||
env_logger = "0.9"
|
||||
tokio = {version = "1.0", features = ["macros"] }
|
||||
|
|
|
@ -12,7 +12,7 @@ pub struct SessionConfig {
|
|||
|
||||
impl Default for SessionConfig {
|
||||
fn default() -> SessionConfig {
|
||||
let device_id = uuid::Uuid::new_v4().to_hyphenated().to_string();
|
||||
let device_id = uuid::Uuid::new_v4().as_hyphenated().to_string();
|
||||
SessionConfig {
|
||||
user_agent: crate::version::VERSION_STRING.to_string(),
|
||||
device_id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue