lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
ff71e259 b5f6513d

+1034 -659
+5 -4
pkgs/applications/emulators/86box/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, cmake, pkg-config, makeWrapper, freetype, SDL2 2 2 , glib, pcre2, openal, rtmidi, fluidsynth, jack2, alsa-lib, qt5, libvncserver 3 - , discord-gamesdk, libpcap 3 + , discord-gamesdk, libpcap, libslirp 4 4 5 5 , enableDynarec ? with stdenv.hostPlatform; isx86 || isAarch 6 6 , enableNewDynarec ? enableDynarec && stdenv.hostPlatform.isAarch ··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "86Box"; 13 - version = "3.11"; 13 + version = "4.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "86Box"; 17 17 repo = "86Box"; 18 18 rev = "v${version}"; 19 - hash = "sha256-n3Q/NUiaC6/EZyBUn6jUomnQCqr8tvYKPI5JrRRFScI="; 19 + hash = "sha256-VTfYCVEbArcYVzh3NkX1yBXhtRnGZ/+khk0KG42fs24="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ ··· 28 28 29 29 buildInputs = [ 30 30 freetype 31 + fluidsynth 31 32 SDL2 32 33 glib 33 34 openal ··· 35 36 pcre2 36 37 jack2 37 38 libpcap 39 + libslirp 38 40 qt5.qtbase 39 41 qt5.qttools 40 42 ] ++ lib.optional stdenv.isLinux alsa-lib ··· 60 62 postFixup = let 61 63 libPath = lib.makeLibraryPath ([ 62 64 libpcap 63 - fluidsynth 64 65 ] ++ lib.optional unfreeEnableDiscord discord-gamesdk); 65 66 libPathVar = if stdenv.isDarwin then "DYLD_LIBRARY_PATH" else "LD_LIBRARY_PATH"; 66 67 in
+2 -7
pkgs/applications/file-managers/nnn/default.nix
··· 24 24 25 25 stdenv.mkDerivation (finalAttrs: { 26 26 pname = "nnn"; 27 - version = "4.8"; 27 + version = "4.9"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "jarun"; 31 31 repo = "nnn"; 32 32 rev = "v${finalAttrs.version}"; 33 - hash = "sha256-QbKW2wjhUNej3zoX18LdeUHqjNLYhEKyvPH2MXzp/iQ="; 33 + hash = "sha256-g19uI36HyzTF2YUQKFP4DE2ZBsArGryVHhX79Y0XzhU="; 34 34 }; 35 35 36 36 patches = [ ··· 38 38 # By default, nnn expects the macOS default file command, not the one provided by Nix. 39 39 # However, both commands use different arguments to obtain the MIME type. 40 40 ./darwin-fix-file-mime-opts.patch 41 - # FIXME: remove for next release 42 - (fetchpatch { 43 - url = "https://github.com/jarun/nnn/commit/20e944f5e597239ed491c213a634eef3d5be735e.patch"; 44 - hash = "sha256-RxG3AU8i3lRPCjRVZPnej4m1No/SKtsHwbghj9JQ7RQ="; 45 - }) 46 41 ]; 47 42 48 43 configFile = lib.optionalString (conf != null) (builtins.toFile "nnn.h" conf);
+7 -6
pkgs/applications/misc/bemenu/default.nix
··· 5 5 , x11Support ? true, xorg 6 6 }: 7 7 8 - stdenv.mkDerivation rec { 8 + stdenv.mkDerivation (finalAttrs: { 9 9 pname = "bemenu"; 10 - version = "0.6.15"; 10 + version = "0.6.16"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "Cloudef"; 14 - repo = pname; 15 - rev = version; 16 - sha256 = "sha256-gdeNaqtxqxBtG9bkxozPE/DLQgLqCt1vh2A2WmgNn7w="; 14 + repo = finalAttrs.pname; 15 + rev = finalAttrs.version; 16 + sha256 = "sha256-K9a9BUodpKwvEOhnF2/TGo5zLm7F9RzqSCcWzuhKcWA="; 17 17 }; 18 18 19 19 strictDeps = true; ··· 45 45 description = "Dynamic menu library and client program inspired by dmenu"; 46 46 license = licenses.gpl3Plus; 47 47 maintainers = with maintainers; [ lheckemann ]; 48 + mainProgram = "bemenu"; 48 49 platforms = with platforms; linux; 49 50 }; 50 - } 51 + })
+3 -3
pkgs/applications/window-managers/nimdow/default.nix
··· 1 1 { lib, fetchFromGitHub, nimPackages, libX11, libXft, libXinerama }: 2 2 nimPackages.buildNimPackage rec { 3 3 pname = "nimdow"; 4 - version = "0.7.36"; 5 4 5 + version = "0.7.37"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "avahe-kellenberger"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-+36wxKgboOd3HvGnD555WySzJWGL39DaFXmIaFYtSN8="; 11 + hash = "sha256-930wDS0UW65QzpUHHOuM25oi/OhFmG0Q7N05ftu7XlI="; 12 12 }; 13 13 14 14 15 - buildInputs = with nimPackages; [ parsetoml x11 safeset libX11 libXft libXinerama ]; 15 + buildInputs = with nimPackages; [ parsetoml x11 safeseq safeset libX11 libXft libXinerama ]; 16 16 17 17 postInstall = '' 18 18 install -D config.default.toml $out/share/nimdow/config.default.toml
+2 -2
pkgs/development/libraries/exempi/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "exempi"; 5 - version = "2.6.3"; 5 + version = "2.6.4"; 6 6 7 7 src = fetchurl { 8 8 url = "https://libopenraw.freedesktop.org/download/${pname}-${version}.tar.bz2"; 9 - sha256 = "sha256-sHSdsYqeeM93FzeVSoOM3NsdVBWIi6wbqcr4y6d8ZWw="; 9 + sha256 = "sha256-p1FJyWth45zcsEb9XlbYjP7qtuCPiU4V6//ZlECSv9A="; 10 10 }; 11 11 12 12 configureFlags = [
+820 -540
pkgs/development/libraries/gstreamer/rs/Cargo.lock
··· 61 61 ] 62 62 63 63 [[package]] 64 - name = "ahash" 65 - version = "0.7.6" 66 - source = "registry+https://github.com/rust-lang/crates.io-index" 67 - checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 68 - dependencies = [ 69 - "getrandom", 70 - "once_cell", 71 - "version_check", 72 - ] 73 - 74 - [[package]] 75 64 name = "aho-corasick" 76 - version = "1.0.2" 65 + version = "1.0.3" 77 66 source = "registry+https://github.com/rust-lang/crates.io-index" 78 - checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 67 + checksum = "86b8f9420f797f2d9e935edf629310eb938a0d839f984e25327f3c7eed22300c" 79 68 dependencies = [ 80 69 "memchr", 81 70 ] ··· 136 125 137 126 [[package]] 138 127 name = "anstyle-wincon" 139 - version = "1.0.1" 128 + version = "1.0.2" 140 129 source = "registry+https://github.com/rust-lang/crates.io-index" 141 - checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 130 + checksum = "c677ab05e09154296dd37acecd46420c17b9713e8366facafa8fc0885167cf4c" 142 131 dependencies = [ 143 132 "anstyle", 144 133 "windows-sys", ··· 197 186 dependencies = [ 198 187 "proc-macro2", 199 188 "quote", 200 - "syn 2.0.26", 189 + "syn 2.0.28", 190 + ] 191 + 192 + [[package]] 193 + name = "async-stream" 194 + version = "0.3.5" 195 + source = "registry+https://github.com/rust-lang/crates.io-index" 196 + checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 197 + dependencies = [ 198 + "async-stream-impl", 199 + "futures-core", 200 + "pin-project-lite", 201 + ] 202 + 203 + [[package]] 204 + name = "async-stream-impl" 205 + version = "0.3.5" 206 + source = "registry+https://github.com/rust-lang/crates.io-index" 207 + checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 208 + dependencies = [ 209 + "proc-macro2", 210 + "quote", 211 + "syn 2.0.28", 201 212 ] 202 213 203 214 [[package]] ··· 208 219 209 220 [[package]] 210 221 name = "async-trait" 211 - version = "0.1.71" 222 + version = "0.1.72" 212 223 source = "registry+https://github.com/rust-lang/crates.io-index" 213 - checksum = "a564d521dd56509c4c47480d00b80ee55f7e385ae48db5744c67ad50c92d2ebf" 224 + checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09" 214 225 dependencies = [ 215 226 "proc-macro2", 216 227 "quote", 217 - "syn 2.0.26", 228 + "syn 2.0.28", 218 229 ] 219 230 220 231 [[package]] 221 232 name = "async-tungstenite" 222 - version = "0.22.2" 233 + version = "0.23.0" 223 234 source = "registry+https://github.com/rust-lang/crates.io-index" 224 - checksum = "ce01ac37fdc85f10a43c43bc582cbd566720357011578a935761075f898baf58" 235 + checksum = "a1e9efbe14612da0a19fb983059a0b621e9cf6225d7018ecab4f9988215540dc" 225 236 dependencies = [ 226 237 "futures-io", 227 238 "futures-util", ··· 230 241 "pin-project-lite", 231 242 "tokio", 232 243 "tokio-native-tls", 233 - "tungstenite", 244 + "tungstenite 0.20.0", 234 245 ] 235 246 236 247 [[package]] ··· 274 285 275 286 [[package]] 276 287 name = "aws-config" 277 - version = "0.55.3" 288 + version = "0.56.0" 278 289 source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "bcdcf0d683fe9c23d32cf5b53c9918ea0a500375a9fb20109802552658e576c9" 290 + checksum = "de3d533e0263bf453cc80af4c8bcc4d64e2aca293bd16f81633a36f1bf4a97cb" 280 291 dependencies = [ 281 292 "aws-credential-types", 282 293 "aws-http", ··· 290 301 "aws-smithy-types", 291 302 "aws-types", 292 303 "bytes", 293 - "fastrand 1.9.0", 304 + "fastrand", 294 305 "hex", 295 306 "http", 296 307 "hyper", 297 308 "ring", 298 - "time 0.3.20", 309 + "time 0.3.25", 299 310 "tokio", 300 311 "tower", 301 312 "tracing", ··· 304 315 305 316 [[package]] 306 317 name = "aws-credential-types" 307 - version = "0.55.3" 318 + version = "0.56.0" 308 319 source = "registry+https://github.com/rust-lang/crates.io-index" 309 - checksum = "1fcdb2f7acbc076ff5ad05e7864bdb191ca70a6fd07668dc3a1a8bcd051de5ae" 320 + checksum = "e4834ba01c5ad1ed9740aa222de62190e3c565d11ab7e72cc68314a258994567" 310 321 dependencies = [ 311 322 "aws-smithy-async", 312 323 "aws-smithy-types", 313 - "fastrand 1.9.0", 324 + "fastrand", 314 325 "tokio", 315 326 "tracing", 316 327 "zeroize", 317 328 ] 318 329 319 330 [[package]] 320 - name = "aws-endpoint" 321 - version = "0.55.3" 331 + name = "aws-http" 332 + version = "0.56.0" 322 333 source = "registry+https://github.com/rust-lang/crates.io-index" 323 - checksum = "8cce1c41a6cfaa726adee9ebb9a56fcd2bbfd8be49fd8a04c5e20fd968330b04" 334 + checksum = "72badf9de83cc7d66b21b004f09241836823b8302afb25a24708769e576a8d8f" 324 335 dependencies = [ 336 + "aws-credential-types", 325 337 "aws-smithy-http", 326 338 "aws-smithy-types", 327 339 "aws-types", 340 + "bytes", 341 + "http", 342 + "http-body", 343 + "lazy_static", 344 + "percent-encoding", 345 + "pin-project-lite", 346 + "tracing", 347 + ] 348 + 349 + [[package]] 350 + name = "aws-runtime" 351 + version = "0.56.0" 352 + source = "registry+https://github.com/rust-lang/crates.io-index" 353 + checksum = "cf832f522111225c02547e1e1c28137e840e4b082399d93a236e4b29193a4667" 354 + dependencies = [ 355 + "aws-credential-types", 356 + "aws-http", 357 + "aws-sigv4", 358 + "aws-smithy-async", 359 + "aws-smithy-eventstream", 360 + "aws-smithy-http", 361 + "aws-smithy-runtime-api", 362 + "aws-smithy-types", 363 + "aws-types", 364 + "fastrand", 365 + "http", 366 + "percent-encoding", 367 + "tracing", 368 + "uuid", 369 + ] 370 + 371 + [[package]] 372 + name = "aws-sdk-kinesisvideo" 373 + version = "0.29.0" 374 + source = "registry+https://github.com/rust-lang/crates.io-index" 375 + checksum = "5d12ca8af73af5453ecde2a4cc3df43eb6d623552bd3899692bfc92c6ddd1463" 376 + dependencies = [ 377 + "aws-credential-types", 378 + "aws-http", 379 + "aws-runtime", 380 + "aws-smithy-async", 381 + "aws-smithy-client", 382 + "aws-smithy-http", 383 + "aws-smithy-json", 384 + "aws-smithy-runtime", 385 + "aws-smithy-runtime-api", 386 + "aws-smithy-types", 387 + "aws-types", 388 + "bytes", 328 389 "http", 329 390 "regex", 391 + "tokio-stream", 330 392 "tracing", 331 393 ] 332 394 333 395 [[package]] 334 - name = "aws-http" 335 - version = "0.55.3" 396 + name = "aws-sdk-kinesisvideosignaling" 397 + version = "0.29.0" 336 398 source = "registry+https://github.com/rust-lang/crates.io-index" 337 - checksum = "aadbc44e7a8f3e71c8b374e03ecd972869eb91dd2bc89ed018954a52ba84bc44" 399 + checksum = "e4d880336d747d5207a74b656d8a229401142598fa36cab9163ac221946d517d" 338 400 dependencies = [ 339 401 "aws-credential-types", 402 + "aws-http", 403 + "aws-runtime", 404 + "aws-smithy-async", 405 + "aws-smithy-client", 340 406 "aws-smithy-http", 407 + "aws-smithy-json", 408 + "aws-smithy-runtime", 409 + "aws-smithy-runtime-api", 341 410 "aws-smithy-types", 342 411 "aws-types", 343 412 "bytes", 344 413 "http", 345 - "http-body", 346 - "lazy_static", 347 - "percent-encoding", 348 - "pin-project-lite", 414 + "regex", 349 415 "tracing", 350 416 ] 351 417 352 418 [[package]] 353 419 name = "aws-sdk-s3" 354 - version = "0.28.0" 420 + version = "0.29.0" 355 421 source = "registry+https://github.com/rust-lang/crates.io-index" 356 - checksum = "fba197193cbb4bcb6aad8d99796b2291f36fa89562ded5d4501363055b0de89f" 422 + checksum = "1e30370b61599168d38190ad272bb91842cd81870a6ca035c05dd5726d22832c" 357 423 dependencies = [ 358 424 "aws-credential-types", 359 - "aws-endpoint", 360 425 "aws-http", 361 - "aws-sig-auth", 426 + "aws-runtime", 362 427 "aws-sigv4", 363 428 "aws-smithy-async", 364 429 "aws-smithy-checksums", 365 430 "aws-smithy-client", 366 431 "aws-smithy-eventstream", 367 432 "aws-smithy-http", 368 - "aws-smithy-http-tower", 369 433 "aws-smithy-json", 434 + "aws-smithy-runtime", 435 + "aws-smithy-runtime-api", 370 436 "aws-smithy-types", 371 437 "aws-smithy-xml", 372 438 "aws-types", ··· 377 443 "percent-encoding", 378 444 "regex", 379 445 "tokio-stream", 380 - "tower", 381 446 "tracing", 382 447 "url", 383 448 ] 384 449 385 450 [[package]] 386 451 name = "aws-sdk-sso" 387 - version = "0.28.0" 452 + version = "0.29.0" 388 453 source = "registry+https://github.com/rust-lang/crates.io-index" 389 - checksum = "c8b812340d86d4a766b2ca73f740dfd47a97c2dff0c06c8517a16d88241957e4" 454 + checksum = "f41bf2c28d32dbb9894a8fcfcb148265d034d3f4a170552a47553a09de890895" 390 455 dependencies = [ 391 456 "aws-credential-types", 392 - "aws-endpoint", 393 457 "aws-http", 394 - "aws-sig-auth", 458 + "aws-runtime", 395 459 "aws-smithy-async", 396 460 "aws-smithy-client", 397 461 "aws-smithy-http", 398 - "aws-smithy-http-tower", 399 462 "aws-smithy-json", 463 + "aws-smithy-runtime", 464 + "aws-smithy-runtime-api", 400 465 "aws-smithy-types", 401 466 "aws-types", 402 467 "bytes", 403 468 "http", 404 469 "regex", 405 470 "tokio-stream", 406 - "tower", 407 471 "tracing", 408 472 ] 409 473 410 474 [[package]] 411 475 name = "aws-sdk-sts" 412 - version = "0.28.0" 476 + version = "0.29.0" 413 477 source = "registry+https://github.com/rust-lang/crates.io-index" 414 - checksum = "265fac131fbfc188e5c3d96652ea90ecc676a934e3174eaaee523c6cec040b3b" 478 + checksum = "79e21aa1a5b0853969a1ef96ccfaa8ff5d57c761549786a4d5f86c1902b2586a" 415 479 dependencies = [ 416 480 "aws-credential-types", 417 - "aws-endpoint", 418 481 "aws-http", 419 - "aws-sig-auth", 482 + "aws-runtime", 420 483 "aws-smithy-async", 421 484 "aws-smithy-client", 422 485 "aws-smithy-http", 423 - "aws-smithy-http-tower", 424 486 "aws-smithy-json", 425 487 "aws-smithy-query", 488 + "aws-smithy-runtime", 489 + "aws-smithy-runtime-api", 426 490 "aws-smithy-types", 427 491 "aws-smithy-xml", 428 492 "aws-types", 493 + "http", 494 + "regex", 495 + "tracing", 496 + ] 497 + 498 + [[package]] 499 + name = "aws-sdk-transcribestreaming" 500 + version = "0.29.0" 501 + source = "registry+https://github.com/rust-lang/crates.io-index" 502 + checksum = "12669c64c03c04e207ff14994791a3a508ae4dc55b0b73f31182171d19b04989" 503 + dependencies = [ 504 + "aws-credential-types", 505 + "aws-http", 506 + "aws-runtime", 507 + "aws-sigv4", 508 + "aws-smithy-async", 509 + "aws-smithy-client", 510 + "aws-smithy-eventstream", 511 + "aws-smithy-http", 512 + "aws-smithy-json", 513 + "aws-smithy-runtime", 514 + "aws-smithy-runtime-api", 515 + "aws-smithy-types", 516 + "aws-types", 429 517 "bytes", 430 518 "http", 519 + "hyper", 431 520 "regex", 432 - "tower", 433 521 "tracing", 434 522 ] 435 523 436 524 [[package]] 437 - name = "aws-sdk-transcribe" 438 - version = "0.28.0" 525 + name = "aws-sdk-translate" 526 + version = "0.29.0" 439 527 source = "registry+https://github.com/rust-lang/crates.io-index" 440 - checksum = "f6b561d56e7989062837c92f3cee6802f1b9cdb81b248bcc47790e38de1b96ab" 528 + checksum = "336147dbb8f9d406dea0bbe5ef057ec4761d4134e7c8eb915db503d7081c6da7" 441 529 dependencies = [ 442 530 "aws-credential-types", 443 - "aws-endpoint", 444 531 "aws-http", 445 - "aws-sig-auth", 532 + "aws-runtime", 446 533 "aws-smithy-async", 447 534 "aws-smithy-client", 448 535 "aws-smithy-http", 449 - "aws-smithy-http-tower", 450 536 "aws-smithy-json", 537 + "aws-smithy-runtime", 538 + "aws-smithy-runtime-api", 451 539 "aws-smithy-types", 452 540 "aws-types", 453 541 "bytes", 542 + "fastrand", 454 543 "http", 455 544 "regex", 456 545 "tokio-stream", 457 - "tower", 458 546 "tracing", 459 547 ] 460 548 461 549 [[package]] 462 550 name = "aws-sig-auth" 463 - version = "0.55.3" 551 + version = "0.56.0" 464 552 source = "registry+https://github.com/rust-lang/crates.io-index" 465 - checksum = "3b94acb10af0c879ecd5c7bdf51cda6679a0a4f4643ce630905a77673bfa3c61" 553 + checksum = "d861c220cd86e3d3e84b8fabddd6b7c29fbd8234715ebb71e063a64689d66bc0" 466 554 dependencies = [ 467 555 "aws-credential-types", 468 556 "aws-sigv4", 469 - "aws-smithy-eventstream", 557 + "aws-smithy-async", 470 558 "aws-smithy-http", 471 559 "aws-types", 472 560 "http", ··· 475 563 476 564 [[package]] 477 565 name = "aws-sigv4" 478 - version = "0.55.3" 566 + version = "0.56.0" 479 567 source = "registry+https://github.com/rust-lang/crates.io-index" 480 - checksum = "9d2ce6f507be68e968a33485ced670111d1cbad161ddbbab1e313c03d37d8f4c" 568 + checksum = "2cb40a93429794065f41f0581734fc56a345f6a38d8e2e3c25c7448d930cd132" 481 569 dependencies = [ 482 570 "aws-smithy-eventstream", 483 571 "aws-smithy-http", ··· 490 578 "percent-encoding", 491 579 "regex", 492 580 "sha2", 493 - "time 0.3.20", 581 + "time 0.3.25", 494 582 "tracing", 495 583 ] 496 584 497 585 [[package]] 498 586 name = "aws-smithy-async" 499 - version = "0.55.3" 587 + version = "0.56.0" 500 588 source = "registry+https://github.com/rust-lang/crates.io-index" 501 - checksum = "13bda3996044c202d75b91afeb11a9afae9db9a721c6a7a427410018e286b880" 589 + checksum = "6ee6d17d487c8b579423067718b3580c0908d0f01d7461813f94ec4323bad623" 502 590 dependencies = [ 503 591 "futures-util", 504 592 "pin-project-lite", ··· 508 596 509 597 [[package]] 510 598 name = "aws-smithy-checksums" 511 - version = "0.55.3" 599 + version = "0.56.0" 512 600 source = "registry+https://github.com/rust-lang/crates.io-index" 513 - checksum = "07ed8b96d95402f3f6b8b57eb4e0e45ee365f78b1a924faf20ff6e97abf1eae6" 601 + checksum = "0d1849fd5916904513fb0862543b36f8faab43c07984dbc476132b7da1aed056" 514 602 dependencies = [ 515 603 "aws-smithy-http", 516 604 "aws-smithy-types", ··· 529 617 530 618 [[package]] 531 619 name = "aws-smithy-client" 532 - version = "0.55.3" 620 + version = "0.56.0" 533 621 source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "0a86aa6e21e86c4252ad6a0e3e74da9617295d8d6e374d552be7d3059c41cedd" 622 + checksum = "bdbe0a3ad15283cc5f863a68cb6adc8e256e7c109c43c01bdd09be407219a1e9" 535 623 dependencies = [ 536 624 "aws-smithy-async", 537 625 "aws-smithy-http", 538 626 "aws-smithy-http-tower", 539 627 "aws-smithy-types", 540 628 "bytes", 541 - "fastrand 1.9.0", 629 + "fastrand", 542 630 "http", 543 631 "http-body", 544 632 "hyper", ··· 553 641 554 642 [[package]] 555 643 name = "aws-smithy-eventstream" 556 - version = "0.55.3" 644 + version = "0.56.0" 557 645 source = "registry+https://github.com/rust-lang/crates.io-index" 558 - checksum = "460c8da5110835e3d9a717c61f5556b20d03c32a1dec57f8fc559b360f733bb8" 646 + checksum = "a56afef1aa766f512b4970b4c3150b9bf2df8035939723830df4b30267e2d7cb" 559 647 dependencies = [ 560 648 "aws-smithy-types", 561 649 "bytes", ··· 564 652 565 653 [[package]] 566 654 name = "aws-smithy-http" 567 - version = "0.55.3" 655 + version = "0.56.0" 568 656 source = "registry+https://github.com/rust-lang/crates.io-index" 569 - checksum = "2b3b693869133551f135e1f2c77cb0b8277d9e3e17feaf2213f735857c4f0d28" 657 + checksum = "34dc313472d727f5ef44fdda93e668ebfe17380c99dee512c403e3ca51863bb9" 570 658 dependencies = [ 571 659 "aws-smithy-eventstream", 572 660 "aws-smithy-types", ··· 587 675 588 676 [[package]] 589 677 name = "aws-smithy-http-tower" 590 - version = "0.55.3" 678 + version = "0.56.0" 591 679 source = "registry+https://github.com/rust-lang/crates.io-index" 592 - checksum = "3ae4f6c5798a247fac98a867698197d9ac22643596dc3777f0c76b91917616b9" 680 + checksum = "1dd50fca5a4ea4ec3771689ee93bf06b32de02a80af01ed93a8f8a4ed90e8483" 593 681 dependencies = [ 594 682 "aws-smithy-http", 595 683 "aws-smithy-types", ··· 603 691 604 692 [[package]] 605 693 name = "aws-smithy-json" 606 - version = "0.55.3" 694 + version = "0.56.0" 607 695 source = "registry+https://github.com/rust-lang/crates.io-index" 608 - checksum = "23f9f42fbfa96d095194a632fbac19f60077748eba536eb0b9fecc28659807f8" 696 + checksum = "3591dd7c2fe01ab8025e4847a0a0f6d0c2b2269714688ffb856f9cf6c6d465cf" 609 697 dependencies = [ 610 698 "aws-smithy-types", 611 699 ] 612 700 613 701 [[package]] 614 702 name = "aws-smithy-query" 615 - version = "0.55.3" 703 + version = "0.56.0" 616 704 source = "registry+https://github.com/rust-lang/crates.io-index" 617 - checksum = "98819eb0b04020a1c791903533b638534ae6c12e2aceda3e6e6fba015608d51d" 705 + checksum = "dbabb1145e65dd57ae72d91a2619d3f5fba40b68a5f40ba009c30571dfd60aff" 618 706 dependencies = [ 619 707 "aws-smithy-types", 620 708 "urlencoding", 621 709 ] 622 710 623 711 [[package]] 712 + name = "aws-smithy-runtime" 713 + version = "0.56.0" 714 + source = "registry+https://github.com/rust-lang/crates.io-index" 715 + checksum = "3687fb838d4ad1c883b62eb59115bc9fb02c4f308aac49a7df89627067f6eb0d" 716 + dependencies = [ 717 + "aws-smithy-async", 718 + "aws-smithy-client", 719 + "aws-smithy-http", 720 + "aws-smithy-runtime-api", 721 + "aws-smithy-types", 722 + "bytes", 723 + "fastrand", 724 + "http", 725 + "http-body", 726 + "once_cell", 727 + "pin-project-lite", 728 + "pin-utils", 729 + "tokio", 730 + "tracing", 731 + ] 732 + 733 + [[package]] 734 + name = "aws-smithy-runtime-api" 735 + version = "0.56.0" 736 + source = "registry+https://github.com/rust-lang/crates.io-index" 737 + checksum = "5cfbf1e5c2108b41f5ca607cde40dd5109fecc448f5d30c8e614b61f36dce704" 738 + dependencies = [ 739 + "aws-smithy-async", 740 + "aws-smithy-http", 741 + "aws-smithy-types", 742 + "bytes", 743 + "http", 744 + "tokio", 745 + "tracing", 746 + ] 747 + 748 + [[package]] 624 749 name = "aws-smithy-types" 625 - version = "0.55.3" 750 + version = "0.56.0" 626 751 source = "registry+https://github.com/rust-lang/crates.io-index" 627 - checksum = "16a3d0bf4f324f4ef9793b86a1701d9700fbcdbd12a846da45eed104c634c6e8" 752 + checksum = "eed0a94eefd845a2a78677f1b72f02fa75802d38f7f59be675add140279aa8bf" 628 753 dependencies = [ 629 754 "base64-simd", 630 755 "itoa", 631 756 "num-integer", 632 757 "ryu", 633 - "time 0.3.20", 758 + "serde", 759 + "time 0.3.25", 634 760 ] 635 761 636 762 [[package]] 637 763 name = "aws-smithy-xml" 638 - version = "0.55.3" 764 + version = "0.56.0" 639 765 source = "registry+https://github.com/rust-lang/crates.io-index" 640 - checksum = "b1b9d12875731bd07e767be7baad95700c3137b56730ec9ddeedb52a5e5ca63b" 766 + checksum = "c88052c812f696143ad7ba729c63535209ff0e0f49e31a6d2b1205208ea6ea79" 641 767 dependencies = [ 642 768 "xmlparser", 643 769 ] 644 770 645 771 [[package]] 646 772 name = "aws-types" 647 - version = "0.55.3" 773 + version = "0.56.0" 648 774 source = "registry+https://github.com/rust-lang/crates.io-index" 649 - checksum = "6dd209616cc8d7bfb82f87811a5c655dc97537f592689b18743bddf5dc5c4829" 775 + checksum = "6bceb8cf724ad057ad7f327d0d256d7147b3eac777b39849a26189e003dc9782" 650 776 dependencies = [ 651 777 "aws-credential-types", 652 778 "aws-smithy-async", ··· 659 785 ] 660 786 661 787 [[package]] 662 - name = "backoff" 663 - version = "0.4.0" 664 - source = "registry+https://github.com/rust-lang/crates.io-index" 665 - checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" 666 - dependencies = [ 667 - "futures-core", 668 - "getrandom", 669 - "instant", 670 - "pin-project-lite", 671 - "rand", 672 - "tokio", 673 - ] 674 - 675 - [[package]] 676 788 name = "backtrace" 677 789 version = "0.3.68" 678 790 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 704 816 version = "0.21.2" 705 817 source = "registry+https://github.com/rust-lang/crates.io-index" 706 818 checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 819 + 820 + [[package]] 821 + name = "base64-serde" 822 + version = "0.7.0" 823 + source = "registry+https://github.com/rust-lang/crates.io-index" 824 + checksum = "ba368df5de76a5bea49aaf0cf1b39ccfbbef176924d1ba5db3e4135216cbe3c7" 825 + dependencies = [ 826 + "base64 0.21.2", 827 + "serde", 828 + ] 707 829 708 830 [[package]] 709 831 name = "base64-simd" ··· 817 939 818 940 [[package]] 819 941 name = "cairo-rs" 820 - version = "0.17.10" 821 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 942 + version = "0.18.1" 943 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 822 944 dependencies = [ 823 - "bitflags 1.3.2", 945 + "bitflags 2.3.3", 824 946 "cairo-sys-rs", 825 947 "glib", 826 948 "libc", ··· 830 952 831 953 [[package]] 832 954 name = "cairo-sys-rs" 833 - version = "0.17.10" 834 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 955 + version = "0.18.1" 956 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 835 957 dependencies = [ 836 958 "glib-sys", 837 959 "libc", ··· 852 974 853 975 [[package]] 854 976 name = "cc" 855 - version = "1.0.79" 977 + version = "1.0.82" 856 978 source = "registry+https://github.com/rust-lang/crates.io-index" 857 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 979 + checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" 858 980 dependencies = [ 859 981 "jobserver", 982 + "libc", 860 983 ] 861 984 862 985 [[package]] ··· 876 999 ] 877 1000 878 1001 [[package]] 1002 + name = "cea708-types" 1003 + version = "0.1.0" 1004 + source = "registry+https://github.com/rust-lang/crates.io-index" 1005 + checksum = "3a23ec736ab2aafb861ef6f22c662cbc18c85e73945f86bd9e936a20be7cc958" 1006 + dependencies = [ 1007 + "once_cell", 1008 + "tracing", 1009 + "tracing-subscriber", 1010 + ] 1011 + 1012 + [[package]] 879 1013 name = "cfg-expr" 880 - version = "0.15.3" 1014 + version = "0.15.4" 881 1015 source = "registry+https://github.com/rust-lang/crates.io-index" 882 - checksum = "215c0072ecc28f92eeb0eea38ba63ddfcb65c2828c46311d646f1a3ff5f9841c" 1016 + checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9" 883 1017 dependencies = [ 884 1018 "smallvec", 885 1019 "target-lexicon", ··· 901 1035 "iana-time-zone", 902 1036 "js-sys", 903 1037 "num-traits", 1038 + "serde", 904 1039 "time 0.1.45", 905 1040 "wasm-bindgen", 906 1041 "winapi", ··· 917 1052 918 1053 [[package]] 919 1054 name = "clap" 920 - version = "4.3.16" 1055 + version = "4.3.21" 921 1056 source = "registry+https://github.com/rust-lang/crates.io-index" 922 - checksum = "74bb1b4028935821b2d6b439bba2e970bdcf740832732437ead910c632e30d7d" 1057 + checksum = "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd" 923 1058 dependencies = [ 924 1059 "clap_builder", 925 1060 "clap_derive", ··· 928 1063 929 1064 [[package]] 930 1065 name = "clap_builder" 931 - version = "4.3.16" 1066 + version = "4.3.21" 932 1067 source = "registry+https://github.com/rust-lang/crates.io-index" 933 - checksum = "5ae467cbb0111869b765e13882a1dbbd6cb52f58203d8b80c44f667d4dd19843" 1068 + checksum = "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa" 934 1069 dependencies = [ 935 1070 "anstream", 936 1071 "anstyle", ··· 947 1082 "heck", 948 1083 "proc-macro2", 949 1084 "quote", 950 - "syn 2.0.26", 1085 + "syn 2.0.28", 951 1086 ] 952 1087 953 1088 [[package]] ··· 1004 1139 checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 1005 1140 dependencies = [ 1006 1141 "percent-encoding", 1007 - "time 0.3.20", 1142 + "time 0.3.25", 1008 1143 "version_check", 1009 1144 ] 1010 1145 ··· 1021 1156 "serde", 1022 1157 "serde_derive", 1023 1158 "serde_json", 1024 - "time 0.3.20", 1159 + "time 0.3.25", 1025 1160 "url", 1026 1161 ] 1027 1162 ··· 1060 1195 ] 1061 1196 1062 1197 [[package]] 1063 - name = "crc" 1064 - version = "3.0.1" 1065 - source = "registry+https://github.com/rust-lang/crates.io-index" 1066 - checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" 1067 - dependencies = [ 1068 - "crc-catalog", 1069 - ] 1070 - 1071 - [[package]] 1072 - name = "crc-catalog" 1073 - version = "2.2.0" 1074 - source = "registry+https://github.com/rust-lang/crates.io-index" 1075 - checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" 1076 - 1077 - [[package]] 1078 1198 name = "crc32c" 1079 - version = "0.6.3" 1199 + version = "0.6.4" 1080 1200 source = "registry+https://github.com/rust-lang/crates.io-index" 1081 - checksum = "3dfea2db42e9927a3845fb268a10a72faed6d416065f77873f05e411457c363e" 1201 + checksum = "d8f48d60e5b4d2c53d5c2b1d8a58c849a70ae5e5509b08a48d047e3b65714a74" 1082 1202 dependencies = [ 1083 1203 "rustc_version", 1084 1204 ] ··· 1187 1307 ] 1188 1308 1189 1309 [[package]] 1310 + name = "darling" 1311 + version = "0.20.3" 1312 + source = "registry+https://github.com/rust-lang/crates.io-index" 1313 + checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 1314 + dependencies = [ 1315 + "darling_core", 1316 + "darling_macro", 1317 + ] 1318 + 1319 + [[package]] 1320 + name = "darling_core" 1321 + version = "0.20.3" 1322 + source = "registry+https://github.com/rust-lang/crates.io-index" 1323 + checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 1324 + dependencies = [ 1325 + "fnv", 1326 + "ident_case", 1327 + "proc-macro2", 1328 + "quote", 1329 + "strsim", 1330 + "syn 2.0.28", 1331 + ] 1332 + 1333 + [[package]] 1334 + name = "darling_macro" 1335 + version = "0.20.3" 1336 + source = "registry+https://github.com/rust-lang/crates.io-index" 1337 + checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 1338 + dependencies = [ 1339 + "darling_core", 1340 + "quote", 1341 + "syn 2.0.28", 1342 + ] 1343 + 1344 + [[package]] 1345 + name = "dash-mpd" 1346 + version = "0.13.0" 1347 + source = "registry+https://github.com/rust-lang/crates.io-index" 1348 + checksum = "5d0c74b03285fe95649f588140b6009dc10bc4f747bd774818ed8e9cc6b5cbb6" 1349 + dependencies = [ 1350 + "base64 0.21.2", 1351 + "base64-serde", 1352 + "chrono", 1353 + "fs-err", 1354 + "iso8601", 1355 + "log", 1356 + "num-traits", 1357 + "quick-xml", 1358 + "regex", 1359 + "serde", 1360 + "serde_with", 1361 + "thiserror", 1362 + "tokio", 1363 + "xattr", 1364 + ] 1365 + 1366 + [[package]] 1190 1367 name = "dasp_frame" 1191 1368 version = "0.11.0" 1192 1369 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1225 1402 dependencies = [ 1226 1403 "libc", 1227 1404 "system-deps", 1405 + ] 1406 + 1407 + [[package]] 1408 + name = "deranged" 1409 + version = "0.3.7" 1410 + source = "registry+https://github.com/rust-lang/crates.io-index" 1411 + checksum = "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929" 1412 + dependencies = [ 1413 + "serde", 1228 1414 ] 1229 1415 1230 1416 [[package]] ··· 1288 1474 1289 1475 [[package]] 1290 1476 name = "either" 1291 - version = "1.8.1" 1477 + version = "1.9.0" 1292 1478 source = "registry+https://github.com/rust-lang/crates.io-index" 1293 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1479 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 1294 1480 1295 1481 [[package]] 1296 1482 name = "encoding_rs" ··· 1334 1520 1335 1521 [[package]] 1336 1522 name = "errno" 1337 - version = "0.3.1" 1523 + version = "0.3.2" 1338 1524 source = "registry+https://github.com/rust-lang/crates.io-index" 1339 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 1525 + checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 1340 1526 dependencies = [ 1341 1527 "errno-dragonfly", 1342 1528 "libc", ··· 1355 1541 1356 1542 [[package]] 1357 1543 name = "fastrand" 1358 - version = "1.9.0" 1359 - source = "registry+https://github.com/rust-lang/crates.io-index" 1360 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1361 - dependencies = [ 1362 - "instant", 1363 - ] 1364 - 1365 - [[package]] 1366 - name = "fastrand" 1367 1544 version = "2.0.0" 1368 1545 source = "registry+https://github.com/rust-lang/crates.io-index" 1369 1546 checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" ··· 1382 1559 version = "0.0.0" 1383 1560 source = "git+https://github.com/rust-av/ffv1.git?rev=2afb025a327173ce891954c052e804d0f880368a#2afb025a327173ce891954c052e804d0f880368a" 1384 1561 dependencies = [ 1385 - "crc 1.8.1", 1562 + "crc", 1386 1563 "num-traits", 1387 1564 "thiserror", 1388 1565 ] ··· 1465 1642 ] 1466 1643 1467 1644 [[package]] 1645 + name = "fs-err" 1646 + version = "2.9.0" 1647 + source = "registry+https://github.com/rust-lang/crates.io-index" 1648 + checksum = "0845fa252299212f0389d64ba26f34fa32cfe41588355f21ed507c59a0f64541" 1649 + 1650 + [[package]] 1468 1651 name = "fst" 1469 1652 version = "0.4.7" 1470 1653 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1526 1709 dependencies = [ 1527 1710 "proc-macro2", 1528 1711 "quote", 1529 - "syn 2.0.26", 1712 + "syn 2.0.28", 1530 1713 ] 1531 1714 1532 1715 [[package]] ··· 1561 1744 1562 1745 [[package]] 1563 1746 name = "gdk-pixbuf" 1564 - version = "0.17.10" 1565 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1747 + version = "0.18.1" 1748 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1566 1749 dependencies = [ 1567 - "bitflags 1.3.2", 1568 1750 "gdk-pixbuf-sys", 1569 1751 "gio", 1570 1752 "glib", ··· 1574 1756 1575 1757 [[package]] 1576 1758 name = "gdk-pixbuf-sys" 1577 - version = "0.17.10" 1578 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1759 + version = "0.18.1" 1760 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1579 1761 dependencies = [ 1580 1762 "gio-sys", 1581 1763 "glib-sys", ··· 1586 1768 1587 1769 [[package]] 1588 1770 name = "gdk4" 1589 - version = "0.6.6" 1590 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1771 + version = "0.7.1" 1772 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1591 1773 dependencies = [ 1592 - "bitflags 1.3.2", 1593 1774 "cairo-rs", 1594 1775 "gdk-pixbuf", 1595 1776 "gdk4-sys", ··· 1601 1782 1602 1783 [[package]] 1603 1784 name = "gdk4-sys" 1604 - version = "0.6.6" 1605 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1785 + version = "0.7.1" 1786 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1606 1787 dependencies = [ 1607 1788 "cairo-sys-rs", 1608 1789 "gdk-pixbuf-sys", ··· 1617 1798 1618 1799 [[package]] 1619 1800 name = "gdk4-wayland" 1620 - version = "0.6.6" 1621 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1801 + version = "0.7.1" 1802 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1622 1803 dependencies = [ 1623 1804 "gdk4", 1624 1805 "gdk4-wayland-sys", ··· 1629 1810 1630 1811 [[package]] 1631 1812 name = "gdk4-wayland-sys" 1632 - version = "0.6.6" 1633 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1813 + version = "0.7.1" 1814 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1634 1815 dependencies = [ 1635 1816 "glib-sys", 1636 1817 "libc", ··· 1639 1820 1640 1821 [[package]] 1641 1822 name = "gdk4-win32" 1642 - version = "0.6.6" 1643 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1823 + version = "0.7.1" 1824 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1644 1825 dependencies = [ 1645 1826 "gdk4", 1646 1827 "gdk4-win32-sys", ··· 1653 1834 1654 1835 [[package]] 1655 1836 name = "gdk4-win32-sys" 1656 - version = "0.6.6" 1657 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1837 + version = "0.7.1" 1838 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1658 1839 dependencies = [ 1659 1840 "gdk-pixbuf-sys", 1660 1841 "gdk4-sys", ··· 1665 1846 1666 1847 [[package]] 1667 1848 name = "gdk4-x11" 1668 - version = "0.6.6" 1669 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1849 + version = "0.7.1" 1850 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1670 1851 dependencies = [ 1671 1852 "gdk4", 1672 1853 "gdk4-x11-sys", ··· 1677 1858 1678 1859 [[package]] 1679 1860 name = "gdk4-x11-sys" 1680 - version = "0.6.6" 1681 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1861 + version = "0.7.1" 1862 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1682 1863 dependencies = [ 1683 1864 "gdk4-sys", 1684 1865 "glib-sys", ··· 1736 1917 1737 1918 [[package]] 1738 1919 name = "gio" 1739 - version = "0.17.10" 1740 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1920 + version = "0.18.1" 1921 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1741 1922 dependencies = [ 1742 - "bitflags 1.3.2", 1743 1923 "futures-channel", 1744 1924 "futures-core", 1745 1925 "futures-io", ··· 1755 1935 1756 1936 [[package]] 1757 1937 name = "gio-sys" 1758 - version = "0.17.10" 1759 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1938 + version = "0.18.1" 1939 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1760 1940 dependencies = [ 1761 1941 "glib-sys", 1762 1942 "gobject-sys", ··· 1767 1947 1768 1948 [[package]] 1769 1949 name = "glib" 1770 - version = "0.17.10" 1771 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1950 + version = "0.18.1" 1951 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1772 1952 dependencies = [ 1773 - "bitflags 1.3.2", 1953 + "bitflags 2.3.3", 1774 1954 "futures-channel", 1775 1955 "futures-core", 1776 1956 "futures-executor", ··· 1789 1969 1790 1970 [[package]] 1791 1971 name = "glib-macros" 1792 - version = "0.17.10" 1793 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1972 + version = "0.18.1" 1973 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1794 1974 dependencies = [ 1795 - "anyhow", 1796 1975 "heck", 1797 1976 "proc-macro-crate", 1798 1977 "proc-macro-error", 1799 1978 "proc-macro2", 1800 1979 "quote", 1801 - "syn 1.0.109", 1980 + "syn 2.0.28", 1802 1981 ] 1803 1982 1804 1983 [[package]] 1805 1984 name = "glib-sys" 1806 - version = "0.17.10" 1807 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1985 + version = "0.18.1" 1986 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1808 1987 dependencies = [ 1809 1988 "libc", 1810 1989 "system-deps", ··· 1818 1997 1819 1998 [[package]] 1820 1999 name = "gobject-sys" 1821 - version = "0.17.10" 1822 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 2000 + version = "0.18.1" 2001 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1823 2002 dependencies = [ 1824 2003 "glib-sys", 1825 2004 "libc", ··· 1828 2007 1829 2008 [[package]] 1830 2009 name = "graphene-rs" 1831 - version = "0.17.10" 1832 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 2010 + version = "0.18.1" 2011 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1833 2012 dependencies = [ 1834 2013 "glib", 1835 2014 "graphene-sys", ··· 1838 2017 1839 2018 [[package]] 1840 2019 name = "graphene-sys" 1841 - version = "0.17.10" 1842 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 2020 + version = "0.18.1" 2021 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1843 2022 dependencies = [ 1844 2023 "glib-sys", 1845 2024 "libc", ··· 1849 2028 1850 2029 [[package]] 1851 2030 name = "gsk4" 1852 - version = "0.6.6" 1853 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 2031 + version = "0.7.1" 2032 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1854 2033 dependencies = [ 1855 - "bitflags 1.3.2", 1856 2034 "cairo-rs", 1857 2035 "gdk4", 1858 2036 "glib", ··· 1864 2042 1865 2043 [[package]] 1866 2044 name = "gsk4-sys" 1867 - version = "0.6.6" 1868 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 2045 + version = "0.7.1" 2046 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1869 2047 dependencies = [ 1870 2048 "cairo-sys-rs", 1871 2049 "gdk4-sys", ··· 1879 2057 1880 2058 [[package]] 1881 2059 name = "gst-plugin-audiofx" 1882 - version = "0.10.11" 2060 + version = "0.11.0" 1883 2061 dependencies = [ 1884 2062 "anyhow", 1885 2063 "atomic_refcell", ··· 1894 2072 "hrtf", 1895 2073 "nnnoiseless", 1896 2074 "num-traits", 1897 - "once_cell", 1898 2075 "rayon", 1899 2076 "smallvec", 1900 2077 ] 1901 2078 1902 2079 [[package]] 1903 2080 name = "gst-plugin-aws" 1904 - version = "0.10.11" 2081 + version = "0.11.0" 1905 2082 dependencies = [ 1906 - "async-tungstenite", 1907 - "atomic_refcell", 2083 + "async-stream", 1908 2084 "aws-config", 1909 2085 "aws-credential-types", 1910 2086 "aws-sdk-s3", 1911 - "aws-sdk-transcribe", 2087 + "aws-sdk-transcribestreaming", 2088 + "aws-sdk-translate", 1912 2089 "aws-sig-auth", 1913 2090 "aws-smithy-http", 1914 2091 "aws-smithy-types", 1915 2092 "aws-types", 1916 - "backoff", 1917 2093 "base32", 1918 - "byteorder", 1919 2094 "bytes", 1920 2095 "chrono", 1921 - "crc 3.0.1", 1922 2096 "env_logger 0.10.0", 1923 2097 "futures", 1924 2098 "gio", ··· 1928 2102 "gstreamer-base", 1929 2103 "gstreamer-check", 1930 2104 "http", 1931 - "nom", 1932 - "once_cell", 1933 2105 "percent-encoding", 1934 2106 "rand", 1935 2107 "serde", ··· 1942 2114 1943 2115 [[package]] 1944 2116 name = "gst-plugin-cdg" 1945 - version = "0.10.11" 2117 + version = "0.11.0" 1946 2118 dependencies = [ 1947 2119 "cdg", 1948 2120 "cdg_renderer", ··· 1953 2125 "gstreamer-video", 1954 2126 "image", 1955 2127 "muldiv", 1956 - "once_cell", 1957 2128 ] 1958 2129 1959 2130 [[package]] 1960 2131 name = "gst-plugin-claxon" 1961 - version = "0.10.11" 2132 + version = "0.11.0" 1962 2133 dependencies = [ 1963 2134 "atomic_refcell", 1964 2135 "byte-slice-cast", ··· 1972 2143 1973 2144 [[package]] 1974 2145 name = "gst-plugin-closedcaption" 1975 - version = "0.10.11" 2146 + version = "0.11.0" 1976 2147 dependencies = [ 1977 2148 "anyhow", 1978 2149 "atomic_refcell", 1979 2150 "byteorder", 1980 2151 "cairo-rs", 1981 2152 "cc", 2153 + "cea708-types", 1982 2154 "chrono", 1983 2155 "either", 1984 2156 "gst-plugin-version-helper", ··· 1987 2159 "gstreamer-check", 1988 2160 "gstreamer-video", 1989 2161 "nom", 1990 - "once_cell", 1991 2162 "pango", 1992 2163 "pangocairo", 1993 2164 "pretty_assertions", ··· 1999 2170 2000 2171 [[package]] 2001 2172 name = "gst-plugin-csound" 2002 - version = "0.10.11" 2173 + version = "0.11.0" 2003 2174 dependencies = [ 2004 2175 "byte-slice-cast", 2005 2176 "csound", ··· 2008 2179 "gstreamer-audio", 2009 2180 "gstreamer-base", 2010 2181 "gstreamer-check", 2011 - "once_cell", 2012 2182 ] 2013 2183 2014 2184 [[package]] 2015 2185 name = "gst-plugin-dav1d" 2016 - version = "0.10.11" 2186 + version = "0.11.0" 2017 2187 dependencies = [ 2018 2188 "dav1d", 2019 2189 "gst-plugin-version-helper", ··· 2021 2191 "gstreamer-base", 2022 2192 "gstreamer-video", 2023 2193 "num_cpus", 2024 - "once_cell", 2025 2194 ] 2026 2195 2027 2196 [[package]] 2028 2197 name = "gst-plugin-fallbackswitch" 2029 - version = "0.10.11" 2198 + version = "0.11.0" 2030 2199 dependencies = [ 2031 2200 "gio", 2032 2201 "gst-plugin-gtk4", ··· 2038 2207 "gstreamer-check", 2039 2208 "gstreamer-video", 2040 2209 "gtk4", 2041 - "once_cell", 2042 2210 "parking_lot", 2043 2211 ] 2044 2212 2045 2213 [[package]] 2046 2214 name = "gst-plugin-ffv1" 2047 - version = "0.10.11" 2215 + version = "0.11.0" 2048 2216 dependencies = [ 2049 2217 "byte-slice-cast", 2050 2218 "ffv1", ··· 2052 2220 "gstreamer", 2053 2221 "gstreamer-check", 2054 2222 "gstreamer-video", 2055 - "once_cell", 2056 2223 ] 2057 2224 2058 2225 [[package]] 2059 2226 name = "gst-plugin-file" 2060 - version = "0.10.11" 2227 + version = "0.11.0" 2061 2228 dependencies = [ 2062 2229 "gst-plugin-version-helper", 2063 2230 "gstreamer", 2064 2231 "gstreamer-base", 2065 - "once_cell", 2066 2232 "url", 2067 2233 ] 2068 2234 2069 2235 [[package]] 2070 2236 name = "gst-plugin-flavors" 2071 - version = "0.10.11" 2237 + version = "0.11.0" 2072 2238 dependencies = [ 2073 2239 "byteorder", 2074 2240 "flavors", ··· 2079 2245 "muldiv", 2080 2246 "nom", 2081 2247 "num-rational", 2082 - "once_cell", 2083 2248 "smallvec", 2084 2249 ] 2085 2250 2086 2251 [[package]] 2087 2252 name = "gst-plugin-fmp4" 2088 - version = "0.10.11" 2253 + version = "0.11.0" 2089 2254 dependencies = [ 2090 2255 "anyhow", 2091 2256 "chrono", 2257 + "dash-mpd", 2092 2258 "gst-plugin-version-helper", 2093 2259 "gstreamer", 2094 2260 "gstreamer-app", ··· 2098 2264 "gstreamer-pbutils", 2099 2265 "gstreamer-video", 2100 2266 "m3u8-rs", 2101 - "once_cell", 2267 + "quick-xml", 2268 + "serde", 2102 2269 ] 2103 2270 2104 2271 [[package]] 2105 2272 name = "gst-plugin-gif" 2106 - version = "0.10.11" 2273 + version = "0.11.0" 2107 2274 dependencies = [ 2108 2275 "atomic_refcell", 2109 2276 "gif", ··· 2116 2283 2117 2284 [[package]] 2118 2285 name = "gst-plugin-gtk4" 2119 - version = "0.10.11" 2286 + version = "0.11.0" 2120 2287 dependencies = [ 2121 2288 "gdk4-wayland", 2122 2289 "gdk4-win32", ··· 2130 2297 "gstreamer-gl-x11", 2131 2298 "gstreamer-video", 2132 2299 "gtk4", 2133 - "once_cell", 2134 2300 "windows-sys", 2135 2301 ] 2136 2302 2137 2303 [[package]] 2138 2304 name = "gst-plugin-hlssink3" 2139 - version = "0.10.11" 2305 + version = "0.11.0" 2140 2306 dependencies = [ 2141 2307 "gio", 2142 2308 "glib", ··· 2152 2318 2153 2319 [[package]] 2154 2320 name = "gst-plugin-hsv" 2155 - version = "0.10.11" 2321 + version = "0.11.0" 2156 2322 dependencies = [ 2157 2323 "byte-slice-cast", 2158 2324 "gst-plugin-version-helper", ··· 2162 2328 "gstreamer-check", 2163 2329 "gstreamer-video", 2164 2330 "num-traits", 2165 - "once_cell", 2166 2331 ] 2167 2332 2168 2333 [[package]] 2169 2334 name = "gst-plugin-json" 2170 - version = "0.10.11" 2335 + version = "0.11.0" 2171 2336 dependencies = [ 2172 2337 "gst-plugin-version-helper", 2173 2338 "gstreamer", 2174 2339 "gstreamer-check", 2175 - "once_cell", 2176 2340 "serde", 2177 2341 "serde_json", 2178 2342 ] 2179 2343 2180 2344 [[package]] 2181 2345 name = "gst-plugin-lewton" 2182 - version = "0.10.11" 2346 + version = "0.11.0" 2183 2347 dependencies = [ 2184 2348 "atomic_refcell", 2185 2349 "byte-slice-cast", ··· 2188 2352 "gstreamer-audio", 2189 2353 "gstreamer-check", 2190 2354 "lewton", 2191 - "once_cell", 2192 2355 ] 2193 2356 2194 2357 [[package]] 2195 2358 name = "gst-plugin-livesync" 2196 - version = "0.10.11" 2359 + version = "0.11.0" 2197 2360 dependencies = [ 2198 2361 "gio", 2199 2362 "gst-plugin-gtk4", ··· 2204 2367 "gtk4", 2205 2368 "muldiv", 2206 2369 "num-rational", 2207 - "once_cell", 2208 2370 "parking_lot", 2209 2371 ] 2210 2372 2211 2373 [[package]] 2212 2374 name = "gst-plugin-mp4" 2213 - version = "0.10.11" 2375 + version = "0.11.0" 2214 2376 dependencies = [ 2215 2377 "anyhow", 2216 2378 "gst-plugin-version-helper", ··· 2219 2381 "gstreamer-base", 2220 2382 "gstreamer-pbutils", 2221 2383 "gstreamer-video", 2222 - "once_cell", 2223 2384 "tempfile", 2224 2385 "url", 2225 2386 ] 2226 2387 2227 2388 [[package]] 2228 2389 name = "gst-plugin-ndi" 2229 - version = "0.10.11" 2390 + version = "0.11.0" 2230 2391 dependencies = [ 2231 2392 "atomic_refcell", 2232 2393 "byte-slice-cast", ··· 2238 2399 "gstreamer-base", 2239 2400 "gstreamer-video", 2240 2401 "libloading", 2241 - "once_cell", 2242 2402 ] 2243 2403 2244 2404 [[package]] 2245 2405 name = "gst-plugin-onvif" 2246 - version = "0.10.11" 2406 + version = "0.11.0" 2247 2407 dependencies = [ 2248 2408 "cairo-rs", 2249 2409 "chrono", ··· 2252 2412 "gstreamer-base", 2253 2413 "gstreamer-rtp", 2254 2414 "gstreamer-video", 2255 - "once_cell", 2256 2415 "pango", 2257 2416 "pangocairo", 2258 2417 "xmlparser", ··· 2261 2420 2262 2421 [[package]] 2263 2422 name = "gst-plugin-png" 2264 - version = "0.10.11" 2423 + version = "0.11.0" 2265 2424 dependencies = [ 2266 2425 "gst-plugin-version-helper", 2267 2426 "gstreamer", ··· 2274 2433 2275 2434 [[package]] 2276 2435 name = "gst-plugin-raptorq" 2277 - version = "0.10.11" 2436 + version = "0.11.0" 2278 2437 dependencies = [ 2279 2438 "gst-plugin-version-helper", 2280 2439 "gstreamer", 2281 2440 "gstreamer-base", 2282 2441 "gstreamer-check", 2283 2442 "gstreamer-rtp", 2284 - "once_cell", 2285 2443 "rand", 2286 2444 "raptorq", 2287 2445 ] 2288 2446 2289 2447 [[package]] 2290 2448 name = "gst-plugin-rav1e" 2291 - version = "0.10.11" 2449 + version = "0.11.0" 2292 2450 dependencies = [ 2293 2451 "atomic_refcell", 2294 2452 "gst-plugin-version-helper", 2295 2453 "gstreamer", 2296 2454 "gstreamer-check", 2297 2455 "gstreamer-video", 2298 - "once_cell", 2299 2456 "rav1e", 2300 2457 ] 2301 2458 2302 2459 [[package]] 2303 2460 name = "gst-plugin-regex" 2304 - version = "0.10.11" 2461 + version = "0.11.0" 2305 2462 dependencies = [ 2306 2463 "gst-plugin-version-helper", 2307 2464 "gstreamer", 2308 2465 "gstreamer-check", 2309 - "once_cell", 2310 2466 "regex", 2311 2467 ] 2312 2468 2313 2469 [[package]] 2314 2470 name = "gst-plugin-reqwest" 2315 - version = "0.10.11" 2471 + version = "0.11.0" 2316 2472 dependencies = [ 2317 2473 "futures", 2318 2474 "gst-plugin-version-helper", ··· 2321 2477 "headers", 2322 2478 "hyper", 2323 2479 "mime", 2324 - "once_cell", 2325 2480 "reqwest", 2326 2481 "tokio", 2327 2482 "url", ··· 2329 2484 2330 2485 [[package]] 2331 2486 name = "gst-plugin-rtp" 2332 - version = "0.10.11" 2487 + version = "0.11.0" 2333 2488 dependencies = [ 2334 2489 "bitstream-io", 2335 2490 "chrono", ··· 2337 2492 "gstreamer", 2338 2493 "gstreamer-check", 2339 2494 "gstreamer-rtp", 2340 - "once_cell", 2341 2495 ] 2342 2496 2343 2497 [[package]] 2344 2498 name = "gst-plugin-sodium" 2345 - version = "0.10.11" 2499 + version = "0.11.0" 2346 2500 dependencies = [ 2347 2501 "clap", 2348 2502 "gst-plugin-version-helper", ··· 2362 2516 2363 2517 [[package]] 2364 2518 name = "gst-plugin-spotify" 2365 - version = "0.10.11" 2519 + version = "0.11.0" 2366 2520 dependencies = [ 2367 2521 "anyhow", 2368 2522 "futures", ··· 2370 2524 "gstreamer", 2371 2525 "gstreamer-base", 2372 2526 "librespot", 2373 - "once_cell", 2374 2527 "tokio", 2375 2528 "url", 2376 2529 ] 2377 2530 2378 2531 [[package]] 2379 2532 name = "gst-plugin-textahead" 2380 - version = "0.10.11" 2533 + version = "0.11.0" 2381 2534 dependencies = [ 2382 2535 "gst-plugin-version-helper", 2383 2536 "gstreamer", 2384 - "once_cell", 2385 2537 ] 2386 2538 2387 2539 [[package]] 2388 2540 name = "gst-plugin-textwrap" 2389 - version = "0.10.11" 2541 + version = "0.11.0" 2390 2542 dependencies = [ 2391 2543 "gst-plugin-version-helper", 2392 2544 "gstreamer", 2393 2545 "gstreamer-check", 2394 2546 "hyphenation", 2395 - "once_cell", 2396 2547 "textwrap", 2397 2548 ] 2398 2549 2399 2550 [[package]] 2400 2551 name = "gst-plugin-threadshare" 2401 - version = "0.10.11" 2552 + version = "0.11.0" 2402 2553 dependencies = [ 2403 2554 "async-task", 2404 2555 "cc", ··· 2428 2579 2429 2580 [[package]] 2430 2581 name = "gst-plugin-togglerecord" 2431 - version = "0.10.11" 2582 + version = "0.11.0" 2432 2583 dependencies = [ 2433 2584 "either", 2434 2585 "gio", ··· 2436 2587 "gst-plugin-version-helper", 2437 2588 "gstreamer", 2438 2589 "gstreamer-audio", 2590 + "gstreamer-check", 2439 2591 "gstreamer-video", 2440 2592 "gtk4", 2441 - "once_cell", 2442 2593 "parking_lot", 2443 2594 ] 2444 2595 2445 2596 [[package]] 2446 2597 name = "gst-plugin-tracers" 2447 - version = "0.10.11" 2598 + version = "0.11.0" 2448 2599 dependencies = [ 2449 2600 "anyhow", 2450 2601 "gst-plugin-version-helper", 2451 2602 "gstreamer", 2452 - "once_cell", 2453 2603 "regex", 2454 2604 "signal-hook", 2455 2605 ] 2456 2606 2457 2607 [[package]] 2458 2608 name = "gst-plugin-tutorial" 2459 - version = "0.10.11" 2609 + version = "0.11.0" 2460 2610 dependencies = [ 2461 2611 "byte-slice-cast", 2462 2612 "gst-plugin-version-helper", ··· 2465 2615 "gstreamer-base", 2466 2616 "gstreamer-video", 2467 2617 "num-traits", 2468 - "once_cell", 2469 2618 ] 2470 2619 2471 2620 [[package]] 2472 2621 name = "gst-plugin-uriplaylistbin" 2473 - version = "0.10.11" 2622 + version = "0.11.0" 2474 2623 dependencies = [ 2475 2624 "anyhow", 2476 2625 "clap", ··· 2478 2627 "gstreamer", 2479 2628 "gstreamer-app", 2480 2629 "more-asserts", 2481 - "once_cell", 2482 2630 "thiserror", 2483 2631 "url", 2484 2632 ] ··· 2492 2640 2493 2641 [[package]] 2494 2642 name = "gst-plugin-videofx" 2495 - version = "0.10.11" 2643 + version = "0.11.0" 2496 2644 dependencies = [ 2497 2645 "atomic_refcell", 2498 2646 "cairo-rs", ··· 2506 2654 "gstreamer-video", 2507 2655 "image", 2508 2656 "image_hasher", 2509 - "once_cell", 2510 2657 "rgb", 2511 2658 ] 2512 2659 2513 2660 [[package]] 2514 2661 name = "gst-plugin-webp" 2515 - version = "0.10.11" 2662 + version = "0.11.0" 2516 2663 dependencies = [ 2517 2664 "gst-plugin-version-helper", 2518 2665 "gstreamer", 2519 2666 "gstreamer-check", 2520 2667 "gstreamer-video", 2521 2668 "libwebp-sys2", 2522 - "once_cell", 2523 2669 "pretty_assertions", 2524 2670 ] 2525 2671 2526 2672 [[package]] 2527 2673 name = "gst-plugin-webrtc" 2528 - version = "0.10.11" 2674 + version = "0.11.0" 2529 2675 dependencies = [ 2530 2676 "anyhow", 2677 + "async-recursion", 2531 2678 "async-tungstenite", 2679 + "aws-config", 2680 + "aws-credential-types", 2681 + "aws-sdk-kinesisvideo", 2682 + "aws-sdk-kinesisvideosignaling", 2683 + "aws-sig-auth", 2684 + "aws-smithy-http", 2685 + "aws-smithy-types", 2686 + "aws-types", 2687 + "chrono", 2532 2688 "clap", 2533 - "fastrand 2.0.0", 2689 + "data-encoding", 2690 + "fastrand", 2534 2691 "futures", 2535 2692 "gst-plugin-version-helper", 2536 2693 "gst-plugin-webrtc-signalling-protocol", ··· 2542 2699 "gstreamer-utils", 2543 2700 "gstreamer-video", 2544 2701 "gstreamer-webrtc", 2702 + "http", 2545 2703 "human_bytes", 2546 - "once_cell", 2704 + "livekit-api", 2705 + "livekit-protocol", 2706 + "parse_link_header", 2707 + "regex", 2708 + "reqwest", 2547 2709 "serde", 2548 2710 "serde_json", 2549 2711 "thiserror", ··· 2554 2716 "tracing-log", 2555 2717 "tracing-subscriber", 2556 2718 "url", 2719 + "url-escape", 2557 2720 "uuid", 2558 2721 ] 2559 2722 2560 2723 [[package]] 2561 2724 name = "gst-plugin-webrtc-signalling" 2562 - version = "0.10.11" 2725 + version = "0.11.0" 2563 2726 dependencies = [ 2564 2727 "anyhow", 2565 2728 "async-tungstenite", 2566 2729 "clap", 2567 2730 "futures", 2568 2731 "gst-plugin-webrtc-signalling-protocol", 2569 - "once_cell", 2570 2732 "pin-project-lite", 2571 2733 "serde", 2572 2734 "serde_json", ··· 2582 2744 2583 2745 [[package]] 2584 2746 name = "gst-plugin-webrtc-signalling-protocol" 2585 - version = "0.10.11" 2747 + version = "0.11.0" 2586 2748 dependencies = [ 2587 2749 "serde", 2588 2750 "serde_json", ··· 2590 2752 2591 2753 [[package]] 2592 2754 name = "gst-plugin-webrtchttp" 2593 - version = "0.10.11" 2755 + version = "0.11.0" 2594 2756 dependencies = [ 2595 2757 "async-recursion", 2596 2758 "bytes", ··· 2599 2761 "gstreamer", 2600 2762 "gstreamer-sdp", 2601 2763 "gstreamer-webrtc", 2602 - "once_cell", 2603 2764 "parse_link_header", 2604 2765 "reqwest", 2605 2766 "tokio", ··· 2607 2768 2608 2769 [[package]] 2609 2770 name = "gstreamer" 2610 - version = "0.20.7" 2611 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2771 + version = "0.21.0" 2772 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2612 2773 dependencies = [ 2613 - "bitflags 1.3.2", 2614 2774 "cfg-if", 2615 2775 "futures-channel", 2616 2776 "futures-core", 2617 2777 "futures-util", 2618 2778 "glib", 2619 2779 "gstreamer-sys", 2780 + "itertools 0.11.0", 2620 2781 "libc", 2621 2782 "muldiv", 2622 2783 "num-integer", 2623 2784 "num-rational", 2624 - "once_cell", 2625 2785 "option-operations", 2626 2786 "paste", 2627 2787 "pretty-hex", ··· 2633 2793 2634 2794 [[package]] 2635 2795 name = "gstreamer-app" 2636 - version = "0.20.7" 2637 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2796 + version = "0.21.0" 2797 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2638 2798 dependencies = [ 2639 - "bitflags 1.3.2", 2640 2799 "futures-core", 2641 2800 "futures-sink", 2642 2801 "glib", ··· 2644 2803 "gstreamer-app-sys", 2645 2804 "gstreamer-base", 2646 2805 "libc", 2647 - "once_cell", 2648 2806 ] 2649 2807 2650 2808 [[package]] 2651 2809 name = "gstreamer-app-sys" 2652 - version = "0.20.7" 2653 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2810 + version = "0.21.0" 2811 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2654 2812 dependencies = [ 2655 2813 "glib-sys", 2656 2814 "gstreamer-base-sys", ··· 2661 2819 2662 2820 [[package]] 2663 2821 name = "gstreamer-audio" 2664 - version = "0.20.7" 2665 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2822 + version = "0.21.0" 2823 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2666 2824 dependencies = [ 2667 - "bitflags 1.3.2", 2668 2825 "cfg-if", 2669 2826 "glib", 2670 2827 "gstreamer", 2671 2828 "gstreamer-audio-sys", 2672 2829 "gstreamer-base", 2673 2830 "libc", 2674 - "once_cell", 2675 2831 ] 2676 2832 2677 2833 [[package]] 2678 2834 name = "gstreamer-audio-sys" 2679 - version = "0.20.7" 2680 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2835 + version = "0.21.0" 2836 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2681 2837 dependencies = [ 2682 2838 "glib-sys", 2683 2839 "gobject-sys", ··· 2689 2845 2690 2846 [[package]] 2691 2847 name = "gstreamer-base" 2692 - version = "0.20.7" 2693 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2848 + version = "0.21.0" 2849 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2694 2850 dependencies = [ 2695 2851 "atomic_refcell", 2696 - "bitflags 1.3.2", 2697 2852 "cfg-if", 2698 2853 "glib", 2699 2854 "gstreamer", 2700 2855 "gstreamer-base-sys", 2701 2856 "libc", 2702 - "once_cell", 2703 2857 ] 2704 2858 2705 2859 [[package]] 2706 2860 name = "gstreamer-base-sys" 2707 - version = "0.20.7" 2708 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2861 + version = "0.21.0" 2862 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2709 2863 dependencies = [ 2710 2864 "glib-sys", 2711 2865 "gobject-sys", ··· 2716 2870 2717 2871 [[package]] 2718 2872 name = "gstreamer-check" 2719 - version = "0.20.7" 2720 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2873 + version = "0.21.0" 2874 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2721 2875 dependencies = [ 2722 - "bitflags 1.3.2", 2723 2876 "glib", 2724 2877 "gstreamer", 2725 2878 "gstreamer-check-sys", ··· 2727 2880 2728 2881 [[package]] 2729 2882 name = "gstreamer-check-sys" 2730 - version = "0.20.7" 2731 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2883 + version = "0.21.0" 2884 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2732 2885 dependencies = [ 2733 2886 "glib-sys", 2734 2887 "gobject-sys", ··· 2739 2892 2740 2893 [[package]] 2741 2894 name = "gstreamer-gl" 2742 - version = "0.20.7" 2743 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2895 + version = "0.21.0" 2896 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2744 2897 dependencies = [ 2745 - "bitflags 1.3.2", 2746 2898 "glib", 2747 2899 "gstreamer", 2748 2900 "gstreamer-base", 2749 2901 "gstreamer-gl-sys", 2750 2902 "gstreamer-video", 2751 2903 "libc", 2752 - "once_cell", 2753 2904 ] 2754 2905 2755 2906 [[package]] 2756 2907 name = "gstreamer-gl-egl" 2757 - version = "0.20.7" 2758 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2908 + version = "0.21.0" 2909 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2759 2910 dependencies = [ 2760 2911 "glib", 2761 2912 "gstreamer", ··· 2766 2917 2767 2918 [[package]] 2768 2919 name = "gstreamer-gl-egl-sys" 2769 - version = "0.20.7" 2770 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2920 + version = "0.21.0" 2921 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2771 2922 dependencies = [ 2772 2923 "glib-sys", 2773 2924 "gstreamer-gl-sys", ··· 2777 2928 2778 2929 [[package]] 2779 2930 name = "gstreamer-gl-sys" 2780 - version = "0.20.7" 2781 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2931 + version = "0.21.0" 2932 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2782 2933 dependencies = [ 2783 2934 "glib-sys", 2784 2935 "gobject-sys", ··· 2791 2942 2792 2943 [[package]] 2793 2944 name = "gstreamer-gl-wayland" 2794 - version = "0.20.7" 2795 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2945 + version = "0.21.0" 2946 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2796 2947 dependencies = [ 2797 2948 "glib", 2798 2949 "gstreamer", ··· 2803 2954 2804 2955 [[package]] 2805 2956 name = "gstreamer-gl-wayland-sys" 2806 - version = "0.20.7" 2807 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2957 + version = "0.21.0" 2958 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2808 2959 dependencies = [ 2809 2960 "glib-sys", 2810 2961 "gstreamer-gl-sys", ··· 2814 2965 2815 2966 [[package]] 2816 2967 name = "gstreamer-gl-x11" 2817 - version = "0.20.7" 2818 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2968 + version = "0.21.0" 2969 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2819 2970 dependencies = [ 2820 2971 "glib", 2821 2972 "gstreamer", ··· 2826 2977 2827 2978 [[package]] 2828 2979 name = "gstreamer-gl-x11-sys" 2829 - version = "0.20.7" 2830 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2980 + version = "0.21.0" 2981 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2831 2982 dependencies = [ 2832 2983 "glib-sys", 2833 2984 "gstreamer-gl-sys", ··· 2837 2988 2838 2989 [[package]] 2839 2990 name = "gstreamer-net" 2840 - version = "0.20.7" 2841 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2991 + version = "0.21.0" 2992 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2842 2993 dependencies = [ 2843 2994 "gio", 2844 2995 "glib", ··· 2848 2999 2849 3000 [[package]] 2850 3001 name = "gstreamer-net-sys" 2851 - version = "0.20.7" 2852 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3002 + version = "0.21.0" 3003 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2853 3004 dependencies = [ 2854 3005 "gio-sys", 2855 3006 "glib-sys", ··· 2860 3011 2861 3012 [[package]] 2862 3013 name = "gstreamer-pbutils" 2863 - version = "0.20.7" 2864 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3014 + version = "0.21.0" 3015 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2865 3016 dependencies = [ 2866 - "bitflags 1.3.2", 2867 3017 "glib", 2868 3018 "gstreamer", 2869 3019 "gstreamer-audio", ··· 2875 3025 2876 3026 [[package]] 2877 3027 name = "gstreamer-pbutils-sys" 2878 - version = "0.20.7" 2879 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3028 + version = "0.21.0" 3029 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2880 3030 dependencies = [ 2881 3031 "glib-sys", 2882 3032 "gobject-sys", ··· 2889 3039 2890 3040 [[package]] 2891 3041 name = "gstreamer-rtp" 2892 - version = "0.20.7" 2893 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3042 + version = "0.21.0" 3043 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2894 3044 dependencies = [ 2895 - "bitflags 1.3.2", 2896 3045 "glib", 2897 3046 "gstreamer", 2898 3047 "gstreamer-rtp-sys", 2899 3048 "libc", 2900 - "once_cell", 2901 3049 ] 2902 3050 2903 3051 [[package]] 2904 3052 name = "gstreamer-rtp-sys" 2905 - version = "0.20.7" 2906 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3053 + version = "0.21.0" 3054 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2907 3055 dependencies = [ 2908 3056 "glib-sys", 2909 3057 "gstreamer-base-sys", ··· 2914 3062 2915 3063 [[package]] 2916 3064 name = "gstreamer-sdp" 2917 - version = "0.20.7" 2918 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3065 + version = "0.21.0" 3066 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2919 3067 dependencies = [ 2920 3068 "glib", 2921 3069 "gstreamer", ··· 2924 3072 2925 3073 [[package]] 2926 3074 name = "gstreamer-sdp-sys" 2927 - version = "0.20.7" 2928 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3075 + version = "0.21.0" 3076 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2929 3077 dependencies = [ 2930 3078 "glib-sys", 2931 3079 "gstreamer-sys", ··· 2935 3083 2936 3084 [[package]] 2937 3085 name = "gstreamer-sys" 2938 - version = "0.20.7" 2939 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3086 + version = "0.21.0" 3087 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2940 3088 dependencies = [ 2941 3089 "glib-sys", 2942 3090 "gobject-sys", ··· 2946 3094 2947 3095 [[package]] 2948 3096 name = "gstreamer-utils" 2949 - version = "0.20.7" 2950 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3097 + version = "0.21.0" 3098 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2951 3099 dependencies = [ 2952 3100 "gstreamer", 2953 3101 "gstreamer-app", 2954 3102 "gstreamer-video", 2955 - "once_cell", 2956 3103 "thiserror", 2957 3104 ] 2958 3105 2959 3106 [[package]] 2960 3107 name = "gstreamer-video" 2961 - version = "0.20.7" 2962 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3108 + version = "0.21.0" 3109 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2963 3110 dependencies = [ 2964 - "bitflags 1.3.2", 2965 3111 "cfg-if", 2966 3112 "futures-channel", 2967 3113 "glib", ··· 2969 3115 "gstreamer-base", 2970 3116 "gstreamer-video-sys", 2971 3117 "libc", 2972 - "once_cell", 2973 3118 "serde", 2974 3119 ] 2975 3120 2976 3121 [[package]] 2977 3122 name = "gstreamer-video-sys" 2978 - version = "0.20.7" 2979 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3123 + version = "0.21.0" 3124 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2980 3125 dependencies = [ 2981 3126 "glib-sys", 2982 3127 "gobject-sys", ··· 2988 3133 2989 3134 [[package]] 2990 3135 name = "gstreamer-webrtc" 2991 - version = "0.20.7" 2992 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3136 + version = "0.21.0" 3137 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2993 3138 dependencies = [ 2994 3139 "glib", 2995 3140 "gstreamer", ··· 3000 3145 3001 3146 [[package]] 3002 3147 name = "gstreamer-webrtc-sys" 3003 - version = "0.20.7" 3004 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3148 + version = "0.21.0" 3149 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3005 3150 dependencies = [ 3006 3151 "glib-sys", 3007 3152 "gstreamer-sdp-sys", ··· 3012 3157 3013 3158 [[package]] 3014 3159 name = "gtk4" 3015 - version = "0.6.6" 3016 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 3160 + version = "0.7.1" 3161 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 3017 3162 dependencies = [ 3018 - "bitflags 1.3.2", 3019 3163 "cairo-rs", 3020 3164 "field-offset", 3021 3165 "futures-channel", ··· 3028 3172 "gtk4-macros", 3029 3173 "gtk4-sys", 3030 3174 "libc", 3031 - "once_cell", 3032 3175 "pango", 3033 3176 ] 3034 3177 3035 3178 [[package]] 3036 3179 name = "gtk4-macros" 3037 - version = "0.6.6" 3038 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 3180 + version = "0.7.1" 3181 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 3039 3182 dependencies = [ 3040 3183 "anyhow", 3041 3184 "proc-macro-crate", ··· 3047 3190 3048 3191 [[package]] 3049 3192 name = "gtk4-sys" 3050 - version = "0.6.6" 3051 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 3193 + version = "0.7.1" 3194 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 3052 3195 dependencies = [ 3053 3196 "cairo-sys-rs", 3054 3197 "gdk-pixbuf-sys", ··· 3087 3230 version = "0.12.3" 3088 3231 source = "registry+https://github.com/rust-lang/crates.io-index" 3089 3232 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 3090 - dependencies = [ 3091 - "ahash", 3092 - ] 3093 3233 3094 3234 [[package]] 3095 3235 name = "hashbrown" ··· 3277 3417 3278 3418 [[package]] 3279 3419 name = "hyper-rustls" 3280 - version = "0.23.2" 3420 + version = "0.24.1" 3281 3421 source = "registry+https://github.com/rust-lang/crates.io-index" 3282 - checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" 3422 + checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" 3283 3423 dependencies = [ 3424 + "futures-util", 3284 3425 "http", 3285 3426 "hyper", 3286 3427 "log", ··· 3350 3491 ] 3351 3492 3352 3493 [[package]] 3494 + name = "ident_case" 3495 + version = "1.0.1" 3496 + source = "registry+https://github.com/rust-lang/crates.io-index" 3497 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 3498 + 3499 + [[package]] 3353 3500 name = "idna" 3354 3501 version = "0.2.3" 3355 3502 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3392 3539 3393 3540 [[package]] 3394 3541 name = "image" 3395 - version = "0.24.6" 3542 + version = "0.24.7" 3396 3543 source = "registry+https://github.com/rust-lang/crates.io-index" 3397 - checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" 3544 + checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 3398 3545 dependencies = [ 3399 3546 "bytemuck", 3400 3547 "byteorder", ··· 3430 3577 dependencies = [ 3431 3578 "autocfg", 3432 3579 "hashbrown 0.12.3", 3580 + "serde", 3433 3581 ] 3434 3582 3435 3583 [[package]] ··· 3440 3588 dependencies = [ 3441 3589 "equivalent", 3442 3590 "hashbrown 0.14.0", 3443 - ] 3444 - 3445 - [[package]] 3446 - name = "instant" 3447 - version = "0.1.12" 3448 - source = "registry+https://github.com/rust-lang/crates.io-index" 3449 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 3450 - dependencies = [ 3451 - "cfg-if", 3591 + "serde", 3452 3592 ] 3453 3593 3454 3594 [[package]] ··· 3463 3603 ] 3464 3604 3465 3605 [[package]] 3466 - name = "io-lifetimes" 3467 - version = "1.0.11" 3468 - source = "registry+https://github.com/rust-lang/crates.io-index" 3469 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 3470 - dependencies = [ 3471 - "hermit-abi 0.3.2", 3472 - "libc", 3473 - "windows-sys", 3474 - ] 3475 - 3476 - [[package]] 3477 3606 name = "ipnet" 3478 3607 version = "2.8.0" 3479 3608 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3486 3615 checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 3487 3616 dependencies = [ 3488 3617 "hermit-abi 0.3.2", 3489 - "rustix 0.38.4", 3618 + "rustix", 3490 3619 "windows-sys", 3620 + ] 3621 + 3622 + [[package]] 3623 + name = "iso8601" 3624 + version = "0.6.1" 3625 + source = "registry+https://github.com/rust-lang/crates.io-index" 3626 + checksum = "924e5d73ea28f59011fec52a0d12185d496a9b075d360657aed2a5707f701153" 3627 + dependencies = [ 3628 + "nom", 3491 3629 ] 3492 3630 3493 3631 [[package]] ··· 3533 3671 ] 3534 3672 3535 3673 [[package]] 3674 + name = "jsonwebtoken" 3675 + version = "8.3.0" 3676 + source = "registry+https://github.com/rust-lang/crates.io-index" 3677 + checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" 3678 + dependencies = [ 3679 + "base64 0.21.2", 3680 + "ring", 3681 + "serde", 3682 + "serde_json", 3683 + ] 3684 + 3685 + [[package]] 3536 3686 name = "khronos-egl" 3537 - version = "4.1.0" 3687 + version = "5.0.0" 3538 3688 source = "registry+https://github.com/rust-lang/crates.io-index" 3539 - checksum = "8c2352bd1d0bceb871cb9d40f24360c8133c11d7486b68b5381c1dd1a32015e3" 3689 + checksum = "d1382b16c04aeb821453d6215a3c80ba78f24c6595c5aa85653378aabe0c83e3" 3540 3690 dependencies = [ 3541 3691 "libc", 3542 3692 ] ··· 3813 3963 3814 3964 [[package]] 3815 3965 name = "linux-raw-sys" 3816 - version = "0.3.8" 3966 + version = "0.4.5" 3817 3967 source = "registry+https://github.com/rust-lang/crates.io-index" 3818 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 3968 + checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 3969 + 3970 + [[package]] 3971 + name = "livekit-api" 3972 + version = "0.1.3" 3973 + source = "registry+https://github.com/rust-lang/crates.io-index" 3974 + checksum = "e0d4c5d731bb0da7b313c982ee32300e7caf1ee0595c0d1e57d00f43248c0c47" 3975 + dependencies = [ 3976 + "futures-util", 3977 + "jsonwebtoken", 3978 + "livekit-protocol", 3979 + "log", 3980 + "parking_lot", 3981 + "prost", 3982 + "reqwest", 3983 + "serde", 3984 + "serde_json", 3985 + "sha2", 3986 + "thiserror", 3987 + "tokio", 3988 + "tokio-tungstenite", 3989 + "url", 3990 + ] 3819 3991 3820 3992 [[package]] 3821 - name = "linux-raw-sys" 3822 - version = "0.4.3" 3993 + name = "livekit-protocol" 3994 + version = "0.1.3" 3823 3995 source = "registry+https://github.com/rust-lang/crates.io-index" 3824 - checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0" 3996 + checksum = "81bd731959a8dccc17248499b9952693f593bee4bb79186bf60d180b4097be59" 3997 + dependencies = [ 3998 + "futures-util", 3999 + "parking_lot", 4000 + "prost", 4001 + "prost-types", 4002 + "tokio", 4003 + ] 3825 4004 3826 4005 [[package]] 3827 4006 name = "lock_api" ··· 4098 4277 dependencies = [ 4099 4278 "proc-macro2", 4100 4279 "quote", 4101 - "syn 2.0.26", 4280 + "syn 2.0.28", 4102 4281 ] 4103 4282 4104 4283 [[package]] ··· 4126 4305 4127 4306 [[package]] 4128 4307 name = "num-traits" 4129 - version = "0.2.15" 4308 + version = "0.2.16" 4130 4309 source = "registry+https://github.com/rust-lang/crates.io-index" 4131 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 4310 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 4132 4311 dependencies = [ 4133 4312 "autocfg", 4134 4313 "libm", ··· 4176 4355 4177 4356 [[package]] 4178 4357 name = "openssl" 4179 - version = "0.10.55" 4358 + version = "0.10.56" 4180 4359 source = "registry+https://github.com/rust-lang/crates.io-index" 4181 - checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d" 4360 + checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" 4182 4361 dependencies = [ 4183 4362 "bitflags 1.3.2", 4184 4363 "cfg-if", ··· 4197 4376 dependencies = [ 4198 4377 "proc-macro2", 4199 4378 "quote", 4200 - "syn 2.0.26", 4379 + "syn 2.0.28", 4201 4380 ] 4202 4381 4203 4382 [[package]] ··· 4208 4387 4209 4388 [[package]] 4210 4389 name = "openssl-sys" 4211 - version = "0.9.90" 4390 + version = "0.9.91" 4212 4391 source = "registry+https://github.com/rust-lang/crates.io-index" 4213 - checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6" 4392 + checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac" 4214 4393 dependencies = [ 4215 4394 "cc", 4216 4395 "libc", ··· 4241 4420 4242 4421 [[package]] 4243 4422 name = "pango" 4244 - version = "0.17.10" 4245 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 4423 + version = "0.18.1" 4424 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 4246 4425 dependencies = [ 4247 - "bitflags 1.3.2", 4248 4426 "gio", 4249 4427 "glib", 4250 4428 "libc", ··· 4254 4432 4255 4433 [[package]] 4256 4434 name = "pango-sys" 4257 - version = "0.17.10" 4258 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 4435 + version = "0.18.1" 4436 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 4259 4437 dependencies = [ 4260 4438 "glib-sys", 4261 4439 "gobject-sys", ··· 4265 4443 4266 4444 [[package]] 4267 4445 name = "pangocairo" 4268 - version = "0.17.10" 4269 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 4446 + version = "0.18.1" 4447 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 4270 4448 dependencies = [ 4271 - "bitflags 1.3.2", 4272 4449 "cairo-rs", 4273 4450 "glib", 4274 4451 "libc", ··· 4278 4455 4279 4456 [[package]] 4280 4457 name = "pangocairo-sys" 4281 - version = "0.17.10" 4282 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 4458 + version = "0.18.1" 4459 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 4283 4460 dependencies = [ 4284 4461 "cairo-sys-rs", 4285 4462 "glib-sys", ··· 4360 4537 4361 4538 [[package]] 4362 4539 name = "pin-project" 4363 - version = "1.1.2" 4540 + version = "1.1.3" 4364 4541 source = "registry+https://github.com/rust-lang/crates.io-index" 4365 - checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842" 4542 + checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 4366 4543 dependencies = [ 4367 4544 "pin-project-internal", 4368 4545 ] 4369 4546 4370 4547 [[package]] 4371 4548 name = "pin-project-internal" 4372 - version = "1.1.2" 4549 + version = "1.1.3" 4373 4550 source = "registry+https://github.com/rust-lang/crates.io-index" 4374 - checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c" 4551 + checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 4375 4552 dependencies = [ 4376 4553 "proc-macro2", 4377 4554 "quote", 4378 - "syn 2.0.26", 4555 + "syn 2.0.28", 4379 4556 ] 4380 4557 4381 4558 [[package]] 4382 4559 name = "pin-project-lite" 4383 - version = "0.2.10" 4560 + version = "0.2.12" 4384 4561 source = "registry+https://github.com/rust-lang/crates.io-index" 4385 - checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 4562 + checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 4386 4563 4387 4564 [[package]] 4388 4565 name = "pin-utils" ··· 4516 4693 ] 4517 4694 4518 4695 [[package]] 4696 + name = "prost" 4697 + version = "0.11.9" 4698 + source = "registry+https://github.com/rust-lang/crates.io-index" 4699 + checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" 4700 + dependencies = [ 4701 + "bytes", 4702 + "prost-derive", 4703 + ] 4704 + 4705 + [[package]] 4706 + name = "prost-derive" 4707 + version = "0.11.9" 4708 + source = "registry+https://github.com/rust-lang/crates.io-index" 4709 + checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" 4710 + dependencies = [ 4711 + "anyhow", 4712 + "itertools 0.10.5", 4713 + "proc-macro2", 4714 + "quote", 4715 + "syn 1.0.109", 4716 + ] 4717 + 4718 + [[package]] 4719 + name = "prost-types" 4720 + version = "0.11.9" 4721 + source = "registry+https://github.com/rust-lang/crates.io-index" 4722 + checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" 4723 + dependencies = [ 4724 + "prost", 4725 + ] 4726 + 4727 + [[package]] 4519 4728 name = "protobuf" 4520 4729 version = "2.28.0" 4521 4730 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4557 4766 ] 4558 4767 4559 4768 [[package]] 4769 + name = "quick-xml" 4770 + version = "0.30.0" 4771 + source = "registry+https://github.com/rust-lang/crates.io-index" 4772 + checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 4773 + dependencies = [ 4774 + "memchr", 4775 + "serde", 4776 + ] 4777 + 4778 + [[package]] 4560 4779 name = "quote" 4561 - version = "1.0.31" 4780 + version = "1.0.32" 4562 4781 source = "registry+https://github.com/rust-lang/crates.io-index" 4563 - checksum = "5fe8a65d69dd0808184ebb5f836ab526bb259db23c657efa38711b1072ee47f0" 4782 + checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" 4564 4783 dependencies = [ 4565 4784 "proc-macro2", 4566 4785 ] ··· 4699 4918 4700 4919 [[package]] 4701 4920 name = "regex" 4702 - version = "1.9.1" 4921 + version = "1.9.3" 4703 4922 source = "registry+https://github.com/rust-lang/crates.io-index" 4704 - checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" 4923 + checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" 4705 4924 dependencies = [ 4706 4925 "aho-corasick", 4707 4926 "memchr", 4708 - "regex-automata 0.3.3", 4927 + "regex-automata 0.3.6", 4709 4928 "regex-syntax 0.7.4", 4710 4929 ] 4711 4930 ··· 4720 4939 4721 4940 [[package]] 4722 4941 name = "regex-automata" 4723 - version = "0.3.3" 4942 + version = "0.3.6" 4724 4943 source = "registry+https://github.com/rust-lang/crates.io-index" 4725 - checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" 4944 + checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" 4726 4945 dependencies = [ 4727 4946 "aho-corasick", 4728 4947 "memchr", ··· 4894 5113 4895 5114 [[package]] 4896 5115 name = "rustix" 4897 - version = "0.37.23" 5116 + version = "0.38.7" 4898 5117 source = "registry+https://github.com/rust-lang/crates.io-index" 4899 - checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" 4900 - dependencies = [ 4901 - "bitflags 1.3.2", 4902 - "errno", 4903 - "io-lifetimes", 4904 - "libc", 4905 - "linux-raw-sys 0.3.8", 4906 - "windows-sys", 4907 - ] 4908 - 4909 - [[package]] 4910 - name = "rustix" 4911 - version = "0.38.4" 4912 - source = "registry+https://github.com/rust-lang/crates.io-index" 4913 - checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5" 5118 + checksum = "172891ebdceb05aa0005f533a6cbfca599ddd7d966f6f5d4d9b2e70478e70399" 4914 5119 dependencies = [ 4915 5120 "bitflags 2.3.3", 4916 5121 "errno", 4917 5122 "libc", 4918 - "linux-raw-sys 0.4.3", 5123 + "linux-raw-sys", 4919 5124 "windows-sys", 4920 5125 ] 4921 5126 4922 5127 [[package]] 4923 5128 name = "rustls" 4924 - version = "0.20.8" 5129 + version = "0.21.6" 4925 5130 source = "registry+https://github.com/rust-lang/crates.io-index" 4926 - checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 5131 + checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb" 4927 5132 dependencies = [ 4928 5133 "log", 4929 5134 "ring", 5135 + "rustls-webpki", 4930 5136 "sct", 4931 - "webpki", 4932 5137 ] 4933 5138 4934 5139 [[package]] ··· 4953 5158 ] 4954 5159 4955 5160 [[package]] 5161 + name = "rustls-webpki" 5162 + version = "0.101.3" 5163 + source = "registry+https://github.com/rust-lang/crates.io-index" 5164 + checksum = "261e9e0888cba427c3316e6322805653c9425240b6fd96cee7cb671ab70ab8d0" 5165 + dependencies = [ 5166 + "ring", 5167 + "untrusted", 5168 + ] 5169 + 5170 + [[package]] 4956 5171 name = "ryu" 4957 5172 version = "1.0.15" 4958 5173 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4994 5209 4995 5210 [[package]] 4996 5211 name = "security-framework" 4997 - version = "2.9.1" 5212 + version = "2.9.2" 4998 5213 source = "registry+https://github.com/rust-lang/crates.io-index" 4999 - checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8" 5214 + checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 5000 5215 dependencies = [ 5001 5216 "bitflags 1.3.2", 5002 5217 "core-foundation", ··· 5007 5222 5008 5223 [[package]] 5009 5224 name = "security-framework-sys" 5010 - version = "2.9.0" 5225 + version = "2.9.1" 5011 5226 source = "registry+https://github.com/rust-lang/crates.io-index" 5012 - checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7" 5227 + checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 5013 5228 dependencies = [ 5014 5229 "core-foundation-sys", 5015 5230 "libc", ··· 5026 5241 5027 5242 [[package]] 5028 5243 name = "serde" 5029 - version = "1.0.171" 5244 + version = "1.0.183" 5030 5245 source = "registry+https://github.com/rust-lang/crates.io-index" 5031 - checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9" 5246 + checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" 5032 5247 dependencies = [ 5033 5248 "serde_derive", 5034 5249 ] ··· 5044 5259 5045 5260 [[package]] 5046 5261 name = "serde_derive" 5047 - version = "1.0.171" 5262 + version = "1.0.183" 5048 5263 source = "registry+https://github.com/rust-lang/crates.io-index" 5049 - checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682" 5264 + checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" 5050 5265 dependencies = [ 5051 5266 "proc-macro2", 5052 5267 "quote", 5053 - "syn 2.0.26", 5268 + "syn 2.0.28", 5054 5269 ] 5055 5270 5056 5271 [[package]] 5057 5272 name = "serde_json" 5058 - version = "1.0.103" 5273 + version = "1.0.104" 5059 5274 source = "registry+https://github.com/rust-lang/crates.io-index" 5060 - checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b" 5275 + checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" 5061 5276 dependencies = [ 5062 5277 "itoa", 5063 5278 "ryu", ··· 5086 5301 ] 5087 5302 5088 5303 [[package]] 5304 + name = "serde_with" 5305 + version = "3.2.0" 5306 + source = "registry+https://github.com/rust-lang/crates.io-index" 5307 + checksum = "1402f54f9a3b9e2efe71c1cea24e648acce55887983553eeb858cf3115acfd49" 5308 + dependencies = [ 5309 + "base64 0.21.2", 5310 + "chrono", 5311 + "hex", 5312 + "indexmap 1.9.3", 5313 + "indexmap 2.0.0", 5314 + "serde", 5315 + "serde_json", 5316 + "serde_with_macros", 5317 + "time 0.3.25", 5318 + ] 5319 + 5320 + [[package]] 5321 + name = "serde_with_macros" 5322 + version = "3.2.0" 5323 + source = "registry+https://github.com/rust-lang/crates.io-index" 5324 + checksum = "9197f1ad0e3c173a0222d3c4404fb04c3afe87e962bcb327af73e8301fa203c7" 5325 + dependencies = [ 5326 + "darling", 5327 + "proc-macro2", 5328 + "quote", 5329 + "syn 2.0.28", 5330 + ] 5331 + 5332 + [[package]] 5089 5333 name = "sha-1" 5090 5334 version = "0.9.8" 5091 5335 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5171 5415 5172 5416 [[package]] 5173 5417 name = "simd-adler32" 5174 - version = "0.3.5" 5418 + version = "0.3.7" 5175 5419 source = "registry+https://github.com/rust-lang/crates.io-index" 5176 - checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f" 5420 + checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 5177 5421 5178 5422 [[package]] 5179 5423 name = "simd_helpers" ··· 5283 5527 5284 5528 [[package]] 5285 5529 name = "syn" 5286 - version = "2.0.26" 5530 + version = "2.0.28" 5287 5531 source = "registry+https://github.com/rust-lang/crates.io-index" 5288 - checksum = "45c3457aacde3c65315de5031ec191ce46604304d2446e803d71ade03308d970" 5532 + checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567" 5289 5533 dependencies = [ 5290 5534 "proc-macro2", 5291 5535 "quote", ··· 5307 5551 5308 5552 [[package]] 5309 5553 name = "target-lexicon" 5310 - version = "0.12.10" 5554 + version = "0.12.11" 5311 5555 source = "registry+https://github.com/rust-lang/crates.io-index" 5312 - checksum = "1d2faeef5759ab89935255b1a4cd98e0baf99d1085e37d36599c625dac49ae8e" 5556 + checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" 5313 5557 5314 5558 [[package]] 5315 5559 name = "tempfile" 5316 - version = "3.6.0" 5560 + version = "3.7.1" 5317 5561 source = "registry+https://github.com/rust-lang/crates.io-index" 5318 - checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6" 5562 + checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" 5319 5563 dependencies = [ 5320 - "autocfg", 5321 5564 "cfg-if", 5322 - "fastrand 1.9.0", 5565 + "fastrand", 5323 5566 "redox_syscall 0.3.5", 5324 - "rustix 0.37.23", 5567 + "rustix", 5325 5568 "windows-sys", 5326 5569 ] 5327 5570 ··· 5347 5590 5348 5591 [[package]] 5349 5592 name = "test-with" 5350 - version = "0.9.7" 5593 + version = "0.10.0" 5351 5594 source = "registry+https://github.com/rust-lang/crates.io-index" 5352 - checksum = "ca3e3e1275a1442b99772321d4a35e0622f7abc04f6af49bd801c7119645bc9e" 5595 + checksum = "5ea821854cf861c2bd28c19253b5b036fa4a6990745897bdb18a511b787c0187" 5353 5596 dependencies = [ 5354 5597 "proc-macro-error", 5355 5598 "proc-macro2", 5356 5599 "quote", 5357 5600 "regex", 5358 - "syn 2.0.26", 5601 + "syn 2.0.28", 5359 5602 ] 5360 5603 5361 5604 [[package]] ··· 5372 5615 5373 5616 [[package]] 5374 5617 name = "thiserror" 5375 - version = "1.0.43" 5618 + version = "1.0.44" 5376 5619 source = "registry+https://github.com/rust-lang/crates.io-index" 5377 - checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42" 5620 + checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" 5378 5621 dependencies = [ 5379 5622 "thiserror-impl", 5380 5623 ] 5381 5624 5382 5625 [[package]] 5383 5626 name = "thiserror-impl" 5384 - version = "1.0.43" 5627 + version = "1.0.44" 5385 5628 source = "registry+https://github.com/rust-lang/crates.io-index" 5386 - checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f" 5629 + checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" 5387 5630 dependencies = [ 5388 5631 "proc-macro2", 5389 5632 "quote", 5390 - "syn 2.0.26", 5633 + "syn 2.0.28", 5391 5634 ] 5392 5635 5393 5636 [[package]] ··· 5424 5667 5425 5668 [[package]] 5426 5669 name = "time" 5427 - version = "0.3.20" 5670 + version = "0.3.25" 5428 5671 source = "registry+https://github.com/rust-lang/crates.io-index" 5429 - checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 5672 + checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" 5430 5673 dependencies = [ 5674 + "deranged", 5431 5675 "itoa", 5432 5676 "serde", 5433 5677 "time-core", ··· 5436 5680 5437 5681 [[package]] 5438 5682 name = "time-core" 5439 - version = "0.1.0" 5683 + version = "0.1.1" 5440 5684 source = "registry+https://github.com/rust-lang/crates.io-index" 5441 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 5685 + checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 5442 5686 5443 5687 [[package]] 5444 5688 name = "time-macros" 5445 - version = "0.2.8" 5689 + version = "0.2.11" 5446 5690 source = "registry+https://github.com/rust-lang/crates.io-index" 5447 - checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" 5691 + checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd" 5448 5692 dependencies = [ 5449 5693 "time-core", 5450 5694 ] ··· 5466 5710 5467 5711 [[package]] 5468 5712 name = "tokio" 5469 - version = "1.29.1" 5713 + version = "1.30.0" 5470 5714 source = "registry+https://github.com/rust-lang/crates.io-index" 5471 - checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" 5715 + checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd" 5472 5716 dependencies = [ 5473 - "autocfg", 5474 5717 "backtrace", 5475 5718 "bytes", 5476 5719 "libc", ··· 5479 5722 "parking_lot", 5480 5723 "pin-project-lite", 5481 5724 "signal-hook-registry", 5482 - "socket2 0.4.9", 5725 + "socket2 0.5.3", 5483 5726 "tokio-macros", 5484 5727 "windows-sys", 5485 5728 ] ··· 5492 5735 dependencies = [ 5493 5736 "proc-macro2", 5494 5737 "quote", 5495 - "syn 2.0.26", 5738 + "syn 2.0.28", 5496 5739 ] 5497 5740 5498 5741 [[package]] ··· 5507 5750 5508 5751 [[package]] 5509 5752 name = "tokio-rustls" 5510 - version = "0.23.4" 5753 + version = "0.24.1" 5511 5754 source = "registry+https://github.com/rust-lang/crates.io-index" 5512 - checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 5755 + checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 5513 5756 dependencies = [ 5514 5757 "rustls", 5515 5758 "tokio", 5516 - "webpki", 5517 5759 ] 5518 5760 5519 5761 [[package]] ··· 5528 5770 ] 5529 5771 5530 5772 [[package]] 5773 + name = "tokio-tungstenite" 5774 + version = "0.19.0" 5775 + source = "registry+https://github.com/rust-lang/crates.io-index" 5776 + checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c" 5777 + dependencies = [ 5778 + "futures-util", 5779 + "log", 5780 + "native-tls", 5781 + "tokio", 5782 + "tokio-native-tls", 5783 + "tungstenite 0.19.0", 5784 + ] 5785 + 5786 + [[package]] 5531 5787 name = "tokio-util" 5532 5788 version = "0.7.8" 5533 5789 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5633 5889 dependencies = [ 5634 5890 "proc-macro2", 5635 5891 "quote", 5636 - "syn 2.0.26", 5892 + "syn 2.0.28", 5637 5893 ] 5638 5894 5639 5895 [[package]] ··· 5712 5968 ] 5713 5969 5714 5970 [[package]] 5971 + name = "tungstenite" 5972 + version = "0.20.0" 5973 + source = "registry+https://github.com/rust-lang/crates.io-index" 5974 + checksum = "e862a1c4128df0112ab625f55cd5c934bcb4312ba80b39ae4b4835a3fd58e649" 5975 + dependencies = [ 5976 + "byteorder", 5977 + "bytes", 5978 + "data-encoding", 5979 + "http", 5980 + "httparse", 5981 + "log", 5982 + "native-tls", 5983 + "rand", 5984 + "sha1", 5985 + "thiserror", 5986 + "url", 5987 + "utf-8", 5988 + ] 5989 + 5990 + [[package]] 5715 5991 name = "typenum" 5716 5992 version = "1.16.0" 5717 5993 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5731 6007 5732 6008 [[package]] 5733 6009 name = "unicode-linebreak" 5734 - version = "0.1.4" 6010 + version = "0.1.5" 5735 6011 source = "registry+https://github.com/rust-lang/crates.io-index" 5736 - checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137" 5737 - dependencies = [ 5738 - "hashbrown 0.12.3", 5739 - "regex", 5740 - ] 6012 + checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 5741 6013 5742 6014 [[package]] 5743 6015 name = "unicode-normalization" ··· 5772 6044 ] 5773 6045 5774 6046 [[package]] 6047 + name = "url-escape" 6048 + version = "0.1.1" 6049 + source = "registry+https://github.com/rust-lang/crates.io-index" 6050 + checksum = "44e0ce4d1246d075ca5abec4b41d33e87a6054d08e2366b63205665e950db218" 6051 + dependencies = [ 6052 + "percent-encoding", 6053 + ] 6054 + 6055 + [[package]] 5775 6056 name = "urlencoding" 5776 - version = "2.1.2" 6057 + version = "2.1.3" 5777 6058 source = "registry+https://github.com/rust-lang/crates.io-index" 5778 - checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9" 6059 + checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 5779 6060 5780 6061 [[package]] 5781 6062 name = "utf-8" ··· 5800 6081 5801 6082 [[package]] 5802 6083 name = "v_frame" 5803 - version = "0.3.5" 6084 + version = "0.3.6" 5804 6085 source = "registry+https://github.com/rust-lang/crates.io-index" 5805 - checksum = "bec8189c996a12ac77c50065f9c9f64961e56eb940d0ae1a4ccc7bea238bb4bc" 6086 + checksum = "85db69f33d00031c1b07f7292e56317d5aa9475bdbd3d27ef18f3633438a697e" 5806 6087 dependencies = [ 5807 6088 "cfg-if", 5808 6089 "noop_proc_macro", ··· 5916 6197 "once_cell", 5917 6198 "proc-macro2", 5918 6199 "quote", 5919 - "syn 2.0.26", 6200 + "syn 2.0.28", 5920 6201 "wasm-bindgen-shared", 5921 6202 ] 5922 6203 ··· 5950 6231 dependencies = [ 5951 6232 "proc-macro2", 5952 6233 "quote", 5953 - "syn 2.0.26", 6234 + "syn 2.0.28", 5954 6235 "wasm-bindgen-backend", 5955 6236 "wasm-bindgen-shared", 5956 6237 ] ··· 5972 6253 ] 5973 6254 5974 6255 [[package]] 5975 - name = "webpki" 5976 - version = "0.22.0" 5977 - source = "registry+https://github.com/rust-lang/crates.io-index" 5978 - checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 5979 - dependencies = [ 5980 - "ring", 5981 - "untrusted", 5982 - ] 5983 - 5984 - [[package]] 5985 6256 name = "weezl" 5986 6257 version = "0.1.7" 5987 6258 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6095 6366 6096 6367 [[package]] 6097 6368 name = "winnow" 6098 - version = "0.5.0" 6369 + version = "0.5.4" 6099 6370 source = "registry+https://github.com/rust-lang/crates.io-index" 6100 - checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7" 6371 + checksum = "acaaa1190073b2b101e15083c38ee8ec891b5e05cbee516521e94ec008f61e64" 6101 6372 dependencies = [ 6102 6373 "memchr", 6103 6374 ] ··· 6112 6383 ] 6113 6384 6114 6385 [[package]] 6386 + name = "xattr" 6387 + version = "1.0.1" 6388 + source = "registry+https://github.com/rust-lang/crates.io-index" 6389 + checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" 6390 + dependencies = [ 6391 + "libc", 6392 + ] 6393 + 6394 + [[package]] 6115 6395 name = "xml-rs" 6116 - version = "0.8.15" 6396 + version = "0.8.16" 6117 6397 source = "registry+https://github.com/rust-lang/crates.io-index" 6118 - checksum = "5a56c84a8ccd4258aed21c92f70c0f6dea75356b6892ae27c24139da456f9336" 6398 + checksum = "47430998a7b5d499ccee752b41567bc3afc57e1327dc855b1a2aa44ce29b5fa1" 6119 6399 6120 6400 [[package]] 6121 6401 name = "xmlparser" ··· 6140 6420 6141 6421 [[package]] 6142 6422 name = "zerocopy" 6143 - version = "0.6.1" 6423 + version = "0.6.3" 6144 6424 source = "registry+https://github.com/rust-lang/crates.io-index" 6145 - checksum = "332f188cc1bcf1fe1064b8c58d150f497e697f49774aa846f2dc949d9a25f236" 6425 + checksum = "f3b9c234616391070b0b173963ebc65a9195068e7ed3731c6edac2ec45ebe106" 6146 6426 dependencies = [ 6147 6427 "byteorder", 6148 6428 "zerocopy-derive", ··· 6150 6430 6151 6431 [[package]] 6152 6432 name = "zerocopy-derive" 6153 - version = "0.3.2" 6433 + version = "0.6.3" 6154 6434 source = "registry+https://github.com/rust-lang/crates.io-index" 6155 - checksum = "6505e6815af7de1746a08f69c69606bb45695a17149517680f3b2149713b19a3" 6435 + checksum = "8f7f3a471f98d0a61c34322fbbfd10c384b07687f680d4119813713f72308d91" 6156 6436 dependencies = [ 6157 6437 "proc-macro2", 6158 6438 "quote", 6159 - "syn 1.0.109", 6439 + "syn 2.0.28", 6160 6440 ] 6161 6441 6162 6442 [[package]]
+6 -6
pkgs/development/libraries/gstreamer/rs/default.nix
··· 103 103 "threadshare" # tests cannot bind to localhost on darwin 104 104 "webp" # not supported on darwin (upstream crate issue) 105 105 ] ++ lib.optionals (!gst-plugins-base.glEnabled) [ 106 - # these require gstreamer-gl which requires darwin sdk bump 106 + # these require gstreamer-gl 107 107 "gtk4" 108 108 "livesync" 109 109 "fallbackswitch" ··· 130 130 131 131 stdenv.mkDerivation rec { 132 132 pname = "gst-plugins-rs"; 133 - version = "0.10.11"; 133 + version = "0.11.0+fixup"; 134 134 135 135 outputs = [ "out" "dev" ]; 136 136 ··· 139 139 owner = "gstreamer"; 140 140 repo = "gst-plugins-rs"; 141 141 rev = version; 142 - hash = "sha256-oOoUGzbg/ib1pA0T81hxgLlHnTRlNCWH5qZUNAutn8U="; 142 + hash = "sha256-nvDvcY/WyVhcxitcoqgEUT8A1synZqxG2e51ct7Fgss="; 143 143 # TODO: temporary workaround for case-insensitivity problems with color-name crate - https://github.com/annymosse/color-name/pull/2 144 144 postFetch = '' 145 145 sedSearch="$(cat <<\EOF | sed -ze 's/\n/\\n/g' ··· 164 164 cargoDeps = rustPlatform.importCargoLock { 165 165 lockFile = ./Cargo.lock; 166 166 outputHashes = { 167 - "cairo-rs-0.17.10" = "sha256-g7d1ccSbGIPVMu73mb5QvWVSN8XAB1xLZuWfgdd1cfU="; 167 + "cairo-rs-0.18.1" = "sha256-k+YIAZXxejbxPQqbUU91qbx2AR98gTrseknLHtNZDEE="; 168 168 "color-name-1.1.0" = "sha256-RfMStbe2wX5qjPARHIFHlSDKjzx8DwJ+RjzyltM5K7A="; 169 169 "ffv1-0.0.0" = "sha256-af2VD00tMf/hkfvrtGrHTjVJqbl+VVpLaR0Ry+2niJE="; 170 170 "flavors-0.2.0" = "sha256-zBa0X75lXnASDBam9Kk6w7K7xuH9fP6rmjWZBUB5hxk="; 171 - "gdk4-0.6.6" = "sha256-1WPXxsZJoYEQxVuP/CSpGs2XEZSJD//JJz4Ka2hxXHM="; 172 - "gstreamer-0.20.7" = "sha256-o4o4mPFAZOshNNkCkykjG/b+UtT2z6TNLOEzJsfs+Mk="; 171 + "gdk4-0.7.1" = "sha256-UMGmZivVdvmKRAjIGlj6pjDxwfNJyz8/6C0eYH1OOw4="; 172 + "gstreamer-0.21.0" = "sha256-2uilK8wYG8e59fdL3q+kmixc1zw+EBwqvGs/EgfCGhk="; 173 173 }; 174 174 }; 175 175
+21
pkgs/development/nim-packages/safeseq/default.nix
··· 1 + { lib, buildNimPackage, fetchFromGitHub }: 2 + buildNimPackage rec { 3 + pname = "safeseq"; 4 + 5 + version = "1.0.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "avahe-kellenberger"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + hash = "sha256-JSz2TPrbl5N8l+YDquad78aJMBsx+Lise27cMQKMdAc="; 12 + }; 13 + 14 + 15 + meta = with lib; 16 + src.meta // { 17 + description = "safeseq library for nim"; 18 + license = [ licenses.gpl2 ]; 19 + maintainers = [ maintainers.marcusramberg ]; 20 + }; 21 + }
+60
pkgs/development/php-packages/castor/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , makeBinaryWrapper 5 + , installShellFiles 6 + , php 7 + , nix-update-script 8 + , testers 9 + , castor 10 + }: 11 + 12 + stdenv.mkDerivation (finalAttrs: { 13 + pname = "castor"; 14 + version = "0.8.0"; 15 + 16 + 17 + src = fetchurl { 18 + url = "https://github.com/jolicode/castor/releases/download/v${finalAttrs.version}/castor.linux-amd64.phar"; 19 + hash = "sha256-0lnn4mS1/DgUoRoMFvCjwQ0j9CX9XWlskbtX9roFCfc="; 20 + }; 21 + 22 + dontUnpack = true; 23 + 24 + nativeBuildInputs = [ makeBinaryWrapper installShellFiles ]; 25 + 26 + installPhase = '' 27 + runHook preInstall 28 + mkdir -p $out/bin 29 + install -D $src $out/libexec/castor/castor.phar 30 + makeWrapper ${php}/bin/php $out/bin/castor \ 31 + --add-flags "$out/libexec/castor/castor.phar" 32 + runHook postInstall 33 + ''; 34 + 35 + # castor requires to be initialized to generate completion files 36 + postInstall = '' 37 + echo "yes" | ${php}/bin/php $src 38 + installShellCompletion --cmd castor \ 39 + --bash <($out/bin/castor completion bash) \ 40 + --fish <($out/bin/castor completion fish) \ 41 + --zsh <($out/bin/castor completion zsh) 42 + ''; 43 + 44 + passthru = { 45 + updateScript = nix-update-script { }; 46 + tests.version = testers.testVersion { 47 + inherit (finalAttrs) version; 48 + package = castor; 49 + command = "castor --version"; 50 + }; 51 + }; 52 + 53 + meta = with lib; { 54 + description = "DX oriented task runner and command launcher built with PHP"; 55 + homepage = "https://github.com/jolicode/castor"; 56 + changelog = "https://github.com/jolicode/castor/blob/v${finalAttrs.version}/CHANGELOG.md"; 57 + license = licenses.mit; 58 + maintainers = with maintainers; [ gaelreyrol ]; 59 + }; 60 + })
+2 -2
pkgs/development/python-modules/aliyun-python-sdk-config/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "aliyun-python-sdk-config"; 10 - version = "2.2.11"; 10 + version = "2.2.12"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-nkCNzOg6JYQkIlmcFm3VIjHvoHDK7hfw4PhrUwnNp28="; 17 + hash = "sha256-blrT/yCQ2vxaociSqKvRX3fUyKLsAFT3UyFGB/AzZHI="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/bellows/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "bellows"; 18 - version = "0.35.9"; 18 + version = "0.36.1"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.8"; ··· 24 24 owner = "zigpy"; 25 25 repo = "bellows"; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-68t6l7/30euGo0dX5HTnGMl65j6UVF2f9fYZH6EhlzI="; 27 + hash = "sha256-HaZXhbYL/mrkjxV7AA6OOuBzHGy1wLutxLtLgL7XGwE="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/certipy-ad/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "certipy-ad"; 21 - version = "4.7.0"; 21 + version = "4.8.0"; 22 22 format = "setuptools"; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 27 27 owner = "ly4k"; 28 28 repo = "Certipy"; 29 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-CkIxk+Aps9TRA2wEE/zZKl9t4CyjxEsgLntbn9kWY6o="; 30 + hash = "sha256-CyTwaCYhxUqvycZBKSzTWLKmKvebCNyE4vqTUnaX1V0="; 31 31 }; 32 32 33 33 postPatch = ''
+2 -2
pkgs/development/python-modules/griffe/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "griffe"; 15 - version = "0.35.2"; 15 + version = "0.36.0"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "mkdocstrings"; 22 22 repo = pname; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-Sskz14aAPqUXhQjetPfhjVm8gjG4yrck3sHpgD37DPU="; 24 + hash = "sha256-tpr26vVsNhCRKUk0Wj07BAEy0iS2pWHoOFQxtrqN9ic="; 25 25 }; 26 26 27 27 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/gvm-tools/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "gvm-tools"; 13 - version = "23.4.0"; 13 + version = "23.9.0"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "greenbone"; 20 20 repo = pname; 21 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-L7GR50nlcm2EQ6YxLAfieQJ+vPUrCrj72KNSY73LFko="; 22 + hash = "sha256-W49jmFwLrCu8NhQ65ll3iu+QbnHBA5sCeUgSLYLrui0="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+3 -3
pkgs/development/python-modules/magic-filter/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "magic-filter"; 11 - version = "1.0.10"; 11 + version = "1.0.11"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 16 16 src = fetchFromGitHub { 17 17 owner = "aiogram"; 18 18 repo = "magic-filter"; 19 - rev = "v${version}"; 20 - hash = "sha256-mHqq/ci8uMACNutwmxKX1nrl3nTSnSyU2x1VxzWxqzM="; 19 + rev = "refs/tags/v${version}"; 20 + hash = "sha256-mfSq47UWOLyEDkAsdHsJuVl/rJ4KgiGPpDL7qSKEfws="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/peft/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "peft"; 17 - version = "0.4.0"; 17 + version = "0.5.0"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.8"; ··· 23 23 owner = "huggingface"; 24 24 repo = pname; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-riOCe43/2xUpE6TTCEpMndeFTbaBN4JFDlv90tqVO4Y="; 26 + hash = "sha256-FaD873ksim7ewOI6Wqcv+GuPmH45+yAvbJC1H/DSfI8="; 27 27 }; 28 28 29 29 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/python-pptx/default.nix
··· 7 7 }: 8 8 buildPythonPackage rec { 9 9 pname = "python-pptx"; 10 - version = "0.6.21"; 10 + version = "0.6.22"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - hash = "sha256-d5iiqviVY1ZbPHEgwKz+mv93XbDbNYBUTjv0hAwuN48="; 14 + hash = "sha256-OPjukt3jHSS0ViVg5hsDV+XZfs91xDUq5mFtWjKXhlQ="; 15 15 }; 16 16 17 17 # postPatch = ''
+2 -2
pkgs/development/python-modules/pyvesync/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pyvesync"; 10 - version = "2.1.9"; 10 + version = "2.1.10"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.6"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-88aCnPzC4RfmEsL05pgFoOCfz42R1eqaJGTmXoWu0gA="; 17 + hash = "sha256-ddtTtTAUpvS8DN1vKVN+CjnmYp20xyxHydwOaDRjWzo="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+8 -13
pkgs/development/python-modules/tempora/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , pythonOlder 5 - 6 - # build time 7 - , setuptools-scm 8 - 9 - # runtime 10 - , pytz 11 - , jaraco-functools 12 - 13 - # tests 14 4 , freezegun 5 + , jaraco-functools 15 6 , pytest-freezegun 16 7 , pytestCheckHook 8 + , pythonOlder 9 + , pytz 10 + , setuptools-scm 17 11 }: 18 12 19 13 buildPythonPackage rec { 20 14 pname = "tempora"; 21 - version = "5.2.1"; 15 + version = "5.5.0"; 22 16 format = "pyproject"; 23 17 24 - disabled = pythonOlder "3.7"; 18 + disabled = pythonOlder "3.8"; 25 19 26 20 src = fetchPypi { 27 21 inherit pname version; 28 - hash = "sha256-txdkhsWUinUgHo0LIe8sI8qAhHQGDfRyGMkilb3OUnY="; 22 + hash = "sha256-E+T8yZfQUJwzBtaEHwPpOBt+Xkayvr+ukVGvkAhfDCY="; 29 23 }; 30 24 31 25 nativeBuildInputs = [ ··· 53 47 meta = with lib; { 54 48 description = "Objects and routines pertaining to date and time"; 55 49 homepage = "https://github.com/jaraco/tempora"; 50 + changelog = "https://github.com/jaraco/tempora/blob/v${version}/NEWS.rst"; 56 51 license = licenses.mit; 57 52 maintainers = with maintainers; [ ]; 58 53 };
+2 -2
pkgs/development/tools/allure/default.nix
··· 2 2 3 3 let 4 4 pname = "allure"; 5 - version = "2.23.1"; 5 + version = "2.24.0"; 6 6 in 7 7 stdenv.mkDerivation rec { 8 8 inherit pname version; ··· 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/allure-framework/allure2/releases/download/${version}/allure-${version}.tgz"; 15 - sha256 = "sha256-B06QKq6X9epmRt1wbGORzh8fLUXRAHo1Tv2hWUXJ9Ds="; 15 + sha256 = "sha256-rLVvLqLC2hSxXWDxrw/PFq4o9DeDGU9aBxZuRHkxWfo="; 16 16 }; 17 17 dontConfigure = true; 18 18 dontBuild = true;
+3 -3
pkgs/development/tools/bearer/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "bearer"; 10 - version = "1.19.2"; 10 + version = "1.21.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "bearer"; 14 14 repo = "bearer"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-f0vH+GIWTlE23xWMiqbdOJFGWsrEGgz4YJt+4WEdruw="; 16 + hash = "sha256-ODhkIDt9x6ZfQy9TM6CKAkDI9RdtuVG7XrzaQeH0s2Q="; 17 17 }; 18 18 19 - vendorHash = "sha256-gqks+q8HxQ54UjRANXBvnfTzE14M8FxbnTMG/JN4ntk="; 19 + vendorHash = "sha256-CUQtfAEyFrkdtoZEWRaUPh1rJV5/0HP1clcmRAAinTI="; 20 20 21 21 subPackages = [ 22 22 "cmd/bearer"
+28 -21
pkgs/development/tools/misc/n98-magerun/default.nix
··· 1 - { stdenv, fetchFromGitHub, makeWrapper, unzip, lib, php81 }: 1 + { 2 + stdenv 3 + , fetchurl 4 + , makeBinaryWrapper 5 + , php 6 + , lib 7 + , unzip 8 + }: 2 9 3 - let 10 + stdenv.mkDerivation (finalAttrs: { 4 11 pname = "n98-magerun"; 5 12 version = "2.3.0"; 6 - in 7 - stdenv.mkDerivation { 8 - inherit pname version; 9 13 10 - src = fetchFromGitHub { 11 - owner = "netz98"; 12 - repo = "n98-magerun1-dist"; 13 - rev = version; 14 - sha256 = "sha256-T7wQmEEYMG0J6+9nRt+tiMuihjnjjQ7UWy1C0vKoQY4="; 14 + src = fetchurl { 15 + url = "https://github.com/netz98/n98-magerun/releases/download/${finalAttrs.version}/n98-magerun-${finalAttrs.version}.phar"; 16 + hash = "sha256-s+Cdr8zU3VBaBzxOh4nXjqPe+JPPxHWiFOEVS/86qOQ="; 15 17 }; 16 18 17 19 dontUnpack = true; 18 20 19 - nativeBuildInputs = [ makeWrapper ]; 21 + nativeBuildInputs = [ 22 + makeBinaryWrapper 23 + ]; 20 24 21 25 installPhase = '' 22 26 runHook preInstall 23 - mkdir -p $out/bin 24 - install -D $src/n98-magerun $out/libexec/n98-magerun/n98-magerun-${version}.phar 25 - makeWrapper ${php81}/bin/php $out/bin/n98-magerun \ 26 - --add-flags "$out/libexec/n98-magerun/n98-magerun-${version}.phar" \ 27 + 28 + mkdir -p $out/bin $out/libexec/n98-magerun 29 + 30 + install -D $src $out/libexec/n98-magerun/n98-magerun.phar 31 + makeWrapper ${php}/bin/php $out/bin/n98-magerun \ 32 + --add-flags "$out/libexec/n98-magerun/n98-magerun.phar" \ 27 33 --prefix PATH : ${lib.makeBinPath [ unzip ]} 34 + 28 35 runHook postInstall 29 36 ''; 30 37 31 - meta = with lib; { 38 + meta = { 39 + broken = true; # Not compatible with PHP 8.1, see https://github.com/netz98/n98-magerun/issues/1275 40 + changelog = "https://magerun.net/category/magerun/"; 32 41 description = "The swiss army knife for Magento1/OpenMage developers"; 33 - license = licenses.mit; 34 42 homepage = "https://magerun.net/"; 35 - changelog = "https://magerun.net/category/magerun/"; 36 - maintainers = teams.php.members; 37 - broken = true; # Not compatible with PHP 8.1, see https://github.com/netz98/n98-magerun/issues/1275 43 + license = lib.licenses.mit; 44 + maintainers = lib.teams.php.members; 38 45 }; 39 - } 46 + })
+27 -20
pkgs/development/tools/misc/n98-magerun2/default.nix
··· 1 - { stdenv, fetchFromGitHub, makeWrapper, unzip, lib, php }: 1 + { 2 + stdenv 3 + , fetchurl 4 + , makeBinaryWrapper 5 + , php 6 + , lib 7 + , unzip 8 + }: 2 9 3 - let 10 + stdenv.mkDerivation (finalAttrs: { 4 11 pname = "n98-magerun2"; 5 - version = "6.1.1"; 6 - in 7 - stdenv.mkDerivation { 8 - inherit pname version; 12 + version = "7.1.0"; 9 13 10 - src = fetchFromGitHub { 11 - owner = "netz98"; 12 - repo = "n98-magerun2-dist"; 13 - rev = version; 14 - sha256 = "sha256-D2U1kLG6sOpBHDzNQ/LbiFUknvFhK+rkOPgWvW0pNmY="; 14 + src = fetchurl { 15 + url = "https://github.com/netz98/n98-magerun2/releases/download/${finalAttrs.version}/n98-magerun2.phar"; 16 + hash = "sha256-DE5q1zoWZ4gJSs5JM5cr157oh5ufD1gaNt9X9vtuW/c="; 15 17 }; 16 18 17 19 dontUnpack = true; 18 20 19 - nativeBuildInputs = [ makeWrapper ]; 21 + nativeBuildInputs = [ 22 + makeBinaryWrapper 23 + ]; 20 24 21 25 installPhase = '' 22 26 runHook preInstall 23 - mkdir -p $out/bin 24 - install -D $src/n98-magerun2 $out/libexec/n98-magerun2/n98-magerun2-${version}.phar 27 + 28 + mkdir -p $out/bin $out/libexec/n98-magerun2 29 + 30 + install -D $src $out/libexec/n98-magerun2/n98-magerun2.phar 25 31 makeWrapper ${php}/bin/php $out/bin/n98-magerun2 \ 26 - --add-flags "$out/libexec/n98-magerun2/n98-magerun2-${version}.phar" \ 32 + --add-flags "$out/libexec/n98-magerun2/n98-magerun2.phar" \ 27 33 --prefix PATH : ${lib.makeBinPath [ unzip ]} 34 + 28 35 runHook postInstall 29 36 ''; 30 37 31 - meta = with lib; { 38 + meta = { 39 + changelog = "https://magerun.net/category/magerun/"; 32 40 description = "The swiss army knife for Magento2 developers"; 33 - license = licenses.mit; 34 41 homepage = "https://magerun.net/"; 35 - changelog = "https://magerun.net/category/magerun/"; 36 - maintainers = teams.php.members; 42 + license = lib.licenses.mit; 43 + maintainers = lib.teams.php.members; 37 44 }; 38 - } 45 + })
+8 -4
pkgs/development/tools/rust/cargo-audit/default.nix
··· 2 2 , rustPlatform 3 3 , fetchCrate 4 4 , pkg-config 5 + , libgit2_1_5 5 6 , openssl 7 + , zlib 6 8 , stdenv 7 9 , Security 8 10 }: 9 11 10 12 rustPlatform.buildRustPackage rec { 11 13 pname = "cargo-audit"; 12 - version = "0.17.6"; 14 + version = "0.18.1"; 13 15 14 16 src = fetchCrate { 15 17 inherit pname version; 16 - sha256 = "sha256-ICNcBqlkX1k3J5vc/bfoXw/+l2LdHOchv4PfY0G7Y94="; 18 + hash = "sha256-XK2SsyT4CyDjCF56v/g7tX5SZKC3krBQNs/ddeFu35A="; 17 19 }; 18 20 19 - cargoSha256 = "sha256-ViqaiSLVfDJhMuHjHGi+NVRLPcRhe2a+oKXl4UNM+K8="; 21 + cargoHash = "sha256-1Uifk1W7NCmHAbUl83GpMUBD6WWUl1J/HjtGv4dEuiA="; 20 22 21 23 nativeBuildInputs = [ 22 24 pkg-config 23 25 ]; 24 26 25 27 buildInputs = [ 28 + libgit2_1_5 26 29 openssl 30 + zlib 27 31 ] ++ lib.optionals stdenv.isDarwin [ 28 32 Security 29 33 ]; ··· 36 40 meta = with lib; { 37 41 description = "Audit Cargo.lock files for crates with security vulnerabilities"; 38 42 homepage = "https://rustsec.org"; 39 - changelog = "https://github.com/rustsec/rustsec/blob/cargo-audit/${version}/cargo-audit/CHANGELOG.md"; 43 + changelog = "https://github.com/rustsec/rustsec/blob/cargo-audit/v${version}/cargo-audit/CHANGELOG.md"; 40 44 license = with licenses; [ mit /* or */ asl20 ]; 41 45 maintainers = with maintainers; [ basvandijk figsoda jk ]; 42 46 };
+3 -3
pkgs/tools/admin/aws-nuke/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "aws-nuke"; 8 - version = "2.24.1"; 8 + version = "2.24.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "rebuy-de"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-AftmWmZFi9NIXNxbMEO1eIzRl3UwS3rxXZ4htJClEfo="; 14 + hash = "sha256-Zy+ULmGDUK4KGMJ5PXTyT8CSp0nC71AW/4Udl2ElOCg="; 15 15 }; 16 16 17 - vendorHash = "sha256-cYQlHl0fmLH5f+QNdJ+V6L9Ts8sa9y8l0oOIqdpJlL0="; 17 + vendorHash = "sha256-srQuR9ZoTjZR1XfewFv7wF188Q5FggMdicm71v6MY/8="; 18 18 19 19 overrideModAttrs = _: { 20 20 preBuild = ''
+2 -2
pkgs/tools/backup/borgbackup/default.nix
··· 16 16 17 17 python3Packages.buildPythonApplication rec { 18 18 pname = "borgbackup"; 19 - version = "1.2.4"; 19 + version = "1.2.6"; 20 20 format = "pyproject"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-pL1U6UaegbejCmcRQjEVq8gY2c2ETsscoOYQS8U3Tag="; 24 + hash = "sha256-t6b48IYDnu7HkHC5FPPGUe1/NhLJZTdK+RDSd8eiE50="; 25 25 }; 26 26 27 27 postPatch = ''
+2 -2
pkgs/tools/misc/steampipe/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "steampipe"; 5 - version = "0.20.10"; 5 + version = "0.20.11"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "turbot"; 9 9 repo = "steampipe"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-v0ZVyiFHiRsn6ARA7sLCfNfoljTFegCXb1/C4sY0vfg="; 11 + sha256 = "sha256-idMVQyRpWc4ZT9GZvQvShwIY9I9t9MArfih57trhJvc="; 12 12 }; 13 13 14 14 vendorHash = "sha256-VuUzo+afUazXH7jaR4Qm5Kfr6qiyHqdGLJWS3MX8oOA=";
+2 -2
pkgs/tools/misc/tgpt/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "tgpt"; 8 - version = "1.7.4"; 8 + version = "1.7.5"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "aandrew-me"; 12 12 repo = "tgpt"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-JOCoyGSIdHWa7/4fwSoaTFLqk5EE9Ni4UFCD7BvFeoQ="; 14 + hash = "sha256-68+cP/s4YR7y6ok2mctcMTqDoyErIs8Bf6Ce/x1P8pU="; 15 15 }; 16 16 17 17 vendorHash = "sha256-2I5JJWxM6aZx0eZu7taUTL11Y/5HIrXYC5aezrTbbsM=";
+2
pkgs/top-level/nim-packages.nix
··· 96 96 inherit (pkgs) rocksdb; 97 97 }; 98 98 99 + safeseq = callPackage ../development/nim-packages/safeseq { }; 100 + 99 101 safeset = callPackage ../development/nim-packages/safeset { }; 100 102 101 103 sass = callPackage ../development/nim-packages/sass { };
+2
pkgs/top-level/php-packages.nix
··· 169 169 tools = { 170 170 box = callPackage ../development/php-packages/box { }; 171 171 172 + castor = callPackage ../development/php-packages/castor { }; 173 + 172 174 composer = callPackage ../development/php-packages/composer { }; 173 175 174 176 deployer = callPackage ../development/php-packages/deployer { };