Merge pull request #1194 from yubiuser/update_dependencies

Update dependencies
This commit is contained in:
Roderick van Domburg 2023-11-14 20:40:51 +01:00 committed by GitHub
commit 6c2ed2581c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 247 additions and 269 deletions

View file

@ -109,7 +109,7 @@ jobs:
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
toolchain: toolchain:
- "1.65" # MSRV (Minimum supported rust version) - "1.70" # MSRV (Minimum supported rust version)
- stable - stable
experimental: [false] experimental: [false]
# Ignore failures in beta # Ignore failures in beta
@ -163,7 +163,7 @@ jobs:
matrix: matrix:
os: [windows-latest] os: [windows-latest]
toolchain: toolchain:
- "1.65" # MSRV (Minimum supported rust version) - "1.70" # MSRV (Minimum supported rust version)
- stable - stable
steps: steps:
- name: Checkout code - name: Checkout code
@ -206,7 +206,7 @@ jobs:
os: [ubuntu-latest] os: [ubuntu-latest]
target: [armv7-unknown-linux-gnueabihf] target: [armv7-unknown-linux-gnueabihf]
toolchain: toolchain:
- "1.65" # MSRV (Minimum supported rust version) - "1.70" # MSRV (Minimum supported rust version)
- stable - stable
steps: steps:
- name: Checkout code - name: Checkout code

View file

@ -41,7 +41,7 @@ https://github.com/librespot-org/librespot
configurations. configurations.
- [audio] Files are now downloaded over the HTTPS CDN (breaking) - [audio] Files are now downloaded over the HTTPS CDN (breaking)
- [audio] Improve file opening and seeking performance (breaking) - [audio] Improve file opening and seeking performance (breaking)
- [core] MSRV is now 1.65 (breaking) - [core] MSRV is now 1.70 (breaking)
- [connect] `DeviceType` moved out of `connect` into `core` (breaking) - [connect] `DeviceType` moved out of `connect` into `core` (breaking)
- [connect] Update and expose all `spirc` context fields (breaking) - [connect] Update and expose all `spirc` context fields (breaking)
- [connect] Add `Clone, Defaut` traits to `spirc` contexts - [connect] Add `Clone, Defaut` traits to `spirc` contexts

500
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -22,7 +22,7 @@ dns-sd = { version = "0.1", optional = true }
form_urlencoded = "1.0" form_urlencoded = "1.0"
futures-core = "0.3" futures-core = "0.3"
futures-util = { version = "0.3", features = ["alloc", "bilock", "sink", "unstable"] } futures-util = { version = "0.3", features = ["alloc", "bilock", "sink", "unstable"] }
governor = { version = "0.5", default-features = false, features = ["std", "jitter"] } governor = { version = "0.6", default-features = false, features = ["std", "jitter"] }
hex = "0.4" hex = "0.4"
hmac = "0.12" hmac = "0.12"
httparse = "1.7" httparse = "1.7"
@ -33,7 +33,7 @@ hyper-rustls = { version = "0.24", features = ["http2"] }
log = "0.4" log = "0.4"
nonzero_ext = "0.3" nonzero_ext = "0.3"
num-bigint = { version = "0.4", features = ["rand"] } num-bigint = { version = "0.4", features = ["rand"] }
num-derive = "0.3" num-derive = "0.4"
num-integer = "0.1" num-integer = "0.1"
num-traits = "0.2" num-traits = "0.2"
once_cell = "1" once_cell = "1"
@ -41,7 +41,7 @@ parking_lot = { version = "0.12", features = ["deadlock_detection"] }
pbkdf2 = { version = "0.12", default-features = false, features = ["hmac"] } pbkdf2 = { version = "0.12", default-features = false, features = ["hmac"] }
priority-queue = "1.2" priority-queue = "1.2"
protobuf = "3" protobuf = "3"
quick-xml = { version = "0.29", features = ["serialize"] } quick-xml = { version = "0.30", features = ["serialize"] }
rand = "0.8" rand = "0.8"
rsa = "0.9.2" rsa = "0.9.2"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }

View file

@ -40,7 +40,7 @@ sdl2 = { version = "0.35", optional = true }
gstreamer = { version = "0.20", optional = true } gstreamer = { version = "0.20", optional = true }
gstreamer-app = { version = "0.20", optional = true } gstreamer-app = { version = "0.20", optional = true }
gstreamer-audio = { version = "0.20", optional = true } gstreamer-audio = { version = "0.20", optional = true }
glib = { version = "0.17", optional = true } glib = { version = "0.18.1", optional = true }
# Rodio dependencies # Rodio dependencies
rodio = { version = "0.17.1", optional = true, default-features = false } rodio = { version = "0.17.1", optional = true, default-features = false }