nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge staging-next into staging

authored by

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

+1050 -675
+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 ··· 36 35 pcre2 37 36 jack2 38 37 libpcap 38 + libslirp 39 39 qt5.qtbase 40 40 qt5.qttools 41 41 ] ++ lib.optional stdenv.isLinux alsa-lib ··· 62 60 postFixup = let 63 61 libPath = lib.makeLibraryPath ([ 64 62 libpcap 65 - fluidsynth 66 63 ] ++ lib.optional unfreeEnableDiscord discord-gamesdk); 67 64 libPathVar = if stdenv.isDarwin then "DYLD_LIBRARY_PATH" else "LD_LIBRARY_PATH"; 68 65 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 = [
+834 -554
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 ] ··· 125 136 126 137 [[package]] 127 138 name = "anstyle-wincon" 128 - version = "1.0.1" 139 + version = "1.0.2" 129 140 source = "registry+https://github.com/rust-lang/crates.io-index" 130 - checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 141 + checksum = "c677ab05e09154296dd37acecd46420c17b9713e8366facafa8fc0885167cf4c" 131 142 dependencies = [ 132 143 "anstyle", 133 144 "windows-sys", ··· 186 197 dependencies = [ 187 198 "proc-macro2", 188 199 "quote", 189 - "syn 2.0.26", 200 + "syn 2.0.28", 201 + ] 202 + 203 + [[package]] 204 + name = "async-stream" 205 + version = "0.3.5" 206 + source = "registry+https://github.com/rust-lang/crates.io-index" 207 + checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 208 + dependencies = [ 209 + "async-stream-impl", 210 + "futures-core", 211 + "pin-project-lite", 212 + ] 213 + 214 + [[package]] 215 + name = "async-stream-impl" 216 + version = "0.3.5" 217 + source = "registry+https://github.com/rust-lang/crates.io-index" 218 + checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 219 + dependencies = [ 220 + "proc-macro2", 221 + "quote", 222 + "syn 2.0.28", 190 223 ] 191 224 192 225 [[package]] ··· 219 208 220 209 [[package]] 221 210 name = "async-trait" 222 - version = "0.1.71" 211 + version = "0.1.72" 223 212 source = "registry+https://github.com/rust-lang/crates.io-index" 224 - checksum = "a564d521dd56509c4c47480d00b80ee55f7e385ae48db5744c67ad50c92d2ebf" 213 + checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09" 225 214 dependencies = [ 226 215 "proc-macro2", 227 216 "quote", 228 - "syn 2.0.26", 217 + "syn 2.0.28", 229 218 ] 230 219 231 220 [[package]] 232 221 name = "async-tungstenite" 233 - version = "0.22.2" 222 + version = "0.23.0" 234 223 source = "registry+https://github.com/rust-lang/crates.io-index" 235 - checksum = "ce01ac37fdc85f10a43c43bc582cbd566720357011578a935761075f898baf58" 224 + checksum = "a1e9efbe14612da0a19fb983059a0b621e9cf6225d7018ecab4f9988215540dc" 236 225 dependencies = [ 237 226 "futures-io", 238 227 "futures-util", ··· 241 230 "pin-project-lite", 242 231 "tokio", 243 232 "tokio-native-tls", 244 - "tungstenite", 233 + "tungstenite 0.20.0", 245 234 ] 246 235 247 236 [[package]] ··· 285 274 286 275 [[package]] 287 276 name = "aws-config" 288 - version = "0.55.3" 277 + version = "0.56.0" 289 278 source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "bcdcf0d683fe9c23d32cf5b53c9918ea0a500375a9fb20109802552658e576c9" 279 + checksum = "de3d533e0263bf453cc80af4c8bcc4d64e2aca293bd16f81633a36f1bf4a97cb" 291 280 dependencies = [ 292 281 "aws-credential-types", 293 282 "aws-http", ··· 301 290 "aws-smithy-types", 302 291 "aws-types", 303 292 "bytes", 304 - "fastrand 1.9.0", 293 + "fastrand", 305 294 "hex", 306 295 "http", 307 296 "hyper", 308 297 "ring", 309 - "time 0.3.20", 298 + "time 0.3.25", 310 299 "tokio", 311 300 "tower", 312 301 "tracing", ··· 315 304 316 305 [[package]] 317 306 name = "aws-credential-types" 318 - version = "0.55.3" 307 + version = "0.56.0" 319 308 source = "registry+https://github.com/rust-lang/crates.io-index" 320 - checksum = "1fcdb2f7acbc076ff5ad05e7864bdb191ca70a6fd07668dc3a1a8bcd051de5ae" 309 + checksum = "e4834ba01c5ad1ed9740aa222de62190e3c565d11ab7e72cc68314a258994567" 321 310 dependencies = [ 322 311 "aws-smithy-async", 323 312 "aws-smithy-types", 324 - "fastrand 1.9.0", 313 + "fastrand", 325 314 "tokio", 326 315 "tracing", 327 316 "zeroize", 328 317 ] 329 318 330 319 [[package]] 331 - name = "aws-endpoint" 332 - version = "0.55.3" 333 - source = "registry+https://github.com/rust-lang/crates.io-index" 334 - checksum = "8cce1c41a6cfaa726adee9ebb9a56fcd2bbfd8be49fd8a04c5e20fd968330b04" 335 - dependencies = [ 336 - "aws-smithy-http", 337 - "aws-smithy-types", 338 - "aws-types", 339 - "http", 340 - "regex", 341 - "tracing", 342 - ] 343 - 344 - [[package]] 345 320 name = "aws-http" 346 - version = "0.55.3" 321 + version = "0.56.0" 347 322 source = "registry+https://github.com/rust-lang/crates.io-index" 348 - checksum = "aadbc44e7a8f3e71c8b374e03ecd972869eb91dd2bc89ed018954a52ba84bc44" 323 + checksum = "72badf9de83cc7d66b21b004f09241836823b8302afb25a24708769e576a8d8f" 349 324 dependencies = [ 350 325 "aws-credential-types", 351 326 "aws-smithy-http", ··· 347 350 ] 348 351 349 352 [[package]] 350 - name = "aws-sdk-s3" 351 - version = "0.28.0" 353 + name = "aws-runtime" 354 + version = "0.56.0" 352 355 source = "registry+https://github.com/rust-lang/crates.io-index" 353 - checksum = "fba197193cbb4bcb6aad8d99796b2291f36fa89562ded5d4501363055b0de89f" 356 + checksum = "cf832f522111225c02547e1e1c28137e840e4b082399d93a236e4b29193a4667" 354 357 dependencies = [ 355 358 "aws-credential-types", 356 - "aws-endpoint", 357 359 "aws-http", 358 - "aws-sig-auth", 360 + "aws-sigv4", 361 + "aws-smithy-async", 362 + "aws-smithy-eventstream", 363 + "aws-smithy-http", 364 + "aws-smithy-runtime-api", 365 + "aws-smithy-types", 366 + "aws-types", 367 + "fastrand", 368 + "http", 369 + "percent-encoding", 370 + "tracing", 371 + "uuid", 372 + ] 373 + 374 + [[package]] 375 + name = "aws-sdk-kinesisvideo" 376 + version = "0.29.0" 377 + source = "registry+https://github.com/rust-lang/crates.io-index" 378 + checksum = "5d12ca8af73af5453ecde2a4cc3df43eb6d623552bd3899692bfc92c6ddd1463" 379 + dependencies = [ 380 + "aws-credential-types", 381 + "aws-http", 382 + "aws-runtime", 383 + "aws-smithy-async", 384 + "aws-smithy-client", 385 + "aws-smithy-http", 386 + "aws-smithy-json", 387 + "aws-smithy-runtime", 388 + "aws-smithy-runtime-api", 389 + "aws-smithy-types", 390 + "aws-types", 391 + "bytes", 392 + "http", 393 + "regex", 394 + "tokio-stream", 395 + "tracing", 396 + ] 397 + 398 + [[package]] 399 + name = "aws-sdk-kinesisvideosignaling" 400 + version = "0.29.0" 401 + source = "registry+https://github.com/rust-lang/crates.io-index" 402 + checksum = "e4d880336d747d5207a74b656d8a229401142598fa36cab9163ac221946d517d" 403 + dependencies = [ 404 + "aws-credential-types", 405 + "aws-http", 406 + "aws-runtime", 407 + "aws-smithy-async", 408 + "aws-smithy-client", 409 + "aws-smithy-http", 410 + "aws-smithy-json", 411 + "aws-smithy-runtime", 412 + "aws-smithy-runtime-api", 413 + "aws-smithy-types", 414 + "aws-types", 415 + "bytes", 416 + "http", 417 + "regex", 418 + "tracing", 419 + ] 420 + 421 + [[package]] 422 + name = "aws-sdk-s3" 423 + version = "0.29.0" 424 + source = "registry+https://github.com/rust-lang/crates.io-index" 425 + checksum = "1e30370b61599168d38190ad272bb91842cd81870a6ca035c05dd5726d22832c" 426 + dependencies = [ 427 + "aws-credential-types", 428 + "aws-http", 429 + "aws-runtime", 359 430 "aws-sigv4", 360 431 "aws-smithy-async", 361 432 "aws-smithy-checksums", 362 433 "aws-smithy-client", 363 434 "aws-smithy-eventstream", 364 435 "aws-smithy-http", 365 - "aws-smithy-http-tower", 366 436 "aws-smithy-json", 437 + "aws-smithy-runtime", 438 + "aws-smithy-runtime-api", 367 439 "aws-smithy-types", 368 440 "aws-smithy-xml", 369 441 "aws-types", ··· 443 377 "percent-encoding", 444 378 "regex", 445 379 "tokio-stream", 446 - "tower", 447 380 "tracing", 448 381 "url", 449 382 ] 450 383 451 384 [[package]] 452 385 name = "aws-sdk-sso" 453 - version = "0.28.0" 386 + version = "0.29.0" 454 387 source = "registry+https://github.com/rust-lang/crates.io-index" 455 - checksum = "c8b812340d86d4a766b2ca73f740dfd47a97c2dff0c06c8517a16d88241957e4" 388 + checksum = "f41bf2c28d32dbb9894a8fcfcb148265d034d3f4a170552a47553a09de890895" 456 389 dependencies = [ 457 390 "aws-credential-types", 458 - "aws-endpoint", 459 391 "aws-http", 460 - "aws-sig-auth", 392 + "aws-runtime", 461 393 "aws-smithy-async", 462 394 "aws-smithy-client", 463 395 "aws-smithy-http", 464 - "aws-smithy-http-tower", 465 396 "aws-smithy-json", 397 + "aws-smithy-runtime", 398 + "aws-smithy-runtime-api", 466 399 "aws-smithy-types", 467 400 "aws-types", 468 401 "bytes", 469 402 "http", 470 403 "regex", 471 404 "tokio-stream", 472 - "tower", 473 405 "tracing", 474 406 ] 475 407 476 408 [[package]] 477 409 name = "aws-sdk-sts" 478 - version = "0.28.0" 410 + version = "0.29.0" 479 411 source = "registry+https://github.com/rust-lang/crates.io-index" 480 - checksum = "265fac131fbfc188e5c3d96652ea90ecc676a934e3174eaaee523c6cec040b3b" 412 + checksum = "79e21aa1a5b0853969a1ef96ccfaa8ff5d57c761549786a4d5f86c1902b2586a" 481 413 dependencies = [ 482 414 "aws-credential-types", 483 - "aws-endpoint", 484 415 "aws-http", 485 - "aws-sig-auth", 416 + "aws-runtime", 486 417 "aws-smithy-async", 487 418 "aws-smithy-client", 488 419 "aws-smithy-http", 489 - "aws-smithy-http-tower", 490 420 "aws-smithy-json", 491 421 "aws-smithy-query", 422 + "aws-smithy-runtime", 423 + "aws-smithy-runtime-api", 492 424 "aws-smithy-types", 493 425 "aws-smithy-xml", 494 426 "aws-types", 495 - "bytes", 496 427 "http", 497 428 "regex", 498 - "tower", 499 429 "tracing", 500 430 ] 501 431 502 432 [[package]] 503 - name = "aws-sdk-transcribe" 504 - version = "0.28.0" 433 + name = "aws-sdk-transcribestreaming" 434 + version = "0.29.0" 505 435 source = "registry+https://github.com/rust-lang/crates.io-index" 506 - checksum = "f6b561d56e7989062837c92f3cee6802f1b9cdb81b248bcc47790e38de1b96ab" 436 + checksum = "12669c64c03c04e207ff14994791a3a508ae4dc55b0b73f31182171d19b04989" 507 437 dependencies = [ 508 438 "aws-credential-types", 509 - "aws-endpoint", 510 439 "aws-http", 511 - "aws-sig-auth", 440 + "aws-runtime", 441 + "aws-sigv4", 512 442 "aws-smithy-async", 513 443 "aws-smithy-client", 444 + "aws-smithy-eventstream", 514 445 "aws-smithy-http", 515 - "aws-smithy-http-tower", 516 446 "aws-smithy-json", 447 + "aws-smithy-runtime", 448 + "aws-smithy-runtime-api", 517 449 "aws-smithy-types", 518 450 "aws-types", 519 451 "bytes", 520 452 "http", 453 + "hyper", 454 + "regex", 455 + "tracing", 456 + ] 457 + 458 + [[package]] 459 + name = "aws-sdk-translate" 460 + version = "0.29.0" 461 + source = "registry+https://github.com/rust-lang/crates.io-index" 462 + checksum = "336147dbb8f9d406dea0bbe5ef057ec4761d4134e7c8eb915db503d7081c6da7" 463 + dependencies = [ 464 + "aws-credential-types", 465 + "aws-http", 466 + "aws-runtime", 467 + "aws-smithy-async", 468 + "aws-smithy-client", 469 + "aws-smithy-http", 470 + "aws-smithy-json", 471 + "aws-smithy-runtime", 472 + "aws-smithy-runtime-api", 473 + "aws-smithy-types", 474 + "aws-types", 475 + "bytes", 476 + "fastrand", 477 + "http", 521 478 "regex", 522 479 "tokio-stream", 523 - "tower", 524 480 "tracing", 525 481 ] 526 482 527 483 [[package]] 528 484 name = "aws-sig-auth" 529 - version = "0.55.3" 485 + version = "0.56.0" 530 486 source = "registry+https://github.com/rust-lang/crates.io-index" 531 - checksum = "3b94acb10af0c879ecd5c7bdf51cda6679a0a4f4643ce630905a77673bfa3c61" 487 + checksum = "d861c220cd86e3d3e84b8fabddd6b7c29fbd8234715ebb71e063a64689d66bc0" 532 488 dependencies = [ 533 489 "aws-credential-types", 534 490 "aws-sigv4", 535 - "aws-smithy-eventstream", 491 + "aws-smithy-async", 536 492 "aws-smithy-http", 537 493 "aws-types", 538 494 "http", ··· 563 475 564 476 [[package]] 565 477 name = "aws-sigv4" 566 - version = "0.55.3" 478 + version = "0.56.0" 567 479 source = "registry+https://github.com/rust-lang/crates.io-index" 568 - checksum = "9d2ce6f507be68e968a33485ced670111d1cbad161ddbbab1e313c03d37d8f4c" 480 + checksum = "2cb40a93429794065f41f0581734fc56a345f6a38d8e2e3c25c7448d930cd132" 569 481 dependencies = [ 570 482 "aws-smithy-eventstream", 571 483 "aws-smithy-http", ··· 578 490 "percent-encoding", 579 491 "regex", 580 492 "sha2", 581 - "time 0.3.20", 493 + "time 0.3.25", 582 494 "tracing", 583 495 ] 584 496 585 497 [[package]] 586 498 name = "aws-smithy-async" 587 - version = "0.55.3" 499 + version = "0.56.0" 588 500 source = "registry+https://github.com/rust-lang/crates.io-index" 589 - checksum = "13bda3996044c202d75b91afeb11a9afae9db9a721c6a7a427410018e286b880" 501 + checksum = "6ee6d17d487c8b579423067718b3580c0908d0f01d7461813f94ec4323bad623" 590 502 dependencies = [ 591 503 "futures-util", 592 504 "pin-project-lite", ··· 596 508 597 509 [[package]] 598 510 name = "aws-smithy-checksums" 599 - version = "0.55.3" 511 + version = "0.56.0" 600 512 source = "registry+https://github.com/rust-lang/crates.io-index" 601 - checksum = "07ed8b96d95402f3f6b8b57eb4e0e45ee365f78b1a924faf20ff6e97abf1eae6" 513 + checksum = "0d1849fd5916904513fb0862543b36f8faab43c07984dbc476132b7da1aed056" 602 514 dependencies = [ 603 515 "aws-smithy-http", 604 516 "aws-smithy-types", ··· 617 529 618 530 [[package]] 619 531 name = "aws-smithy-client" 620 - version = "0.55.3" 532 + version = "0.56.0" 621 533 source = "registry+https://github.com/rust-lang/crates.io-index" 622 - checksum = "0a86aa6e21e86c4252ad6a0e3e74da9617295d8d6e374d552be7d3059c41cedd" 534 + checksum = "bdbe0a3ad15283cc5f863a68cb6adc8e256e7c109c43c01bdd09be407219a1e9" 623 535 dependencies = [ 624 536 "aws-smithy-async", 625 537 "aws-smithy-http", 626 538 "aws-smithy-http-tower", 627 539 "aws-smithy-types", 628 540 "bytes", 629 - "fastrand 1.9.0", 541 + "fastrand", 630 542 "http", 631 543 "http-body", 632 544 "hyper", ··· 641 553 642 554 [[package]] 643 555 name = "aws-smithy-eventstream" 644 - version = "0.55.3" 556 + version = "0.56.0" 645 557 source = "registry+https://github.com/rust-lang/crates.io-index" 646 - checksum = "460c8da5110835e3d9a717c61f5556b20d03c32a1dec57f8fc559b360f733bb8" 558 + checksum = "a56afef1aa766f512b4970b4c3150b9bf2df8035939723830df4b30267e2d7cb" 647 559 dependencies = [ 648 560 "aws-smithy-types", 649 561 "bytes", ··· 652 564 653 565 [[package]] 654 566 name = "aws-smithy-http" 655 - version = "0.55.3" 567 + version = "0.56.0" 656 568 source = "registry+https://github.com/rust-lang/crates.io-index" 657 - checksum = "2b3b693869133551f135e1f2c77cb0b8277d9e3e17feaf2213f735857c4f0d28" 569 + checksum = "34dc313472d727f5ef44fdda93e668ebfe17380c99dee512c403e3ca51863bb9" 658 570 dependencies = [ 659 571 "aws-smithy-eventstream", 660 572 "aws-smithy-types", ··· 675 587 676 588 [[package]] 677 589 name = "aws-smithy-http-tower" 678 - version = "0.55.3" 590 + version = "0.56.0" 679 591 source = "registry+https://github.com/rust-lang/crates.io-index" 680 - checksum = "3ae4f6c5798a247fac98a867698197d9ac22643596dc3777f0c76b91917616b9" 592 + checksum = "1dd50fca5a4ea4ec3771689ee93bf06b32de02a80af01ed93a8f8a4ed90e8483" 681 593 dependencies = [ 682 594 "aws-smithy-http", 683 595 "aws-smithy-types", ··· 691 603 692 604 [[package]] 693 605 name = "aws-smithy-json" 694 - version = "0.55.3" 606 + version = "0.56.0" 695 607 source = "registry+https://github.com/rust-lang/crates.io-index" 696 - checksum = "23f9f42fbfa96d095194a632fbac19f60077748eba536eb0b9fecc28659807f8" 608 + checksum = "3591dd7c2fe01ab8025e4847a0a0f6d0c2b2269714688ffb856f9cf6c6d465cf" 697 609 dependencies = [ 698 610 "aws-smithy-types", 699 611 ] 700 612 701 613 [[package]] 702 614 name = "aws-smithy-query" 703 - version = "0.55.3" 615 + version = "0.56.0" 704 616 source = "registry+https://github.com/rust-lang/crates.io-index" 705 - checksum = "98819eb0b04020a1c791903533b638534ae6c12e2aceda3e6e6fba015608d51d" 617 + checksum = "dbabb1145e65dd57ae72d91a2619d3f5fba40b68a5f40ba009c30571dfd60aff" 706 618 dependencies = [ 707 619 "aws-smithy-types", 708 620 "urlencoding", 709 621 ] 710 622 711 623 [[package]] 712 - name = "aws-smithy-types" 713 - version = "0.55.3" 624 + name = "aws-smithy-runtime" 625 + version = "0.56.0" 714 626 source = "registry+https://github.com/rust-lang/crates.io-index" 715 - checksum = "16a3d0bf4f324f4ef9793b86a1701d9700fbcdbd12a846da45eed104c634c6e8" 627 + checksum = "3687fb838d4ad1c883b62eb59115bc9fb02c4f308aac49a7df89627067f6eb0d" 628 + dependencies = [ 629 + "aws-smithy-async", 630 + "aws-smithy-client", 631 + "aws-smithy-http", 632 + "aws-smithy-runtime-api", 633 + "aws-smithy-types", 634 + "bytes", 635 + "fastrand", 636 + "http", 637 + "http-body", 638 + "once_cell", 639 + "pin-project-lite", 640 + "pin-utils", 641 + "tokio", 642 + "tracing", 643 + ] 644 + 645 + [[package]] 646 + name = "aws-smithy-runtime-api" 647 + version = "0.56.0" 648 + source = "registry+https://github.com/rust-lang/crates.io-index" 649 + checksum = "5cfbf1e5c2108b41f5ca607cde40dd5109fecc448f5d30c8e614b61f36dce704" 650 + dependencies = [ 651 + "aws-smithy-async", 652 + "aws-smithy-http", 653 + "aws-smithy-types", 654 + "bytes", 655 + "http", 656 + "tokio", 657 + "tracing", 658 + ] 659 + 660 + [[package]] 661 + name = "aws-smithy-types" 662 + version = "0.56.0" 663 + source = "registry+https://github.com/rust-lang/crates.io-index" 664 + checksum = "eed0a94eefd845a2a78677f1b72f02fa75802d38f7f59be675add140279aa8bf" 716 665 dependencies = [ 717 666 "base64-simd", 718 667 "itoa", 719 668 "num-integer", 720 669 "ryu", 721 - "time 0.3.20", 670 + "serde", 671 + "time 0.3.25", 722 672 ] 723 673 724 674 [[package]] 725 675 name = "aws-smithy-xml" 726 - version = "0.55.3" 676 + version = "0.56.0" 727 677 source = "registry+https://github.com/rust-lang/crates.io-index" 728 - checksum = "b1b9d12875731bd07e767be7baad95700c3137b56730ec9ddeedb52a5e5ca63b" 678 + checksum = "c88052c812f696143ad7ba729c63535209ff0e0f49e31a6d2b1205208ea6ea79" 729 679 dependencies = [ 730 680 "xmlparser", 731 681 ] 732 682 733 683 [[package]] 734 684 name = "aws-types" 735 - version = "0.55.3" 685 + version = "0.56.0" 736 686 source = "registry+https://github.com/rust-lang/crates.io-index" 737 - checksum = "6dd209616cc8d7bfb82f87811a5c655dc97537f592689b18743bddf5dc5c4829" 687 + checksum = "6bceb8cf724ad057ad7f327d0d256d7147b3eac777b39849a26189e003dc9782" 738 688 dependencies = [ 739 689 "aws-credential-types", 740 690 "aws-smithy-async", ··· 782 656 "http", 783 657 "rustc_version", 784 658 "tracing", 785 - ] 786 - 787 - [[package]] 788 - name = "backoff" 789 - version = "0.4.0" 790 - source = "registry+https://github.com/rust-lang/crates.io-index" 791 - checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" 792 - dependencies = [ 793 - "futures-core", 794 - "getrandom", 795 - "instant", 796 - "pin-project-lite", 797 - "rand", 798 - "tokio", 799 659 ] 800 660 801 661 [[package]] ··· 816 704 version = "0.21.2" 817 705 source = "registry+https://github.com/rust-lang/crates.io-index" 818 706 checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 707 + 708 + [[package]] 709 + name = "base64-serde" 710 + version = "0.7.0" 711 + source = "registry+https://github.com/rust-lang/crates.io-index" 712 + checksum = "ba368df5de76a5bea49aaf0cf1b39ccfbbef176924d1ba5db3e4135216cbe3c7" 713 + dependencies = [ 714 + "base64 0.21.2", 715 + "serde", 716 + ] 819 717 820 718 [[package]] 821 719 name = "base64-simd" ··· 939 817 940 818 [[package]] 941 819 name = "cairo-rs" 942 - version = "0.17.10" 943 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 820 + version = "0.18.1" 821 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 944 822 dependencies = [ 945 - "bitflags 1.3.2", 823 + "bitflags 2.3.3", 946 824 "cairo-sys-rs", 947 825 "glib", 948 826 "libc", ··· 952 830 953 831 [[package]] 954 832 name = "cairo-sys-rs" 955 - version = "0.17.10" 956 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 833 + version = "0.18.1" 834 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 957 835 dependencies = [ 958 836 "glib-sys", 959 837 "libc", ··· 974 852 975 853 [[package]] 976 854 name = "cc" 977 - version = "1.0.79" 855 + version = "1.0.82" 978 856 source = "registry+https://github.com/rust-lang/crates.io-index" 979 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 857 + checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" 980 858 dependencies = [ 981 859 "jobserver", 860 + "libc", 982 861 ] 983 862 984 863 [[package]] ··· 999 876 ] 1000 877 1001 878 [[package]] 1002 - name = "cfg-expr" 1003 - version = "0.15.3" 879 + name = "cea708-types" 880 + version = "0.1.0" 1004 881 source = "registry+https://github.com/rust-lang/crates.io-index" 1005 - checksum = "215c0072ecc28f92eeb0eea38ba63ddfcb65c2828c46311d646f1a3ff5f9841c" 882 + checksum = "3a23ec736ab2aafb861ef6f22c662cbc18c85e73945f86bd9e936a20be7cc958" 883 + dependencies = [ 884 + "once_cell", 885 + "tracing", 886 + "tracing-subscriber", 887 + ] 888 + 889 + [[package]] 890 + name = "cfg-expr" 891 + version = "0.15.4" 892 + source = "registry+https://github.com/rust-lang/crates.io-index" 893 + checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9" 1006 894 dependencies = [ 1007 895 "smallvec", 1008 896 "target-lexicon", ··· 1035 901 "iana-time-zone", 1036 902 "js-sys", 1037 903 "num-traits", 904 + "serde", 1038 905 "time 0.1.45", 1039 906 "wasm-bindgen", 1040 907 "winapi", ··· 1052 917 1053 918 [[package]] 1054 919 name = "clap" 1055 - version = "4.3.16" 920 + version = "4.3.21" 1056 921 source = "registry+https://github.com/rust-lang/crates.io-index" 1057 - checksum = "74bb1b4028935821b2d6b439bba2e970bdcf740832732437ead910c632e30d7d" 922 + checksum = "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd" 1058 923 dependencies = [ 1059 924 "clap_builder", 1060 925 "clap_derive", ··· 1063 928 1064 929 [[package]] 1065 930 name = "clap_builder" 1066 - version = "4.3.16" 931 + version = "4.3.21" 1067 932 source = "registry+https://github.com/rust-lang/crates.io-index" 1068 - checksum = "5ae467cbb0111869b765e13882a1dbbd6cb52f58203d8b80c44f667d4dd19843" 933 + checksum = "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa" 1069 934 dependencies = [ 1070 935 "anstream", 1071 936 "anstyle", ··· 1082 947 "heck", 1083 948 "proc-macro2", 1084 949 "quote", 1085 - "syn 2.0.26", 950 + "syn 2.0.28", 1086 951 ] 1087 952 1088 953 [[package]] ··· 1139 1004 checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 1140 1005 dependencies = [ 1141 1006 "percent-encoding", 1142 - "time 0.3.20", 1007 + "time 0.3.25", 1143 1008 "version_check", 1144 1009 ] 1145 1010 ··· 1156 1021 "serde", 1157 1022 "serde_derive", 1158 1023 "serde_json", 1159 - "time 0.3.20", 1024 + "time 0.3.25", 1160 1025 "url", 1161 1026 ] 1162 1027 ··· 1195 1060 ] 1196 1061 1197 1062 [[package]] 1198 - name = "crc" 1199 - version = "3.0.1" 1200 - source = "registry+https://github.com/rust-lang/crates.io-index" 1201 - checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" 1202 - dependencies = [ 1203 - "crc-catalog", 1204 - ] 1205 - 1206 - [[package]] 1207 - name = "crc-catalog" 1208 - version = "2.2.0" 1209 - source = "registry+https://github.com/rust-lang/crates.io-index" 1210 - checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" 1211 - 1212 - [[package]] 1213 1063 name = "crc32c" 1214 - version = "0.6.3" 1064 + version = "0.6.4" 1215 1065 source = "registry+https://github.com/rust-lang/crates.io-index" 1216 - checksum = "3dfea2db42e9927a3845fb268a10a72faed6d416065f77873f05e411457c363e" 1066 + checksum = "d8f48d60e5b4d2c53d5c2b1d8a58c849a70ae5e5509b08a48d047e3b65714a74" 1217 1067 dependencies = [ 1218 1068 "rustc_version", 1219 1069 ] ··· 1307 1187 ] 1308 1188 1309 1189 [[package]] 1190 + name = "darling" 1191 + version = "0.20.3" 1192 + source = "registry+https://github.com/rust-lang/crates.io-index" 1193 + checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 1194 + dependencies = [ 1195 + "darling_core", 1196 + "darling_macro", 1197 + ] 1198 + 1199 + [[package]] 1200 + name = "darling_core" 1201 + version = "0.20.3" 1202 + source = "registry+https://github.com/rust-lang/crates.io-index" 1203 + checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 1204 + dependencies = [ 1205 + "fnv", 1206 + "ident_case", 1207 + "proc-macro2", 1208 + "quote", 1209 + "strsim", 1210 + "syn 2.0.28", 1211 + ] 1212 + 1213 + [[package]] 1214 + name = "darling_macro" 1215 + version = "0.20.3" 1216 + source = "registry+https://github.com/rust-lang/crates.io-index" 1217 + checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 1218 + dependencies = [ 1219 + "darling_core", 1220 + "quote", 1221 + "syn 2.0.28", 1222 + ] 1223 + 1224 + [[package]] 1225 + name = "dash-mpd" 1226 + version = "0.13.0" 1227 + source = "registry+https://github.com/rust-lang/crates.io-index" 1228 + checksum = "5d0c74b03285fe95649f588140b6009dc10bc4f747bd774818ed8e9cc6b5cbb6" 1229 + dependencies = [ 1230 + "base64 0.21.2", 1231 + "base64-serde", 1232 + "chrono", 1233 + "fs-err", 1234 + "iso8601", 1235 + "log", 1236 + "num-traits", 1237 + "quick-xml", 1238 + "regex", 1239 + "serde", 1240 + "serde_with", 1241 + "thiserror", 1242 + "tokio", 1243 + "xattr", 1244 + ] 1245 + 1246 + [[package]] 1310 1247 name = "dasp_frame" 1311 1248 version = "0.11.0" 1312 1249 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1402 1225 dependencies = [ 1403 1226 "libc", 1404 1227 "system-deps", 1228 + ] 1229 + 1230 + [[package]] 1231 + name = "deranged" 1232 + version = "0.3.7" 1233 + source = "registry+https://github.com/rust-lang/crates.io-index" 1234 + checksum = "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929" 1235 + dependencies = [ 1236 + "serde", 1405 1237 ] 1406 1238 1407 1239 [[package]] ··· 1474 1288 1475 1289 [[package]] 1476 1290 name = "either" 1477 - version = "1.8.1" 1291 + version = "1.9.0" 1478 1292 source = "registry+https://github.com/rust-lang/crates.io-index" 1479 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1293 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 1480 1294 1481 1295 [[package]] 1482 1296 name = "encoding_rs" ··· 1520 1334 1521 1335 [[package]] 1522 1336 name = "errno" 1523 - version = "0.3.1" 1337 + version = "0.3.2" 1524 1338 source = "registry+https://github.com/rust-lang/crates.io-index" 1525 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 1339 + checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 1526 1340 dependencies = [ 1527 1341 "errno-dragonfly", 1528 1342 "libc", ··· 1537 1351 dependencies = [ 1538 1352 "cc", 1539 1353 "libc", 1540 - ] 1541 - 1542 - [[package]] 1543 - name = "fastrand" 1544 - version = "1.9.0" 1545 - source = "registry+https://github.com/rust-lang/crates.io-index" 1546 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1547 - dependencies = [ 1548 - "instant", 1549 1354 ] 1550 1355 1551 1356 [[package]] ··· 1559 1382 version = "0.0.0" 1560 1383 source = "git+https://github.com/rust-av/ffv1.git?rev=2afb025a327173ce891954c052e804d0f880368a#2afb025a327173ce891954c052e804d0f880368a" 1561 1384 dependencies = [ 1562 - "crc 1.8.1", 1385 + "crc", 1563 1386 "num-traits", 1564 1387 "thiserror", 1565 1388 ] ··· 1642 1465 ] 1643 1466 1644 1467 [[package]] 1468 + name = "fs-err" 1469 + version = "2.9.0" 1470 + source = "registry+https://github.com/rust-lang/crates.io-index" 1471 + checksum = "0845fa252299212f0389d64ba26f34fa32cfe41588355f21ed507c59a0f64541" 1472 + 1473 + [[package]] 1645 1474 name = "fst" 1646 1475 version = "0.4.7" 1647 1476 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1709 1526 dependencies = [ 1710 1527 "proc-macro2", 1711 1528 "quote", 1712 - "syn 2.0.26", 1529 + "syn 2.0.28", 1713 1530 ] 1714 1531 1715 1532 [[package]] ··· 1744 1561 1745 1562 [[package]] 1746 1563 name = "gdk-pixbuf" 1747 - version = "0.17.10" 1748 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1564 + version = "0.18.1" 1565 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1749 1566 dependencies = [ 1750 - "bitflags 1.3.2", 1751 1567 "gdk-pixbuf-sys", 1752 1568 "gio", 1753 1569 "glib", ··· 1756 1574 1757 1575 [[package]] 1758 1576 name = "gdk-pixbuf-sys" 1759 - version = "0.17.10" 1760 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1577 + version = "0.18.1" 1578 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1761 1579 dependencies = [ 1762 1580 "gio-sys", 1763 1581 "glib-sys", ··· 1768 1586 1769 1587 [[package]] 1770 1588 name = "gdk4" 1771 - version = "0.6.6" 1772 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1589 + version = "0.7.1" 1590 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1773 1591 dependencies = [ 1774 - "bitflags 1.3.2", 1775 1592 "cairo-rs", 1776 1593 "gdk-pixbuf", 1777 1594 "gdk4-sys", ··· 1782 1601 1783 1602 [[package]] 1784 1603 name = "gdk4-sys" 1785 - version = "0.6.6" 1786 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1604 + version = "0.7.1" 1605 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1787 1606 dependencies = [ 1788 1607 "cairo-sys-rs", 1789 1608 "gdk-pixbuf-sys", ··· 1798 1617 1799 1618 [[package]] 1800 1619 name = "gdk4-wayland" 1801 - version = "0.6.6" 1802 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1620 + version = "0.7.1" 1621 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1803 1622 dependencies = [ 1804 1623 "gdk4", 1805 1624 "gdk4-wayland-sys", ··· 1810 1629 1811 1630 [[package]] 1812 1631 name = "gdk4-wayland-sys" 1813 - version = "0.6.6" 1814 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1632 + version = "0.7.1" 1633 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1815 1634 dependencies = [ 1816 1635 "glib-sys", 1817 1636 "libc", ··· 1820 1639 1821 1640 [[package]] 1822 1641 name = "gdk4-win32" 1823 - version = "0.6.6" 1824 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1642 + version = "0.7.1" 1643 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1825 1644 dependencies = [ 1826 1645 "gdk4", 1827 1646 "gdk4-win32-sys", ··· 1834 1653 1835 1654 [[package]] 1836 1655 name = "gdk4-win32-sys" 1837 - version = "0.6.6" 1838 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1656 + version = "0.7.1" 1657 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1839 1658 dependencies = [ 1840 1659 "gdk-pixbuf-sys", 1841 1660 "gdk4-sys", ··· 1846 1665 1847 1666 [[package]] 1848 1667 name = "gdk4-x11" 1849 - version = "0.6.6" 1850 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1668 + version = "0.7.1" 1669 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1851 1670 dependencies = [ 1852 1671 "gdk4", 1853 1672 "gdk4-x11-sys", ··· 1858 1677 1859 1678 [[package]] 1860 1679 name = "gdk4-x11-sys" 1861 - version = "0.6.6" 1862 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1680 + version = "0.7.1" 1681 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 1863 1682 dependencies = [ 1864 1683 "gdk4-sys", 1865 1684 "glib-sys", ··· 1917 1736 1918 1737 [[package]] 1919 1738 name = "gio" 1920 - version = "0.17.10" 1921 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1739 + version = "0.18.1" 1740 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1922 1741 dependencies = [ 1923 - "bitflags 1.3.2", 1924 1742 "futures-channel", 1925 1743 "futures-core", 1926 1744 "futures-io", ··· 1935 1755 1936 1756 [[package]] 1937 1757 name = "gio-sys" 1938 - version = "0.17.10" 1939 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1758 + version = "0.18.1" 1759 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1940 1760 dependencies = [ 1941 1761 "glib-sys", 1942 1762 "gobject-sys", ··· 1947 1767 1948 1768 [[package]] 1949 1769 name = "glib" 1950 - version = "0.17.10" 1951 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1770 + version = "0.18.1" 1771 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1952 1772 dependencies = [ 1953 - "bitflags 1.3.2", 1773 + "bitflags 2.3.3", 1954 1774 "futures-channel", 1955 1775 "futures-core", 1956 1776 "futures-executor", ··· 1969 1789 1970 1790 [[package]] 1971 1791 name = "glib-macros" 1972 - version = "0.17.10" 1973 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1792 + version = "0.18.1" 1793 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1974 1794 dependencies = [ 1975 - "anyhow", 1976 1795 "heck", 1977 1796 "proc-macro-crate", 1978 1797 "proc-macro-error", 1979 1798 "proc-macro2", 1980 1799 "quote", 1981 - "syn 1.0.109", 1800 + "syn 2.0.28", 1982 1801 ] 1983 1802 1984 1803 [[package]] 1985 1804 name = "glib-sys" 1986 - version = "0.17.10" 1987 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1805 + version = "0.18.1" 1806 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 1988 1807 dependencies = [ 1989 1808 "libc", 1990 1809 "system-deps", ··· 1997 1818 1998 1819 [[package]] 1999 1820 name = "gobject-sys" 2000 - version = "0.17.10" 2001 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1821 + version = "0.18.1" 1822 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 2002 1823 dependencies = [ 2003 1824 "glib-sys", 2004 1825 "libc", ··· 2007 1828 2008 1829 [[package]] 2009 1830 name = "graphene-rs" 2010 - version = "0.17.10" 2011 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1831 + version = "0.18.1" 1832 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 2012 1833 dependencies = [ 2013 1834 "glib", 2014 1835 "graphene-sys", ··· 2017 1838 2018 1839 [[package]] 2019 1840 name = "graphene-sys" 2020 - version = "0.17.10" 2021 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 1841 + version = "0.18.1" 1842 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 2022 1843 dependencies = [ 2023 1844 "glib-sys", 2024 1845 "libc", ··· 2028 1849 2029 1850 [[package]] 2030 1851 name = "gsk4" 2031 - version = "0.6.6" 2032 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1852 + version = "0.7.1" 1853 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 2033 1854 dependencies = [ 2034 - "bitflags 1.3.2", 2035 1855 "cairo-rs", 2036 1856 "gdk4", 2037 1857 "glib", ··· 2042 1864 2043 1865 [[package]] 2044 1866 name = "gsk4-sys" 2045 - version = "0.6.6" 2046 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 1867 + version = "0.7.1" 1868 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 2047 1869 dependencies = [ 2048 1870 "cairo-sys-rs", 2049 1871 "gdk4-sys", ··· 2057 1879 2058 1880 [[package]] 2059 1881 name = "gst-plugin-audiofx" 2060 - version = "0.10.11" 1882 + version = "0.11.0" 2061 1883 dependencies = [ 2062 1884 "anyhow", 2063 1885 "atomic_refcell", ··· 2072 1894 "hrtf", 2073 1895 "nnnoiseless", 2074 1896 "num-traits", 2075 - "once_cell", 2076 1897 "rayon", 2077 1898 "smallvec", 2078 1899 ] 2079 1900 2080 1901 [[package]] 2081 1902 name = "gst-plugin-aws" 2082 - version = "0.10.11" 1903 + version = "0.11.0" 2083 1904 dependencies = [ 2084 - "async-tungstenite", 2085 - "atomic_refcell", 1905 + "async-stream", 2086 1906 "aws-config", 2087 1907 "aws-credential-types", 2088 1908 "aws-sdk-s3", 2089 - "aws-sdk-transcribe", 1909 + "aws-sdk-transcribestreaming", 1910 + "aws-sdk-translate", 2090 1911 "aws-sig-auth", 2091 1912 "aws-smithy-http", 2092 1913 "aws-smithy-types", 2093 1914 "aws-types", 2094 - "backoff", 2095 1915 "base32", 2096 - "byteorder", 2097 1916 "bytes", 2098 1917 "chrono", 2099 - "crc 3.0.1", 2100 1918 "env_logger 0.10.0", 2101 1919 "futures", 2102 1920 "gio", ··· 2102 1928 "gstreamer-base", 2103 1929 "gstreamer-check", 2104 1930 "http", 2105 - "nom", 2106 - "once_cell", 2107 1931 "percent-encoding", 2108 1932 "rand", 2109 1933 "serde", ··· 2114 1942 2115 1943 [[package]] 2116 1944 name = "gst-plugin-cdg" 2117 - version = "0.10.11" 1945 + version = "0.11.0" 2118 1946 dependencies = [ 2119 1947 "cdg", 2120 1948 "cdg_renderer", ··· 2125 1953 "gstreamer-video", 2126 1954 "image", 2127 1955 "muldiv", 2128 - "once_cell", 2129 1956 ] 2130 1957 2131 1958 [[package]] 2132 1959 name = "gst-plugin-claxon" 2133 - version = "0.10.11" 1960 + version = "0.11.0" 2134 1961 dependencies = [ 2135 1962 "atomic_refcell", 2136 1963 "byte-slice-cast", ··· 2143 1972 2144 1973 [[package]] 2145 1974 name = "gst-plugin-closedcaption" 2146 - version = "0.10.11" 1975 + version = "0.11.0" 2147 1976 dependencies = [ 2148 1977 "anyhow", 2149 1978 "atomic_refcell", 2150 1979 "byteorder", 2151 1980 "cairo-rs", 2152 1981 "cc", 1982 + "cea708-types", 2153 1983 "chrono", 2154 1984 "either", 2155 1985 "gst-plugin-version-helper", ··· 2159 1987 "gstreamer-check", 2160 1988 "gstreamer-video", 2161 1989 "nom", 2162 - "once_cell", 2163 1990 "pango", 2164 1991 "pangocairo", 2165 1992 "pretty_assertions", ··· 2170 1999 2171 2000 [[package]] 2172 2001 name = "gst-plugin-csound" 2173 - version = "0.10.11" 2002 + version = "0.11.0" 2174 2003 dependencies = [ 2175 2004 "byte-slice-cast", 2176 2005 "csound", ··· 2179 2008 "gstreamer-audio", 2180 2009 "gstreamer-base", 2181 2010 "gstreamer-check", 2182 - "once_cell", 2183 2011 ] 2184 2012 2185 2013 [[package]] 2186 2014 name = "gst-plugin-dav1d" 2187 - version = "0.10.11" 2015 + version = "0.11.0" 2188 2016 dependencies = [ 2189 2017 "dav1d", 2190 2018 "gst-plugin-version-helper", ··· 2191 2021 "gstreamer-base", 2192 2022 "gstreamer-video", 2193 2023 "num_cpus", 2194 - "once_cell", 2195 2024 ] 2196 2025 2197 2026 [[package]] 2198 2027 name = "gst-plugin-fallbackswitch" 2199 - version = "0.10.11" 2028 + version = "0.11.0" 2200 2029 dependencies = [ 2201 2030 "gio", 2202 2031 "gst-plugin-gtk4", ··· 2207 2038 "gstreamer-check", 2208 2039 "gstreamer-video", 2209 2040 "gtk4", 2210 - "once_cell", 2211 2041 "parking_lot", 2212 2042 ] 2213 2043 2214 2044 [[package]] 2215 2045 name = "gst-plugin-ffv1" 2216 - version = "0.10.11" 2046 + version = "0.11.0" 2217 2047 dependencies = [ 2218 2048 "byte-slice-cast", 2219 2049 "ffv1", ··· 2220 2052 "gstreamer", 2221 2053 "gstreamer-check", 2222 2054 "gstreamer-video", 2223 - "once_cell", 2224 2055 ] 2225 2056 2226 2057 [[package]] 2227 2058 name = "gst-plugin-file" 2228 - version = "0.10.11" 2059 + version = "0.11.0" 2229 2060 dependencies = [ 2230 2061 "gst-plugin-version-helper", 2231 2062 "gstreamer", 2232 2063 "gstreamer-base", 2233 - "once_cell", 2234 2064 "url", 2235 2065 ] 2236 2066 2237 2067 [[package]] 2238 2068 name = "gst-plugin-flavors" 2239 - version = "0.10.11" 2069 + version = "0.11.0" 2240 2070 dependencies = [ 2241 2071 "byteorder", 2242 2072 "flavors", ··· 2245 2079 "muldiv", 2246 2080 "nom", 2247 2081 "num-rational", 2248 - "once_cell", 2249 2082 "smallvec", 2250 2083 ] 2251 2084 2252 2085 [[package]] 2253 2086 name = "gst-plugin-fmp4" 2254 - version = "0.10.11" 2087 + version = "0.11.0" 2255 2088 dependencies = [ 2256 2089 "anyhow", 2257 2090 "chrono", 2091 + "dash-mpd", 2258 2092 "gst-plugin-version-helper", 2259 2093 "gstreamer", 2260 2094 "gstreamer-app", ··· 2264 2098 "gstreamer-pbutils", 2265 2099 "gstreamer-video", 2266 2100 "m3u8-rs", 2267 - "once_cell", 2101 + "quick-xml", 2102 + "serde", 2268 2103 ] 2269 2104 2270 2105 [[package]] 2271 2106 name = "gst-plugin-gif" 2272 - version = "0.10.11" 2107 + version = "0.11.0" 2273 2108 dependencies = [ 2274 2109 "atomic_refcell", 2275 2110 "gif", ··· 2283 2116 2284 2117 [[package]] 2285 2118 name = "gst-plugin-gtk4" 2286 - version = "0.10.11" 2119 + version = "0.11.0" 2287 2120 dependencies = [ 2288 2121 "gdk4-wayland", 2289 2122 "gdk4-win32", ··· 2297 2130 "gstreamer-gl-x11", 2298 2131 "gstreamer-video", 2299 2132 "gtk4", 2300 - "once_cell", 2301 2133 "windows-sys", 2302 2134 ] 2303 2135 2304 2136 [[package]] 2305 2137 name = "gst-plugin-hlssink3" 2306 - version = "0.10.11" 2138 + version = "0.11.0" 2307 2139 dependencies = [ 2308 2140 "gio", 2309 2141 "glib", ··· 2318 2152 2319 2153 [[package]] 2320 2154 name = "gst-plugin-hsv" 2321 - version = "0.10.11" 2155 + version = "0.11.0" 2322 2156 dependencies = [ 2323 2157 "byte-slice-cast", 2324 2158 "gst-plugin-version-helper", ··· 2328 2162 "gstreamer-check", 2329 2163 "gstreamer-video", 2330 2164 "num-traits", 2331 - "once_cell", 2332 2165 ] 2333 2166 2334 2167 [[package]] 2335 2168 name = "gst-plugin-json" 2336 - version = "0.10.11" 2169 + version = "0.11.0" 2337 2170 dependencies = [ 2338 2171 "gst-plugin-version-helper", 2339 2172 "gstreamer", 2340 2173 "gstreamer-check", 2341 - "once_cell", 2342 2174 "serde", 2343 2175 "serde_json", 2344 2176 ] 2345 2177 2346 2178 [[package]] 2347 2179 name = "gst-plugin-lewton" 2348 - version = "0.10.11" 2180 + version = "0.11.0" 2349 2181 dependencies = [ 2350 2182 "atomic_refcell", 2351 2183 "byte-slice-cast", ··· 2352 2188 "gstreamer-audio", 2353 2189 "gstreamer-check", 2354 2190 "lewton", 2355 - "once_cell", 2356 2191 ] 2357 2192 2358 2193 [[package]] 2359 2194 name = "gst-plugin-livesync" 2360 - version = "0.10.11" 2195 + version = "0.11.0" 2361 2196 dependencies = [ 2362 2197 "gio", 2363 2198 "gst-plugin-gtk4", ··· 2367 2204 "gtk4", 2368 2205 "muldiv", 2369 2206 "num-rational", 2370 - "once_cell", 2371 2207 "parking_lot", 2372 2208 ] 2373 2209 2374 2210 [[package]] 2375 2211 name = "gst-plugin-mp4" 2376 - version = "0.10.11" 2212 + version = "0.11.0" 2377 2213 dependencies = [ 2378 2214 "anyhow", 2379 2215 "gst-plugin-version-helper", ··· 2381 2219 "gstreamer-base", 2382 2220 "gstreamer-pbutils", 2383 2221 "gstreamer-video", 2384 - "once_cell", 2385 2222 "tempfile", 2386 2223 "url", 2387 2224 ] 2388 2225 2389 2226 [[package]] 2390 2227 name = "gst-plugin-ndi" 2391 - version = "0.10.11" 2228 + version = "0.11.0" 2392 2229 dependencies = [ 2393 2230 "atomic_refcell", 2394 2231 "byte-slice-cast", ··· 2399 2238 "gstreamer-base", 2400 2239 "gstreamer-video", 2401 2240 "libloading", 2402 - "once_cell", 2403 2241 ] 2404 2242 2405 2243 [[package]] 2406 2244 name = "gst-plugin-onvif" 2407 - version = "0.10.11" 2245 + version = "0.11.0" 2408 2246 dependencies = [ 2409 2247 "cairo-rs", 2410 2248 "chrono", ··· 2412 2252 "gstreamer-base", 2413 2253 "gstreamer-rtp", 2414 2254 "gstreamer-video", 2415 - "once_cell", 2416 2255 "pango", 2417 2256 "pangocairo", 2418 2257 "xmlparser", ··· 2420 2261 2421 2262 [[package]] 2422 2263 name = "gst-plugin-png" 2423 - version = "0.10.11" 2264 + version = "0.11.0" 2424 2265 dependencies = [ 2425 2266 "gst-plugin-version-helper", 2426 2267 "gstreamer", ··· 2433 2274 2434 2275 [[package]] 2435 2276 name = "gst-plugin-raptorq" 2436 - version = "0.10.11" 2277 + version = "0.11.0" 2437 2278 dependencies = [ 2438 2279 "gst-plugin-version-helper", 2439 2280 "gstreamer", 2440 2281 "gstreamer-base", 2441 2282 "gstreamer-check", 2442 2283 "gstreamer-rtp", 2443 - "once_cell", 2444 2284 "rand", 2445 2285 "raptorq", 2446 2286 ] 2447 2287 2448 2288 [[package]] 2449 2289 name = "gst-plugin-rav1e" 2450 - version = "0.10.11" 2290 + version = "0.11.0" 2451 2291 dependencies = [ 2452 2292 "atomic_refcell", 2453 2293 "gst-plugin-version-helper", 2454 2294 "gstreamer", 2455 2295 "gstreamer-check", 2456 2296 "gstreamer-video", 2457 - "once_cell", 2458 2297 "rav1e", 2459 2298 ] 2460 2299 2461 2300 [[package]] 2462 2301 name = "gst-plugin-regex" 2463 - version = "0.10.11" 2302 + version = "0.11.0" 2464 2303 dependencies = [ 2465 2304 "gst-plugin-version-helper", 2466 2305 "gstreamer", 2467 2306 "gstreamer-check", 2468 - "once_cell", 2469 2307 "regex", 2470 2308 ] 2471 2309 2472 2310 [[package]] 2473 2311 name = "gst-plugin-reqwest" 2474 - version = "0.10.11" 2312 + version = "0.11.0" 2475 2313 dependencies = [ 2476 2314 "futures", 2477 2315 "gst-plugin-version-helper", ··· 2477 2321 "headers", 2478 2322 "hyper", 2479 2323 "mime", 2480 - "once_cell", 2481 2324 "reqwest", 2482 2325 "tokio", 2483 2326 "url", ··· 2484 2329 2485 2330 [[package]] 2486 2331 name = "gst-plugin-rtp" 2487 - version = "0.10.11" 2332 + version = "0.11.0" 2488 2333 dependencies = [ 2489 2334 "bitstream-io", 2490 2335 "chrono", ··· 2492 2337 "gstreamer", 2493 2338 "gstreamer-check", 2494 2339 "gstreamer-rtp", 2495 - "once_cell", 2496 2340 ] 2497 2341 2498 2342 [[package]] 2499 2343 name = "gst-plugin-sodium" 2500 - version = "0.10.11" 2344 + version = "0.11.0" 2501 2345 dependencies = [ 2502 2346 "clap", 2503 2347 "gst-plugin-version-helper", ··· 2516 2362 2517 2363 [[package]] 2518 2364 name = "gst-plugin-spotify" 2519 - version = "0.10.11" 2365 + version = "0.11.0" 2520 2366 dependencies = [ 2521 2367 "anyhow", 2522 2368 "futures", ··· 2524 2370 "gstreamer", 2525 2371 "gstreamer-base", 2526 2372 "librespot", 2527 - "once_cell", 2528 2373 "tokio", 2529 2374 "url", 2530 2375 ] 2531 2376 2532 2377 [[package]] 2533 2378 name = "gst-plugin-textahead" 2534 - version = "0.10.11" 2379 + version = "0.11.0" 2535 2380 dependencies = [ 2536 2381 "gst-plugin-version-helper", 2537 2382 "gstreamer", 2538 - "once_cell", 2539 2383 ] 2540 2384 2541 2385 [[package]] 2542 2386 name = "gst-plugin-textwrap" 2543 - version = "0.10.11" 2387 + version = "0.11.0" 2544 2388 dependencies = [ 2545 2389 "gst-plugin-version-helper", 2546 2390 "gstreamer", 2547 2391 "gstreamer-check", 2548 2392 "hyphenation", 2549 - "once_cell", 2550 2393 "textwrap", 2551 2394 ] 2552 2395 2553 2396 [[package]] 2554 2397 name = "gst-plugin-threadshare" 2555 - version = "0.10.11" 2398 + version = "0.11.0" 2556 2399 dependencies = [ 2557 2400 "async-task", 2558 2401 "cc", ··· 2579 2428 2580 2429 [[package]] 2581 2430 name = "gst-plugin-togglerecord" 2582 - version = "0.10.11" 2431 + version = "0.11.0" 2583 2432 dependencies = [ 2584 2433 "either", 2585 2434 "gio", ··· 2587 2436 "gst-plugin-version-helper", 2588 2437 "gstreamer", 2589 2438 "gstreamer-audio", 2439 + "gstreamer-check", 2590 2440 "gstreamer-video", 2591 2441 "gtk4", 2592 - "once_cell", 2593 2442 "parking_lot", 2594 2443 ] 2595 2444 2596 2445 [[package]] 2597 2446 name = "gst-plugin-tracers" 2598 - version = "0.10.11" 2447 + version = "0.11.0" 2599 2448 dependencies = [ 2600 2449 "anyhow", 2601 2450 "gst-plugin-version-helper", 2602 2451 "gstreamer", 2603 - "once_cell", 2604 2452 "regex", 2605 2453 "signal-hook", 2606 2454 ] 2607 2455 2608 2456 [[package]] 2609 2457 name = "gst-plugin-tutorial" 2610 - version = "0.10.11" 2458 + version = "0.11.0" 2611 2459 dependencies = [ 2612 2460 "byte-slice-cast", 2613 2461 "gst-plugin-version-helper", ··· 2615 2465 "gstreamer-base", 2616 2466 "gstreamer-video", 2617 2467 "num-traits", 2618 - "once_cell", 2619 2468 ] 2620 2469 2621 2470 [[package]] 2622 2471 name = "gst-plugin-uriplaylistbin" 2623 - version = "0.10.11" 2472 + version = "0.11.0" 2624 2473 dependencies = [ 2625 2474 "anyhow", 2626 2475 "clap", ··· 2627 2478 "gstreamer", 2628 2479 "gstreamer-app", 2629 2480 "more-asserts", 2630 - "once_cell", 2631 2481 "thiserror", 2632 2482 "url", 2633 2483 ] ··· 2640 2492 2641 2493 [[package]] 2642 2494 name = "gst-plugin-videofx" 2643 - version = "0.10.11" 2495 + version = "0.11.0" 2644 2496 dependencies = [ 2645 2497 "atomic_refcell", 2646 2498 "cairo-rs", ··· 2654 2506 "gstreamer-video", 2655 2507 "image", 2656 2508 "image_hasher", 2657 - "once_cell", 2658 2509 "rgb", 2659 2510 ] 2660 2511 2661 2512 [[package]] 2662 2513 name = "gst-plugin-webp" 2663 - version = "0.10.11" 2514 + version = "0.11.0" 2664 2515 dependencies = [ 2665 2516 "gst-plugin-version-helper", 2666 2517 "gstreamer", 2667 2518 "gstreamer-check", 2668 2519 "gstreamer-video", 2669 2520 "libwebp-sys2", 2670 - "once_cell", 2671 2521 "pretty_assertions", 2672 2522 ] 2673 2523 2674 2524 [[package]] 2675 2525 name = "gst-plugin-webrtc" 2676 - version = "0.10.11" 2526 + version = "0.11.0" 2677 2527 dependencies = [ 2678 2528 "anyhow", 2529 + "async-recursion", 2679 2530 "async-tungstenite", 2531 + "aws-config", 2532 + "aws-credential-types", 2533 + "aws-sdk-kinesisvideo", 2534 + "aws-sdk-kinesisvideosignaling", 2535 + "aws-sig-auth", 2536 + "aws-smithy-http", 2537 + "aws-smithy-types", 2538 + "aws-types", 2539 + "chrono", 2680 2540 "clap", 2681 - "fastrand 2.0.0", 2541 + "data-encoding", 2542 + "fastrand", 2682 2543 "futures", 2683 2544 "gst-plugin-version-helper", 2684 2545 "gst-plugin-webrtc-signalling-protocol", ··· 2699 2542 "gstreamer-utils", 2700 2543 "gstreamer-video", 2701 2544 "gstreamer-webrtc", 2545 + "http", 2702 2546 "human_bytes", 2703 - "once_cell", 2547 + "livekit-api", 2548 + "livekit-protocol", 2549 + "parse_link_header", 2550 + "regex", 2551 + "reqwest", 2704 2552 "serde", 2705 2553 "serde_json", 2706 2554 "thiserror", ··· 2716 2554 "tracing-log", 2717 2555 "tracing-subscriber", 2718 2556 "url", 2557 + "url-escape", 2719 2558 "uuid", 2720 2559 ] 2721 2560 2722 2561 [[package]] 2723 2562 name = "gst-plugin-webrtc-signalling" 2724 - version = "0.10.11" 2563 + version = "0.11.0" 2725 2564 dependencies = [ 2726 2565 "anyhow", 2727 2566 "async-tungstenite", 2728 2567 "clap", 2729 2568 "futures", 2730 2569 "gst-plugin-webrtc-signalling-protocol", 2731 - "once_cell", 2732 2570 "pin-project-lite", 2733 2571 "serde", 2734 2572 "serde_json", ··· 2744 2582 2745 2583 [[package]] 2746 2584 name = "gst-plugin-webrtc-signalling-protocol" 2747 - version = "0.10.11" 2585 + version = "0.11.0" 2748 2586 dependencies = [ 2749 2587 "serde", 2750 2588 "serde_json", ··· 2752 2590 2753 2591 [[package]] 2754 2592 name = "gst-plugin-webrtchttp" 2755 - version = "0.10.11" 2593 + version = "0.11.0" 2756 2594 dependencies = [ 2757 2595 "async-recursion", 2758 2596 "bytes", ··· 2761 2599 "gstreamer", 2762 2600 "gstreamer-sdp", 2763 2601 "gstreamer-webrtc", 2764 - "once_cell", 2765 2602 "parse_link_header", 2766 2603 "reqwest", 2767 2604 "tokio", ··· 2768 2607 2769 2608 [[package]] 2770 2609 name = "gstreamer" 2771 - version = "0.20.7" 2772 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2610 + version = "0.21.0" 2611 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2773 2612 dependencies = [ 2774 - "bitflags 1.3.2", 2775 2613 "cfg-if", 2776 2614 "futures-channel", 2777 2615 "futures-core", 2778 2616 "futures-util", 2779 2617 "glib", 2780 2618 "gstreamer-sys", 2619 + "itertools 0.11.0", 2781 2620 "libc", 2782 2621 "muldiv", 2783 2622 "num-integer", 2784 2623 "num-rational", 2785 - "once_cell", 2786 2624 "option-operations", 2787 2625 "paste", 2788 2626 "pretty-hex", ··· 2793 2633 2794 2634 [[package]] 2795 2635 name = "gstreamer-app" 2796 - version = "0.20.7" 2797 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2636 + version = "0.21.0" 2637 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2798 2638 dependencies = [ 2799 - "bitflags 1.3.2", 2800 2639 "futures-core", 2801 2640 "futures-sink", 2802 2641 "glib", ··· 2803 2644 "gstreamer-app-sys", 2804 2645 "gstreamer-base", 2805 2646 "libc", 2806 - "once_cell", 2807 2647 ] 2808 2648 2809 2649 [[package]] 2810 2650 name = "gstreamer-app-sys" 2811 - version = "0.20.7" 2812 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2651 + version = "0.21.0" 2652 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2813 2653 dependencies = [ 2814 2654 "glib-sys", 2815 2655 "gstreamer-base-sys", ··· 2819 2661 2820 2662 [[package]] 2821 2663 name = "gstreamer-audio" 2822 - version = "0.20.7" 2823 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2664 + version = "0.21.0" 2665 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2824 2666 dependencies = [ 2825 - "bitflags 1.3.2", 2826 2667 "cfg-if", 2827 2668 "glib", 2828 2669 "gstreamer", 2829 2670 "gstreamer-audio-sys", 2830 2671 "gstreamer-base", 2831 2672 "libc", 2832 - "once_cell", 2833 2673 ] 2834 2674 2835 2675 [[package]] 2836 2676 name = "gstreamer-audio-sys" 2837 - version = "0.20.7" 2838 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2677 + version = "0.21.0" 2678 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2839 2679 dependencies = [ 2840 2680 "glib-sys", 2841 2681 "gobject-sys", ··· 2845 2689 2846 2690 [[package]] 2847 2691 name = "gstreamer-base" 2848 - version = "0.20.7" 2849 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2692 + version = "0.21.0" 2693 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2850 2694 dependencies = [ 2851 2695 "atomic_refcell", 2852 - "bitflags 1.3.2", 2853 2696 "cfg-if", 2854 2697 "glib", 2855 2698 "gstreamer", 2856 2699 "gstreamer-base-sys", 2857 2700 "libc", 2858 - "once_cell", 2859 2701 ] 2860 2702 2861 2703 [[package]] 2862 2704 name = "gstreamer-base-sys" 2863 - version = "0.20.7" 2864 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2705 + version = "0.21.0" 2706 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2865 2707 dependencies = [ 2866 2708 "glib-sys", 2867 2709 "gobject-sys", ··· 2870 2716 2871 2717 [[package]] 2872 2718 name = "gstreamer-check" 2873 - version = "0.20.7" 2874 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2719 + version = "0.21.0" 2720 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2875 2721 dependencies = [ 2876 - "bitflags 1.3.2", 2877 2722 "glib", 2878 2723 "gstreamer", 2879 2724 "gstreamer-check-sys", ··· 2880 2727 2881 2728 [[package]] 2882 2729 name = "gstreamer-check-sys" 2883 - version = "0.20.7" 2884 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2730 + version = "0.21.0" 2731 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2885 2732 dependencies = [ 2886 2733 "glib-sys", 2887 2734 "gobject-sys", ··· 2892 2739 2893 2740 [[package]] 2894 2741 name = "gstreamer-gl" 2895 - version = "0.20.7" 2896 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2742 + version = "0.21.0" 2743 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2897 2744 dependencies = [ 2898 - "bitflags 1.3.2", 2899 2745 "glib", 2900 2746 "gstreamer", 2901 2747 "gstreamer-base", 2902 2748 "gstreamer-gl-sys", 2903 2749 "gstreamer-video", 2904 2750 "libc", 2905 - "once_cell", 2906 2751 ] 2907 2752 2908 2753 [[package]] 2909 2754 name = "gstreamer-gl-egl" 2910 - version = "0.20.7" 2911 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2755 + version = "0.21.0" 2756 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2912 2757 dependencies = [ 2913 2758 "glib", 2914 2759 "gstreamer", ··· 2917 2766 2918 2767 [[package]] 2919 2768 name = "gstreamer-gl-egl-sys" 2920 - version = "0.20.7" 2921 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2769 + version = "0.21.0" 2770 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2922 2771 dependencies = [ 2923 2772 "glib-sys", 2924 2773 "gstreamer-gl-sys", ··· 2928 2777 2929 2778 [[package]] 2930 2779 name = "gstreamer-gl-sys" 2931 - version = "0.20.7" 2932 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2780 + version = "0.21.0" 2781 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2933 2782 dependencies = [ 2934 2783 "glib-sys", 2935 2784 "gobject-sys", ··· 2942 2791 2943 2792 [[package]] 2944 2793 name = "gstreamer-gl-wayland" 2945 - version = "0.20.7" 2946 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2794 + version = "0.21.0" 2795 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2947 2796 dependencies = [ 2948 2797 "glib", 2949 2798 "gstreamer", ··· 2954 2803 2955 2804 [[package]] 2956 2805 name = "gstreamer-gl-wayland-sys" 2957 - version = "0.20.7" 2958 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2806 + version = "0.21.0" 2807 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2959 2808 dependencies = [ 2960 2809 "glib-sys", 2961 2810 "gstreamer-gl-sys", ··· 2965 2814 2966 2815 [[package]] 2967 2816 name = "gstreamer-gl-x11" 2968 - version = "0.20.7" 2969 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2817 + version = "0.21.0" 2818 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2970 2819 dependencies = [ 2971 2820 "glib", 2972 2821 "gstreamer", ··· 2977 2826 2978 2827 [[package]] 2979 2828 name = "gstreamer-gl-x11-sys" 2980 - version = "0.20.7" 2981 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2829 + version = "0.21.0" 2830 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2982 2831 dependencies = [ 2983 2832 "glib-sys", 2984 2833 "gstreamer-gl-sys", ··· 2988 2837 2989 2838 [[package]] 2990 2839 name = "gstreamer-net" 2991 - version = "0.20.7" 2992 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2840 + version = "0.21.0" 2841 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 2993 2842 dependencies = [ 2994 2843 "gio", 2995 2844 "glib", ··· 2999 2848 3000 2849 [[package]] 3001 2850 name = "gstreamer-net-sys" 3002 - version = "0.20.7" 3003 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2851 + version = "0.21.0" 2852 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3004 2853 dependencies = [ 3005 2854 "gio-sys", 3006 2855 "glib-sys", ··· 3011 2860 3012 2861 [[package]] 3013 2862 name = "gstreamer-pbutils" 3014 - version = "0.20.7" 3015 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2863 + version = "0.21.0" 2864 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3016 2865 dependencies = [ 3017 - "bitflags 1.3.2", 3018 2866 "glib", 3019 2867 "gstreamer", 3020 2868 "gstreamer-audio", ··· 3025 2875 3026 2876 [[package]] 3027 2877 name = "gstreamer-pbutils-sys" 3028 - version = "0.20.7" 3029 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2878 + version = "0.21.0" 2879 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3030 2880 dependencies = [ 3031 2881 "glib-sys", 3032 2882 "gobject-sys", ··· 3039 2889 3040 2890 [[package]] 3041 2891 name = "gstreamer-rtp" 3042 - version = "0.20.7" 3043 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2892 + version = "0.21.0" 2893 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3044 2894 dependencies = [ 3045 - "bitflags 1.3.2", 3046 2895 "glib", 3047 2896 "gstreamer", 3048 2897 "gstreamer-rtp-sys", 3049 2898 "libc", 3050 - "once_cell", 3051 2899 ] 3052 2900 3053 2901 [[package]] 3054 2902 name = "gstreamer-rtp-sys" 3055 - version = "0.20.7" 3056 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2903 + version = "0.21.0" 2904 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3057 2905 dependencies = [ 3058 2906 "glib-sys", 3059 2907 "gstreamer-base-sys", ··· 3062 2914 3063 2915 [[package]] 3064 2916 name = "gstreamer-sdp" 3065 - version = "0.20.7" 3066 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2917 + version = "0.21.0" 2918 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3067 2919 dependencies = [ 3068 2920 "glib", 3069 2921 "gstreamer", ··· 3072 2924 3073 2925 [[package]] 3074 2926 name = "gstreamer-sdp-sys" 3075 - version = "0.20.7" 3076 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2927 + version = "0.21.0" 2928 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3077 2929 dependencies = [ 3078 2930 "glib-sys", 3079 2931 "gstreamer-sys", ··· 3083 2935 3084 2936 [[package]] 3085 2937 name = "gstreamer-sys" 3086 - version = "0.20.7" 3087 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2938 + version = "0.21.0" 2939 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3088 2940 dependencies = [ 3089 2941 "glib-sys", 3090 2942 "gobject-sys", ··· 3094 2946 3095 2947 [[package]] 3096 2948 name = "gstreamer-utils" 3097 - version = "0.20.7" 3098 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2949 + version = "0.21.0" 2950 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3099 2951 dependencies = [ 3100 2952 "gstreamer", 3101 2953 "gstreamer-app", 3102 2954 "gstreamer-video", 3103 - "once_cell", 3104 2955 "thiserror", 3105 2956 ] 3106 2957 3107 2958 [[package]] 3108 2959 name = "gstreamer-video" 3109 - version = "0.20.7" 3110 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2960 + version = "0.21.0" 2961 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3111 2962 dependencies = [ 3112 - "bitflags 1.3.2", 3113 2963 "cfg-if", 3114 2964 "futures-channel", 3115 2965 "glib", ··· 3115 2969 "gstreamer-base", 3116 2970 "gstreamer-video-sys", 3117 2971 "libc", 3118 - "once_cell", 3119 2972 "serde", 3120 2973 ] 3121 2974 3122 2975 [[package]] 3123 2976 name = "gstreamer-video-sys" 3124 - version = "0.20.7" 3125 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 2977 + version = "0.21.0" 2978 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3126 2979 dependencies = [ 3127 2980 "glib-sys", 3128 2981 "gobject-sys", ··· 3133 2988 3134 2989 [[package]] 3135 2990 name = "gstreamer-webrtc" 3136 - version = "0.20.7" 3137 - 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" 3138 2993 dependencies = [ 3139 2994 "glib", 3140 2995 "gstreamer", ··· 3145 3000 3146 3001 [[package]] 3147 3002 name = "gstreamer-webrtc-sys" 3148 - version = "0.20.7" 3149 - source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.20#37edd497cc778a3b70af5073e6383c9a8d9e5891" 3003 + version = "0.21.0" 3004 + source = "git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs?branch=0.21#5022d85b8385814669aa797249dce94193eeccc0" 3150 3005 dependencies = [ 3151 3006 "glib-sys", 3152 3007 "gstreamer-sdp-sys", ··· 3157 3012 3158 3013 [[package]] 3159 3014 name = "gtk4" 3160 - version = "0.6.6" 3161 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 3015 + version = "0.7.1" 3016 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 3162 3017 dependencies = [ 3163 - "bitflags 1.3.2", 3164 3018 "cairo-rs", 3165 3019 "field-offset", 3166 3020 "futures-channel", ··· 3172 3028 "gtk4-macros", 3173 3029 "gtk4-sys", 3174 3030 "libc", 3175 - "once_cell", 3176 3031 "pango", 3177 3032 ] 3178 3033 3179 3034 [[package]] 3180 3035 name = "gtk4-macros" 3181 - version = "0.6.6" 3182 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 3036 + version = "0.7.1" 3037 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 3183 3038 dependencies = [ 3184 3039 "anyhow", 3185 3040 "proc-macro-crate", ··· 3190 3047 3191 3048 [[package]] 3192 3049 name = "gtk4-sys" 3193 - version = "0.6.6" 3194 - source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.6#484447e0f3614466591534783979677fb089a740" 3050 + version = "0.7.1" 3051 + source = "git+https://github.com/gtk-rs/gtk4-rs?branch=0.7#9cf490a3afcad0a61233d4f65cfc2f5d2d369e9f" 3195 3052 dependencies = [ 3196 3053 "cairo-sys-rs", 3197 3054 "gdk-pixbuf-sys", ··· 3230 3087 version = "0.12.3" 3231 3088 source = "registry+https://github.com/rust-lang/crates.io-index" 3232 3089 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 3233 - dependencies = [ 3234 - "ahash", 3235 - ] 3236 3090 3237 3091 [[package]] 3238 3092 name = "hashbrown" ··· 3417 3277 3418 3278 [[package]] 3419 3279 name = "hyper-rustls" 3420 - version = "0.23.2" 3280 + version = "0.24.1" 3421 3281 source = "registry+https://github.com/rust-lang/crates.io-index" 3422 - checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" 3282 + checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" 3423 3283 dependencies = [ 3284 + "futures-util", 3424 3285 "http", 3425 3286 "hyper", 3426 3287 "log", ··· 3491 3350 ] 3492 3351 3493 3352 [[package]] 3353 + name = "ident_case" 3354 + version = "1.0.1" 3355 + source = "registry+https://github.com/rust-lang/crates.io-index" 3356 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 3357 + 3358 + [[package]] 3494 3359 name = "idna" 3495 3360 version = "0.2.3" 3496 3361 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3539 3392 3540 3393 [[package]] 3541 3394 name = "image" 3542 - version = "0.24.6" 3395 + version = "0.24.7" 3543 3396 source = "registry+https://github.com/rust-lang/crates.io-index" 3544 - checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" 3397 + checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 3545 3398 dependencies = [ 3546 3399 "bytemuck", 3547 3400 "byteorder", ··· 3577 3430 dependencies = [ 3578 3431 "autocfg", 3579 3432 "hashbrown 0.12.3", 3433 + "serde", 3580 3434 ] 3581 3435 3582 3436 [[package]] ··· 3588 3440 dependencies = [ 3589 3441 "equivalent", 3590 3442 "hashbrown 0.14.0", 3591 - ] 3592 - 3593 - [[package]] 3594 - name = "instant" 3595 - version = "0.1.12" 3596 - source = "registry+https://github.com/rust-lang/crates.io-index" 3597 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 3598 - dependencies = [ 3599 - "cfg-if", 3443 + "serde", 3600 3444 ] 3601 3445 3602 3446 [[package]] ··· 3600 3460 "proc-macro2", 3601 3461 "quote", 3602 3462 "syn 1.0.109", 3603 - ] 3604 - 3605 - [[package]] 3606 - name = "io-lifetimes" 3607 - version = "1.0.11" 3608 - source = "registry+https://github.com/rust-lang/crates.io-index" 3609 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 3610 - dependencies = [ 3611 - "hermit-abi 0.3.2", 3612 - "libc", 3613 - "windows-sys", 3614 3463 ] 3615 3464 3616 3465 [[package]] ··· 3615 3486 checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" 3616 3487 dependencies = [ 3617 3488 "hermit-abi 0.3.2", 3618 - "rustix 0.38.4", 3489 + "rustix", 3619 3490 "windows-sys", 3491 + ] 3492 + 3493 + [[package]] 3494 + name = "iso8601" 3495 + version = "0.6.1" 3496 + source = "registry+https://github.com/rust-lang/crates.io-index" 3497 + checksum = "924e5d73ea28f59011fec52a0d12185d496a9b075d360657aed2a5707f701153" 3498 + dependencies = [ 3499 + "nom", 3620 3500 ] 3621 3501 3622 3502 [[package]] ··· 3671 3533 ] 3672 3534 3673 3535 [[package]] 3674 - name = "khronos-egl" 3675 - version = "4.1.0" 3536 + name = "jsonwebtoken" 3537 + version = "8.3.0" 3676 3538 source = "registry+https://github.com/rust-lang/crates.io-index" 3677 - checksum = "8c2352bd1d0bceb871cb9d40f24360c8133c11d7486b68b5381c1dd1a32015e3" 3539 + checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" 3540 + dependencies = [ 3541 + "base64 0.21.2", 3542 + "ring", 3543 + "serde", 3544 + "serde_json", 3545 + ] 3546 + 3547 + [[package]] 3548 + name = "khronos-egl" 3549 + version = "5.0.0" 3550 + source = "registry+https://github.com/rust-lang/crates.io-index" 3551 + checksum = "d1382b16c04aeb821453d6215a3c80ba78f24c6595c5aa85653378aabe0c83e3" 3678 3552 dependencies = [ 3679 3553 "libc", 3680 3554 ] ··· 3963 3813 3964 3814 [[package]] 3965 3815 name = "linux-raw-sys" 3966 - version = "0.3.8" 3816 + version = "0.4.5" 3967 3817 source = "registry+https://github.com/rust-lang/crates.io-index" 3968 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 3818 + checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 3969 3819 3970 3820 [[package]] 3971 - name = "linux-raw-sys" 3972 - version = "0.4.3" 3821 + name = "livekit-api" 3822 + version = "0.1.3" 3973 3823 source = "registry+https://github.com/rust-lang/crates.io-index" 3974 - checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0" 3824 + checksum = "e0d4c5d731bb0da7b313c982ee32300e7caf1ee0595c0d1e57d00f43248c0c47" 3825 + dependencies = [ 3826 + "futures-util", 3827 + "jsonwebtoken", 3828 + "livekit-protocol", 3829 + "log", 3830 + "parking_lot", 3831 + "prost", 3832 + "reqwest", 3833 + "serde", 3834 + "serde_json", 3835 + "sha2", 3836 + "thiserror", 3837 + "tokio", 3838 + "tokio-tungstenite", 3839 + "url", 3840 + ] 3841 + 3842 + [[package]] 3843 + name = "livekit-protocol" 3844 + version = "0.1.3" 3845 + source = "registry+https://github.com/rust-lang/crates.io-index" 3846 + checksum = "81bd731959a8dccc17248499b9952693f593bee4bb79186bf60d180b4097be59" 3847 + dependencies = [ 3848 + "futures-util", 3849 + "parking_lot", 3850 + "prost", 3851 + "prost-types", 3852 + "tokio", 3853 + ] 3975 3854 3976 3855 [[package]] 3977 3856 name = "lock_api" ··· 4277 4098 dependencies = [ 4278 4099 "proc-macro2", 4279 4100 "quote", 4280 - "syn 2.0.26", 4101 + "syn 2.0.28", 4281 4102 ] 4282 4103 4283 4104 [[package]] ··· 4305 4126 4306 4127 [[package]] 4307 4128 name = "num-traits" 4308 - version = "0.2.15" 4129 + version = "0.2.16" 4309 4130 source = "registry+https://github.com/rust-lang/crates.io-index" 4310 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 4131 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 4311 4132 dependencies = [ 4312 4133 "autocfg", 4313 4134 "libm", ··· 4355 4176 4356 4177 [[package]] 4357 4178 name = "openssl" 4358 - version = "0.10.55" 4179 + version = "0.10.56" 4359 4180 source = "registry+https://github.com/rust-lang/crates.io-index" 4360 - checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d" 4181 + checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" 4361 4182 dependencies = [ 4362 4183 "bitflags 1.3.2", 4363 4184 "cfg-if", ··· 4376 4197 dependencies = [ 4377 4198 "proc-macro2", 4378 4199 "quote", 4379 - "syn 2.0.26", 4200 + "syn 2.0.28", 4380 4201 ] 4381 4202 4382 4203 [[package]] ··· 4387 4208 4388 4209 [[package]] 4389 4210 name = "openssl-sys" 4390 - version = "0.9.90" 4211 + version = "0.9.91" 4391 4212 source = "registry+https://github.com/rust-lang/crates.io-index" 4392 - checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6" 4213 + checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac" 4393 4214 dependencies = [ 4394 4215 "cc", 4395 4216 "libc", ··· 4420 4241 4421 4242 [[package]] 4422 4243 name = "pango" 4423 - version = "0.17.10" 4424 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 4244 + version = "0.18.1" 4245 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 4425 4246 dependencies = [ 4426 - "bitflags 1.3.2", 4427 4247 "gio", 4428 4248 "glib", 4429 4249 "libc", ··· 4432 4254 4433 4255 [[package]] 4434 4256 name = "pango-sys" 4435 - version = "0.17.10" 4436 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 4257 + version = "0.18.1" 4258 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 4437 4259 dependencies = [ 4438 4260 "glib-sys", 4439 4261 "gobject-sys", ··· 4443 4265 4444 4266 [[package]] 4445 4267 name = "pangocairo" 4446 - version = "0.17.10" 4447 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 4268 + version = "0.18.1" 4269 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 4448 4270 dependencies = [ 4449 - "bitflags 1.3.2", 4450 4271 "cairo-rs", 4451 4272 "glib", 4452 4273 "libc", ··· 4455 4278 4456 4279 [[package]] 4457 4280 name = "pangocairo-sys" 4458 - version = "0.17.10" 4459 - source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.17#6b109fb807237b5d07aff9a541ca68e9c2191abd" 4281 + version = "0.18.1" 4282 + source = "git+https://github.com/gtk-rs/gtk-rs-core?branch=0.18#854c9b0592fb3a3865caa3e8538a5dda98399c0c" 4460 4283 dependencies = [ 4461 4284 "cairo-sys-rs", 4462 4285 "glib-sys", ··· 4537 4360 4538 4361 [[package]] 4539 4362 name = "pin-project" 4540 - version = "1.1.2" 4363 + version = "1.1.3" 4541 4364 source = "registry+https://github.com/rust-lang/crates.io-index" 4542 - checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842" 4365 + checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 4543 4366 dependencies = [ 4544 4367 "pin-project-internal", 4545 4368 ] 4546 4369 4547 4370 [[package]] 4548 4371 name = "pin-project-internal" 4549 - version = "1.1.2" 4372 + version = "1.1.3" 4550 4373 source = "registry+https://github.com/rust-lang/crates.io-index" 4551 - checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c" 4374 + checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 4552 4375 dependencies = [ 4553 4376 "proc-macro2", 4554 4377 "quote", 4555 - "syn 2.0.26", 4378 + "syn 2.0.28", 4556 4379 ] 4557 4380 4558 4381 [[package]] 4559 4382 name = "pin-project-lite" 4560 - version = "0.2.10" 4383 + version = "0.2.12" 4561 4384 source = "registry+https://github.com/rust-lang/crates.io-index" 4562 - checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 4385 + checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 4563 4386 4564 4387 [[package]] 4565 4388 name = "pin-utils" ··· 4693 4516 ] 4694 4517 4695 4518 [[package]] 4519 + name = "prost" 4520 + version = "0.11.9" 4521 + source = "registry+https://github.com/rust-lang/crates.io-index" 4522 + checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" 4523 + dependencies = [ 4524 + "bytes", 4525 + "prost-derive", 4526 + ] 4527 + 4528 + [[package]] 4529 + name = "prost-derive" 4530 + version = "0.11.9" 4531 + source = "registry+https://github.com/rust-lang/crates.io-index" 4532 + checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" 4533 + dependencies = [ 4534 + "anyhow", 4535 + "itertools 0.10.5", 4536 + "proc-macro2", 4537 + "quote", 4538 + "syn 1.0.109", 4539 + ] 4540 + 4541 + [[package]] 4542 + name = "prost-types" 4543 + version = "0.11.9" 4544 + source = "registry+https://github.com/rust-lang/crates.io-index" 4545 + checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" 4546 + dependencies = [ 4547 + "prost", 4548 + ] 4549 + 4550 + [[package]] 4696 4551 name = "protobuf" 4697 4552 version = "2.28.0" 4698 4553 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4766 4557 ] 4767 4558 4768 4559 [[package]] 4769 - name = "quote" 4770 - version = "1.0.31" 4560 + name = "quick-xml" 4561 + version = "0.30.0" 4771 4562 source = "registry+https://github.com/rust-lang/crates.io-index" 4772 - checksum = "5fe8a65d69dd0808184ebb5f836ab526bb259db23c657efa38711b1072ee47f0" 4563 + checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" 4564 + dependencies = [ 4565 + "memchr", 4566 + "serde", 4567 + ] 4568 + 4569 + [[package]] 4570 + name = "quote" 4571 + version = "1.0.32" 4572 + source = "registry+https://github.com/rust-lang/crates.io-index" 4573 + checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" 4773 4574 dependencies = [ 4774 4575 "proc-macro2", 4775 4576 ] ··· 4918 4699 4919 4700 [[package]] 4920 4701 name = "regex" 4921 - version = "1.9.1" 4702 + version = "1.9.3" 4922 4703 source = "registry+https://github.com/rust-lang/crates.io-index" 4923 - checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" 4704 + checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" 4924 4705 dependencies = [ 4925 4706 "aho-corasick", 4926 4707 "memchr", 4927 - "regex-automata 0.3.3", 4708 + "regex-automata 0.3.6", 4928 4709 "regex-syntax 0.7.4", 4929 4710 ] 4930 4711 ··· 4939 4720 4940 4721 [[package]] 4941 4722 name = "regex-automata" 4942 - version = "0.3.3" 4723 + version = "0.3.6" 4943 4724 source = "registry+https://github.com/rust-lang/crates.io-index" 4944 - checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" 4725 + checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" 4945 4726 dependencies = [ 4946 4727 "aho-corasick", 4947 4728 "memchr", ··· 5113 4894 5114 4895 [[package]] 5115 4896 name = "rustix" 5116 - version = "0.37.23" 4897 + version = "0.38.7" 5117 4898 source = "registry+https://github.com/rust-lang/crates.io-index" 5118 - checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" 5119 - dependencies = [ 5120 - "bitflags 1.3.2", 5121 - "errno", 5122 - "io-lifetimes", 5123 - "libc", 5124 - "linux-raw-sys 0.3.8", 5125 - "windows-sys", 5126 - ] 5127 - 5128 - [[package]] 5129 - name = "rustix" 5130 - version = "0.38.4" 5131 - source = "registry+https://github.com/rust-lang/crates.io-index" 5132 - checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5" 4899 + checksum = "172891ebdceb05aa0005f533a6cbfca599ddd7d966f6f5d4d9b2e70478e70399" 5133 4900 dependencies = [ 5134 4901 "bitflags 2.3.3", 5135 4902 "errno", 5136 4903 "libc", 5137 - "linux-raw-sys 0.4.3", 4904 + "linux-raw-sys", 5138 4905 "windows-sys", 5139 4906 ] 5140 4907 5141 4908 [[package]] 5142 4909 name = "rustls" 5143 - version = "0.20.8" 4910 + version = "0.21.6" 5144 4911 source = "registry+https://github.com/rust-lang/crates.io-index" 5145 - checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 4912 + checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb" 5146 4913 dependencies = [ 5147 4914 "log", 5148 4915 "ring", 4916 + "rustls-webpki", 5149 4917 "sct", 5150 - "webpki", 5151 4918 ] 5152 4919 5153 4920 [[package]] ··· 5155 4950 checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" 5156 4951 dependencies = [ 5157 4952 "base64 0.21.2", 4953 + ] 4954 + 4955 + [[package]] 4956 + name = "rustls-webpki" 4957 + version = "0.101.3" 4958 + source = "registry+https://github.com/rust-lang/crates.io-index" 4959 + checksum = "261e9e0888cba427c3316e6322805653c9425240b6fd96cee7cb671ab70ab8d0" 4960 + dependencies = [ 4961 + "ring", 4962 + "untrusted", 5158 4963 ] 5159 4964 5160 4965 [[package]] ··· 5209 4994 5210 4995 [[package]] 5211 4996 name = "security-framework" 5212 - version = "2.9.1" 4997 + version = "2.9.2" 5213 4998 source = "registry+https://github.com/rust-lang/crates.io-index" 5214 - checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8" 4999 + checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 5215 5000 dependencies = [ 5216 5001 "bitflags 1.3.2", 5217 5002 "core-foundation", ··· 5222 5007 5223 5008 [[package]] 5224 5009 name = "security-framework-sys" 5225 - version = "2.9.0" 5010 + version = "2.9.1" 5226 5011 source = "registry+https://github.com/rust-lang/crates.io-index" 5227 - checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7" 5012 + checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 5228 5013 dependencies = [ 5229 5014 "core-foundation-sys", 5230 5015 "libc", ··· 5241 5026 5242 5027 [[package]] 5243 5028 name = "serde" 5244 - version = "1.0.171" 5029 + version = "1.0.183" 5245 5030 source = "registry+https://github.com/rust-lang/crates.io-index" 5246 - checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9" 5031 + checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" 5247 5032 dependencies = [ 5248 5033 "serde_derive", 5249 5034 ] ··· 5259 5044 5260 5045 [[package]] 5261 5046 name = "serde_derive" 5262 - version = "1.0.171" 5047 + version = "1.0.183" 5263 5048 source = "registry+https://github.com/rust-lang/crates.io-index" 5264 - checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682" 5049 + checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" 5265 5050 dependencies = [ 5266 5051 "proc-macro2", 5267 5052 "quote", 5268 - "syn 2.0.26", 5053 + "syn 2.0.28", 5269 5054 ] 5270 5055 5271 5056 [[package]] 5272 5057 name = "serde_json" 5273 - version = "1.0.103" 5058 + version = "1.0.104" 5274 5059 source = "registry+https://github.com/rust-lang/crates.io-index" 5275 - checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b" 5060 + checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" 5276 5061 dependencies = [ 5277 5062 "itoa", 5278 5063 "ryu", ··· 5298 5083 "itoa", 5299 5084 "ryu", 5300 5085 "serde", 5086 + ] 5087 + 5088 + [[package]] 5089 + name = "serde_with" 5090 + version = "3.2.0" 5091 + source = "registry+https://github.com/rust-lang/crates.io-index" 5092 + checksum = "1402f54f9a3b9e2efe71c1cea24e648acce55887983553eeb858cf3115acfd49" 5093 + dependencies = [ 5094 + "base64 0.21.2", 5095 + "chrono", 5096 + "hex", 5097 + "indexmap 1.9.3", 5098 + "indexmap 2.0.0", 5099 + "serde", 5100 + "serde_json", 5101 + "serde_with_macros", 5102 + "time 0.3.25", 5103 + ] 5104 + 5105 + [[package]] 5106 + name = "serde_with_macros" 5107 + version = "3.2.0" 5108 + source = "registry+https://github.com/rust-lang/crates.io-index" 5109 + checksum = "9197f1ad0e3c173a0222d3c4404fb04c3afe87e962bcb327af73e8301fa203c7" 5110 + dependencies = [ 5111 + "darling", 5112 + "proc-macro2", 5113 + "quote", 5114 + "syn 2.0.28", 5301 5115 ] 5302 5116 5303 5117 [[package]] ··· 5415 5171 5416 5172 [[package]] 5417 5173 name = "simd-adler32" 5418 - version = "0.3.5" 5174 + version = "0.3.7" 5419 5175 source = "registry+https://github.com/rust-lang/crates.io-index" 5420 - checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f" 5176 + checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 5421 5177 5422 5178 [[package]] 5423 5179 name = "simd_helpers" ··· 5527 5283 5528 5284 [[package]] 5529 5285 name = "syn" 5530 - version = "2.0.26" 5286 + version = "2.0.28" 5531 5287 source = "registry+https://github.com/rust-lang/crates.io-index" 5532 - checksum = "45c3457aacde3c65315de5031ec191ce46604304d2446e803d71ade03308d970" 5288 + checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567" 5533 5289 dependencies = [ 5534 5290 "proc-macro2", 5535 5291 "quote", ··· 5551 5307 5552 5308 [[package]] 5553 5309 name = "target-lexicon" 5554 - version = "0.12.10" 5310 + version = "0.12.11" 5555 5311 source = "registry+https://github.com/rust-lang/crates.io-index" 5556 - checksum = "1d2faeef5759ab89935255b1a4cd98e0baf99d1085e37d36599c625dac49ae8e" 5312 + checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" 5557 5313 5558 5314 [[package]] 5559 5315 name = "tempfile" 5560 - version = "3.6.0" 5316 + version = "3.7.1" 5561 5317 source = "registry+https://github.com/rust-lang/crates.io-index" 5562 - checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6" 5318 + checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" 5563 5319 dependencies = [ 5564 - "autocfg", 5565 5320 "cfg-if", 5566 - "fastrand 1.9.0", 5321 + "fastrand", 5567 5322 "redox_syscall 0.3.5", 5568 - "rustix 0.37.23", 5323 + "rustix", 5569 5324 "windows-sys", 5570 5325 ] 5571 5326 ··· 5590 5347 5591 5348 [[package]] 5592 5349 name = "test-with" 5593 - version = "0.9.7" 5350 + version = "0.10.0" 5594 5351 source = "registry+https://github.com/rust-lang/crates.io-index" 5595 - checksum = "ca3e3e1275a1442b99772321d4a35e0622f7abc04f6af49bd801c7119645bc9e" 5352 + checksum = "5ea821854cf861c2bd28c19253b5b036fa4a6990745897bdb18a511b787c0187" 5596 5353 dependencies = [ 5597 5354 "proc-macro-error", 5598 5355 "proc-macro2", 5599 5356 "quote", 5600 5357 "regex", 5601 - "syn 2.0.26", 5358 + "syn 2.0.28", 5602 5359 ] 5603 5360 5604 5361 [[package]] ··· 5615 5372 5616 5373 [[package]] 5617 5374 name = "thiserror" 5618 - version = "1.0.43" 5375 + version = "1.0.44" 5619 5376 source = "registry+https://github.com/rust-lang/crates.io-index" 5620 - checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42" 5377 + checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" 5621 5378 dependencies = [ 5622 5379 "thiserror-impl", 5623 5380 ] 5624 5381 5625 5382 [[package]] 5626 5383 name = "thiserror-impl" 5627 - version = "1.0.43" 5384 + version = "1.0.44" 5628 5385 source = "registry+https://github.com/rust-lang/crates.io-index" 5629 - checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f" 5386 + checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" 5630 5387 dependencies = [ 5631 5388 "proc-macro2", 5632 5389 "quote", 5633 - "syn 2.0.26", 5390 + "syn 2.0.28", 5634 5391 ] 5635 5392 5636 5393 [[package]] ··· 5667 5424 5668 5425 [[package]] 5669 5426 name = "time" 5670 - version = "0.3.20" 5427 + version = "0.3.25" 5671 5428 source = "registry+https://github.com/rust-lang/crates.io-index" 5672 - checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 5429 + checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" 5673 5430 dependencies = [ 5431 + "deranged", 5674 5432 "itoa", 5675 5433 "serde", 5676 5434 "time-core", ··· 5680 5436 5681 5437 [[package]] 5682 5438 name = "time-core" 5683 - version = "0.1.0" 5439 + version = "0.1.1" 5684 5440 source = "registry+https://github.com/rust-lang/crates.io-index" 5685 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 5441 + checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 5686 5442 5687 5443 [[package]] 5688 5444 name = "time-macros" 5689 - version = "0.2.8" 5445 + version = "0.2.11" 5690 5446 source = "registry+https://github.com/rust-lang/crates.io-index" 5691 - checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" 5447 + checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd" 5692 5448 dependencies = [ 5693 5449 "time-core", 5694 5450 ] ··· 5710 5466 5711 5467 [[package]] 5712 5468 name = "tokio" 5713 - version = "1.29.1" 5469 + version = "1.30.0" 5714 5470 source = "registry+https://github.com/rust-lang/crates.io-index" 5715 - checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" 5471 + checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd" 5716 5472 dependencies = [ 5717 - "autocfg", 5718 5473 "backtrace", 5719 5474 "bytes", 5720 5475 "libc", ··· 5722 5479 "parking_lot", 5723 5480 "pin-project-lite", 5724 5481 "signal-hook-registry", 5725 - "socket2 0.4.9", 5482 + "socket2 0.5.3", 5726 5483 "tokio-macros", 5727 5484 "windows-sys", 5728 5485 ] ··· 5735 5492 dependencies = [ 5736 5493 "proc-macro2", 5737 5494 "quote", 5738 - "syn 2.0.26", 5495 + "syn 2.0.28", 5739 5496 ] 5740 5497 5741 5498 [[package]] ··· 5750 5507 5751 5508 [[package]] 5752 5509 name = "tokio-rustls" 5753 - version = "0.23.4" 5510 + version = "0.24.1" 5754 5511 source = "registry+https://github.com/rust-lang/crates.io-index" 5755 - checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 5512 + checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 5756 5513 dependencies = [ 5757 5514 "rustls", 5758 5515 "tokio", 5759 - "webpki", 5760 5516 ] 5761 5517 5762 5518 [[package]] ··· 5767 5525 "futures-core", 5768 5526 "pin-project-lite", 5769 5527 "tokio", 5528 + ] 5529 + 5530 + [[package]] 5531 + name = "tokio-tungstenite" 5532 + version = "0.19.0" 5533 + source = "registry+https://github.com/rust-lang/crates.io-index" 5534 + checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c" 5535 + dependencies = [ 5536 + "futures-util", 5537 + "log", 5538 + "native-tls", 5539 + "tokio", 5540 + "tokio-native-tls", 5541 + "tungstenite 0.19.0", 5770 5542 ] 5771 5543 5772 5544 [[package]] ··· 5889 5633 dependencies = [ 5890 5634 "proc-macro2", 5891 5635 "quote", 5892 - "syn 2.0.26", 5636 + "syn 2.0.28", 5893 5637 ] 5894 5638 5895 5639 [[package]] ··· 5968 5712 ] 5969 5713 5970 5714 [[package]] 5715 + name = "tungstenite" 5716 + version = "0.20.0" 5717 + source = "registry+https://github.com/rust-lang/crates.io-index" 5718 + checksum = "e862a1c4128df0112ab625f55cd5c934bcb4312ba80b39ae4b4835a3fd58e649" 5719 + dependencies = [ 5720 + "byteorder", 5721 + "bytes", 5722 + "data-encoding", 5723 + "http", 5724 + "httparse", 5725 + "log", 5726 + "native-tls", 5727 + "rand", 5728 + "sha1", 5729 + "thiserror", 5730 + "url", 5731 + "utf-8", 5732 + ] 5733 + 5734 + [[package]] 5971 5735 name = "typenum" 5972 5736 version = "1.16.0" 5973 5737 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6007 5731 6008 5732 [[package]] 6009 5733 name = "unicode-linebreak" 6010 - version = "0.1.4" 5734 + version = "0.1.5" 6011 5735 source = "registry+https://github.com/rust-lang/crates.io-index" 6012 - checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137" 6013 - dependencies = [ 6014 - "hashbrown 0.12.3", 6015 - "regex", 6016 - ] 5736 + checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 6017 5737 6018 5738 [[package]] 6019 5739 name = "unicode-normalization" ··· 6044 5772 ] 6045 5773 6046 5774 [[package]] 6047 - name = "urlencoding" 6048 - version = "2.1.2" 5775 + name = "url-escape" 5776 + version = "0.1.1" 6049 5777 source = "registry+https://github.com/rust-lang/crates.io-index" 6050 - checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9" 5778 + checksum = "44e0ce4d1246d075ca5abec4b41d33e87a6054d08e2366b63205665e950db218" 5779 + dependencies = [ 5780 + "percent-encoding", 5781 + ] 5782 + 5783 + [[package]] 5784 + name = "urlencoding" 5785 + version = "2.1.3" 5786 + source = "registry+https://github.com/rust-lang/crates.io-index" 5787 + checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 6051 5788 6052 5789 [[package]] 6053 5790 name = "utf-8" ··· 6081 5800 6082 5801 [[package]] 6083 5802 name = "v_frame" 6084 - version = "0.3.5" 5803 + version = "0.3.6" 6085 5804 source = "registry+https://github.com/rust-lang/crates.io-index" 6086 - checksum = "bec8189c996a12ac77c50065f9c9f64961e56eb940d0ae1a4ccc7bea238bb4bc" 5805 + checksum = "85db69f33d00031c1b07f7292e56317d5aa9475bdbd3d27ef18f3633438a697e" 6087 5806 dependencies = [ 6088 5807 "cfg-if", 6089 5808 "noop_proc_macro", ··· 6197 5916 "once_cell", 6198 5917 "proc-macro2", 6199 5918 "quote", 6200 - "syn 2.0.26", 5919 + "syn 2.0.28", 6201 5920 "wasm-bindgen-shared", 6202 5921 ] 6203 5922 ··· 6231 5950 dependencies = [ 6232 5951 "proc-macro2", 6233 5952 "quote", 6234 - "syn 2.0.26", 5953 + "syn 2.0.28", 6235 5954 "wasm-bindgen-backend", 6236 5955 "wasm-bindgen-shared", 6237 5956 ] ··· 6250 5969 dependencies = [ 6251 5970 "js-sys", 6252 5971 "wasm-bindgen", 6253 - ] 6254 - 6255 - [[package]] 6256 - name = "webpki" 6257 - version = "0.22.0" 6258 - source = "registry+https://github.com/rust-lang/crates.io-index" 6259 - checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 6260 - dependencies = [ 6261 - "ring", 6262 - "untrusted", 6263 5972 ] 6264 5973 6265 5974 [[package]] ··· 6366 6095 6367 6096 [[package]] 6368 6097 name = "winnow" 6369 - version = "0.5.0" 6098 + version = "0.5.4" 6370 6099 source = "registry+https://github.com/rust-lang/crates.io-index" 6371 - checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7" 6100 + checksum = "acaaa1190073b2b101e15083c38ee8ec891b5e05cbee516521e94ec008f61e64" 6372 6101 dependencies = [ 6373 6102 "memchr", 6374 6103 ] ··· 6383 6112 ] 6384 6113 6385 6114 [[package]] 6386 - name = "xml-rs" 6387 - version = "0.8.15" 6115 + name = "xattr" 6116 + version = "1.0.1" 6388 6117 source = "registry+https://github.com/rust-lang/crates.io-index" 6389 - checksum = "5a56c84a8ccd4258aed21c92f70c0f6dea75356b6892ae27c24139da456f9336" 6118 + checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" 6119 + dependencies = [ 6120 + "libc", 6121 + ] 6122 + 6123 + [[package]] 6124 + name = "xml-rs" 6125 + version = "0.8.16" 6126 + source = "registry+https://github.com/rust-lang/crates.io-index" 6127 + checksum = "47430998a7b5d499ccee752b41567bc3afc57e1327dc855b1a2aa44ce29b5fa1" 6390 6128 6391 6129 [[package]] 6392 6130 name = "xmlparser" ··· 6420 6140 6421 6141 [[package]] 6422 6142 name = "zerocopy" 6423 - version = "0.6.1" 6143 + version = "0.6.3" 6424 6144 source = "registry+https://github.com/rust-lang/crates.io-index" 6425 - checksum = "332f188cc1bcf1fe1064b8c58d150f497e697f49774aa846f2dc949d9a25f236" 6145 + checksum = "f3b9c234616391070b0b173963ebc65a9195068e7ed3731c6edac2ec45ebe106" 6426 6146 dependencies = [ 6427 6147 "byteorder", 6428 6148 "zerocopy-derive", ··· 6430 6150 6431 6151 [[package]] 6432 6152 name = "zerocopy-derive" 6433 - version = "0.3.2" 6153 + version = "0.6.3" 6434 6154 source = "registry+https://github.com/rust-lang/crates.io-index" 6435 - checksum = "6505e6815af7de1746a08f69c69606bb45695a17149517680f3b2149713b19a3" 6155 + checksum = "8f7f3a471f98d0a61c34322fbbfd10c384b07687f680d4119813713f72308d91" 6436 6156 dependencies = [ 6437 6157 "proc-macro2", 6438 6158 "quote", 6439 - "syn 1.0.109", 6159 + "syn 2.0.28", 6440 6160 ] 6441 6161 6442 6162 [[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 = [ ··· 47 53 meta = with lib; { 48 54 description = "Objects and routines pertaining to date and time"; 49 55 homepage = "https://github.com/jaraco/tempora"; 56 + changelog = "https://github.com/jaraco/tempora/blob/v${version}/NEWS.rst"; 50 57 license = licenses.mit; 51 58 maintainers = with maintainers; [ ]; 52 59 };
+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"
+29 -22
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; { 32 - description = "The swiss army knife for Magento1/OpenMage developers"; 33 - license = licenses.mit; 34 - homepage = "https://magerun.net/"; 35 - changelog = "https://magerun.net/category/magerun/"; 36 - maintainers = teams.php.members; 38 + meta = { 37 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/"; 41 + description = "The swiss army knife for Magento1/OpenMage developers"; 42 + homepage = "https://magerun.net/"; 43 + license = lib.licenses.mit; 44 + maintainers = lib.teams.php.members; 38 45 }; 39 - } 46 + })
+28 -21
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; { 32 - description = "The swiss army knife for Magento2 developers"; 33 - license = licenses.mit; 34 - homepage = "https://magerun.net/"; 38 + meta = { 35 39 changelog = "https://magerun.net/category/magerun/"; 36 - maintainers = teams.php.members; 40 + description = "The swiss army knife for Magento2 developers"; 41 + homepage = "https://magerun.net/"; 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 ]; ··· 40 36 meta = with lib; { 41 37 description = "Audit Cargo.lock files for crates with security vulnerabilities"; 42 38 homepage = "https://rustsec.org"; 43 - changelog = "https://github.com/rustsec/rustsec/blob/cargo-audit/${version}/cargo-audit/CHANGELOG.md"; 39 + changelog = "https://github.com/rustsec/rustsec/blob/cargo-audit/v${version}/cargo-audit/CHANGELOG.md"; 44 40 license = with licenses; [ mit /* or */ asl20 ]; 45 41 maintainers = with maintainers; [ basvandijk figsoda jk ]; 46 42 };
+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 { };