Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

update Cargo.lock

+52
+52
Cargo.lock
··· 1357 1357 source = "registry+https://github.com/rust-lang/crates.io-index" 1358 1358 checksum = "af68112f5c60196495c8b0eea68349817855f565df5b04b2477916d09fb1a901" 1359 1359 dependencies = [ 1360 + "custom_debug", 1361 + "dbus", 1362 + "dbus-crossroads", 1363 + "dbus-tokio", 1364 + "displaydoc", 1360 1365 "futures", 1361 1366 "hex", 1367 + "lazy_static", 1362 1368 "libc", 1363 1369 "log", 1364 1370 "macaddr", 1365 1371 "nix 0.29.0", 1366 1372 "num-derive", 1367 1373 "num-traits", 1374 + "pin-project", 1368 1375 "serde", 1369 1376 "serde_json", 1370 1377 "strum 0.26.3", 1371 1378 "tokio", 1379 + "tokio-stream", 1372 1380 "uuid", 1373 1381 ] 1374 1382 ··· 2219 2227 ] 2220 2228 2221 2229 [[package]] 2230 + name = "custom_debug" 2231 + version = "0.6.2" 2232 + source = "registry+https://github.com/rust-lang/crates.io-index" 2233 + checksum = "2da7d1ad9567b3e11e877f1d7a0fa0360f04162f94965fc4448fbed41a65298e" 2234 + dependencies = [ 2235 + "custom_debug_derive", 2236 + ] 2237 + 2238 + [[package]] 2239 + name = "custom_debug_derive" 2240 + version = "0.6.2" 2241 + source = "registry+https://github.com/rust-lang/crates.io-index" 2242 + checksum = "a707ceda8652f6c7624f2be725652e9524c815bf3b9d55a0b2320be2303f9c11" 2243 + dependencies = [ 2244 + "darling 0.20.10", 2245 + "proc-macro2", 2246 + "quote", 2247 + "syn 2.0.91", 2248 + "synstructure 0.13.1", 2249 + ] 2250 + 2251 + [[package]] 2222 2252 name = "d3d12" 2223 2253 version = "0.20.0" 2224 2254 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2329 2359 source = "registry+https://github.com/rust-lang/crates.io-index" 2330 2360 checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" 2331 2361 dependencies = [ 2362 + "futures-channel", 2363 + "futures-util", 2332 2364 "libc", 2333 2365 "libdbus-sys", 2334 2366 "winapi", 2367 + ] 2368 + 2369 + [[package]] 2370 + name = "dbus-crossroads" 2371 + version = "0.5.3" 2372 + source = "registry+https://github.com/rust-lang/crates.io-index" 2373 + checksum = "64bff0bd181fba667660276c6b7ebdc50cff37ce593e7adf9e734f89c8f444e8" 2374 + dependencies = [ 2375 + "dbus", 2376 + ] 2377 + 2378 + [[package]] 2379 + name = "dbus-tokio" 2380 + version = "0.7.6" 2381 + source = "registry+https://github.com/rust-lang/crates.io-index" 2382 + checksum = "007688d459bc677131c063a3a77fb899526e17b7980f390b69644bdbc41fad13" 2383 + dependencies = [ 2384 + "dbus", 2385 + "libc", 2386 + "tokio", 2335 2387 ] 2336 2388 2337 2389 [[package]]