1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-03 01:39:28 +02:00

fix: downgrade sysinfo for MSRV constraints

This commit is contained in:
Roderick van Domburg 2025-08-13 17:22:37 +02:00
parent 445f8b10a2
commit c4766ceb99
No known key found for this signature in database
GPG key ID: 607FA06CB5236AE0
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View file

@ -3821,9 +3821,9 @@ dependencies = [
[[package]] [[package]]
name = "sysinfo" name = "sysinfo"
version = "0.37.0" version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07cec4dc2d2e357ca1e610cfb07de2fa7a10fc3e9fe89f72545f3d244ea87753" checksum = "252800745060e7b9ffb7b2badbd8b31cfa4aa2e61af879d0a3bf2a317c20217d"
dependencies = [ dependencies = [
"libc", "libc",
"memchr", "memchr",

View file

@ -65,7 +65,7 @@ futures-util = { version = "0.3", default-features = false }
getopts = "0.2" getopts = "0.2"
log = "0.4" log = "0.4"
sha1 = "0.10" sha1 = "0.10"
sysinfo = { version = "0.37", default-features = false, features = ["system"] } sysinfo = { version = "0.36", default-features = false, features = ["system"] }
thiserror = "2" thiserror = "2"
tokio = { version = "1", features = [ tokio = { version = "1", features = [
"rt", "rt",

View file

@ -58,7 +58,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
sha1 = { version = "0.10", features = ["oid"] } sha1 = { version = "0.10", features = ["oid"] }
shannon = "0.2" shannon = "0.2"
sysinfo = { version = "0.37", default-features = false, features = ["system"] } sysinfo = { version = "0.36", default-features = false, features = ["system"] }
thiserror = "2" thiserror = "2"
time = { version = "0.3", features = ["formatting", "parsing"] } time = { version = "0.3", features = ["formatting", "parsing"] }
tokio = { version = "1", features = [ tokio = { version = "1", features = [