Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 4cdbb53d 7acb56e8

+2461 -1788
+1
doc/hooks/index.md
··· 17 17 libiconv.section.md 18 18 libxml2.section.md 19 19 meson.section.md 20 + mpi-check-hook.section.md 20 21 ninja.section.md 21 22 patch-rc-path-hooks.section.md 22 23 perl.section.md
+24
doc/hooks/mpi-check-hook.section.md
··· 1 + # mpiCheckPhaseHook {#setup-hook-mpi-check} 2 + 3 + 4 + This hook can be used to setup a check phase that 5 + requires running a MPI application. It detects the 6 + used present MPI implementaion type and exports 7 + the neceesary environment variables to use 8 + `mpirun` and `mpiexec` in a Nix sandbox. 9 + 10 + 11 + Example: 12 + 13 + ```nix 14 + { mpiCheckPhaseHook, mpi, ... }: 15 + 16 + ... 17 + 18 + nativeCheckInputs = [ 19 + openssh 20 + mpiCheckPhaseHook 21 + ]; 22 + ``` 23 + 24 +
+59
pkgs/applications/gis/qgis/set-pyqt-package-dirs-ltr.patch
··· 1 + diff --git a/cmake/FindPyQt5.cmake b/cmake/FindPyQt5.cmake 2 + index b51fd0075e..87ee317e05 100644 3 + --- a/cmake/FindPyQt5.cmake 4 + +++ b/cmake/FindPyQt5.cmake 5 + @@ -25,7 +25,7 @@ ELSE(EXISTS PYQT5_VERSION_STR) 6 + IF(SIP_BUILD_EXECUTABLE) 7 + # SIP >= 5.0 path 8 + 9 + - FILE(GLOB _pyqt5_metadata "${Python_SITEARCH}/PyQt5-*.dist-info/METADATA") 10 + + FILE(GLOB _pyqt5_metadata "@pyQt5PackageDir@/PyQt5-*.dist-info/METADATA") 11 + IF(_pyqt5_metadata) 12 + FILE(READ ${_pyqt5_metadata} _pyqt5_metadata_contents) 13 + STRING(REGEX REPLACE ".*\nVersion: ([^\n]+).*$" "\\1" PYQT5_VERSION_STR ${_pyqt5_metadata_contents}) 14 + @@ -34,8 +34,8 @@ ELSE(EXISTS PYQT5_VERSION_STR) 15 + ENDIF(_pyqt5_metadata) 16 + 17 + IF(PYQT5_VERSION_STR) 18 + - SET(PYQT5_MOD_DIR "${Python_SITEARCH}/PyQt5") 19 + - SET(PYQT5_SIP_DIR "${Python_SITEARCH}/PyQt5/bindings") 20 + + SET(PYQT5_MOD_DIR "@pyQt5PackageDir@/PyQt5") 21 + + SET(PYQT5_SIP_DIR "@pyQt5PackageDir@/PyQt5/bindings") 22 + FIND_PROGRAM(__pyuic5 "pyuic5") 23 + GET_FILENAME_COMPONENT(PYQT5_BIN_DIR ${__pyuic5} DIRECTORY) 24 + 25 + diff --git a/cmake/FindQsci.cmake b/cmake/FindQsci.cmake 26 + index 69e41c1fe9..5456c3d59b 100644 27 + --- a/cmake/FindQsci.cmake 28 + +++ b/cmake/FindQsci.cmake 29 + @@ -24,7 +24,7 @@ ELSE(QSCI_MOD_VERSION_STR) 30 + IF(SIP_BUILD_EXECUTABLE) 31 + # SIP >= 5.0 path 32 + 33 + - FILE(GLOB _qsci_metadata "${Python_SITEARCH}/QScintilla*.dist-info/METADATA") 34 + + FILE(GLOB _qsci_metadata "@qsciPackageDir@/QScintilla*.dist-info/METADATA") 35 + IF(_qsci_metadata) 36 + FILE(READ ${_qsci_metadata} _qsci_metadata_contents) 37 + STRING(REGEX REPLACE ".*\nVersion: ([^\n]+).*$" "\\1" QSCI_MOD_VERSION_STR ${_qsci_metadata_contents}) 38 + @@ -33,7 +33,7 @@ ELSE(QSCI_MOD_VERSION_STR) 39 + ENDIF(_qsci_metadata) 40 + 41 + IF(QSCI_MOD_VERSION_STR) 42 + - SET(QSCI_SIP_DIR "${PYQT5_SIP_DIR}") 43 + + SET(QSCI_SIP_DIR "@qsciPackageDir@/PyQt5/bindings") 44 + SET(QSCI_FOUND TRUE) 45 + ENDIF(QSCI_MOD_VERSION_STR) 46 + 47 + diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt 48 + index 4cd19c3af4..668cc6a5e6 100644 49 + --- a/python/CMakeLists.txt 50 + +++ b/python/CMakeLists.txt 51 + @@ -206,7 +206,7 @@ if (WITH_GUI) 52 + install(FILES ${QGIS_PYTHON_OUTPUT_DIRECTORY}/_gui.pyi DESTINATION ${QGIS_PYTHON_DIR}) 53 + endif() 54 + if(QSCI_SIP_DIR) 55 + - set(SIP_EXTRA_OPTIONS ${SIP_EXTRA_OPTIONS} -I ${QSCI_SIP_DIR}) 56 + + set(SIP_BUILD_EXTRA_OPTIONS ${SIP_BUILD_EXTRA_OPTIONS} --include-dir=${QSCI_SIP_DIR}) 57 + else() 58 + message(STATUS "Qsci sip file not found - disabling bindings for derived classes") 59 + set(SIP_DISABLE_FEATURES ${SIP_DISABLE_FEATURES} HAVE_QSCI_SIP)
+2 -2
pkgs/applications/gis/qgis/set-pyqt-package-dirs.patch
··· 39 39 ENDIF(_qsci_metadata) 40 40 41 41 IF(QSCI_MOD_VERSION_STR) 42 - - SET(QSCI_SIP_DIR "${PYQT5_SIP_DIR}") 42 + - SET(QSCI_SIP_DIR "${PYQT_SIP_DIR}") 43 43 + SET(QSCI_SIP_DIR "@qsciPackageDir@/PyQt5/bindings") 44 44 SET(QSCI_FOUND TRUE) 45 45 ENDIF(QSCI_MOD_VERSION_STR) ··· 48 48 index 4cd19c3af4..668cc6a5e6 100644 49 49 --- a/python/CMakeLists.txt 50 50 +++ b/python/CMakeLists.txt 51 - @@ -206,7 +206,7 @@ if (WITH_GUI) 51 + @@ -212,7 +212,7 @@ if (WITH_GUI) 52 52 install(FILES ${QGIS_PYTHON_OUTPUT_DIRECTORY}/_gui.pyi DESTINATION ${QGIS_PYTHON_DIR}) 53 53 endif() 54 54 if(QSCI_SIP_DIR)
+1 -1
pkgs/applications/gis/qgis/unwrapped-ltr.nix
··· 124 124 125 125 patches = [ 126 126 (substituteAll { 127 - src = ./set-pyqt-package-dirs.patch; 127 + src = ./set-pyqt-package-dirs-ltr.patch; 128 128 pyQt5PackageDir = "${py.pkgs.pyqt5}/${py.pkgs.python.sitePackages}"; 129 129 qsciPackageDir = "${py.pkgs.qscintilla-qt5}/${py.pkgs.python.sitePackages}"; 130 130 })
+80 -57
pkgs/applications/gis/qgis/unwrapped.nix
··· 1 1 { lib 2 + , fetchFromGitHub 3 + , makeWrapper 2 4 , mkDerivation 3 - , fetchFromGitHub 5 + , substituteAll 6 + , wrapGAppsHook 7 + , wrapQtAppsHook 8 + 9 + , withGrass ? true 10 + , withWebKit ? false 11 + 12 + , bison 4 13 , cmake 5 - , ninja 14 + , exiv2 15 + , fcgi 6 16 , flex 7 - , bison 8 - , proj 9 17 , geos 10 - , sqlite 18 + , grass 11 19 , gsl 12 - , qwt 13 - , fcgi 14 - , python3 20 + , hdf5 15 21 , libspatialindex 16 22 , libspatialite 17 - , postgresql 18 - , txt2tags 19 - , openssl 20 23 , libzip 21 - , hdf5 22 24 , netcdf 23 - , exiv2 25 + , ninja 26 + , openssl 27 + , pdal 28 + , postgresql 29 + , proj 24 30 , protobuf 31 + , python3 32 + , qca-qt5 33 + , qscintilla 34 + , qt3d 25 35 , qtbase 26 - , qtsensors 27 - , qca-qt5 28 36 , qtkeychain 29 - , qt3d 30 - , qscintilla 31 37 , qtlocation 38 + , qtmultimedia 39 + , qtsensors 32 40 , qtserialport 41 + , qtwebkit 33 42 , qtxmlpatterns 34 - , withGrass ? true 35 - , grass 36 - , withWebKit ? false 37 - , qtwebkit 38 - , pdal 43 + , qwt 44 + , sqlite 45 + , txt2tags 39 46 , zstd 40 - , makeWrapper 41 - , wrapGAppsHook 42 - , substituteAll 43 47 }: 44 48 45 49 let 46 - 47 50 py = python3.override { 48 51 packageOverrides = self: super: { 49 52 pyqt5 = super.pyqt5.override { ··· 53 56 }; 54 57 55 58 pythonBuildInputs = with py.pkgs; [ 56 - qscintilla-qt5 59 + chardet 57 60 gdal 58 61 jinja2 59 62 numpy 63 + owslib 60 64 psycopg2 61 - chardet 65 + pygments 66 + pyqt-builder 67 + pyqt5 62 68 python-dateutil 63 - pyyaml 64 69 pytz 70 + pyyaml 71 + qscintilla-qt5 65 72 requests 66 - urllib3 67 - pygments 68 - pyqt5 69 - pyqt-builder 73 + setuptools 70 74 sip 71 - setuptools 72 - owslib 73 75 six 76 + urllib3 74 77 ]; 75 78 in mkDerivation rec { 76 - version = "3.28.3"; 79 + version = "3.32.2"; 77 80 pname = "qgis-unwrapped"; 78 81 79 82 src = fetchFromGitHub { 80 83 owner = "qgis"; 81 84 repo = "QGIS"; 82 85 rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}"; 83 - hash = "sha256-nXauZSC78BX1fcx0SXniwQpRmdSLfoqZ5jlbXeHgRGI="; 86 + hash = "sha256-4Hcppzgst6v7SR/06ZICSujC4Gfckd/X5Mj40fh9OOU="; 84 87 }; 85 88 86 89 passthru = { ··· 88 91 inherit py; 89 92 }; 90 93 94 + nativeBuildInputs = [ 95 + makeWrapper 96 + wrapGAppsHook 97 + wrapQtAppsHook 98 + 99 + cmake 100 + flex 101 + bison 102 + ninja 103 + ]; 104 + 91 105 buildInputs = [ 92 - openssl 93 - proj 106 + exiv2 107 + fcgi 94 108 geos 95 - sqlite 96 109 gsl 97 - qwt 98 - exiv2 99 - protobuf 100 - fcgi 110 + hdf5 101 111 libspatialindex 102 112 libspatialite 103 - postgresql 104 - txt2tags 105 113 libzip 106 - hdf5 107 114 netcdf 108 - qtbase 109 - qtsensors 115 + openssl 116 + pdal 117 + postgresql 118 + proj 119 + protobuf 110 120 qca-qt5 111 - qtkeychain 112 121 qscintilla 122 + qt3d 123 + qtbase 124 + qtkeychain 113 125 qtlocation 126 + qtmultimedia 127 + qtsensors 114 128 qtserialport 115 129 qtxmlpatterns 116 - qt3d 117 - pdal 130 + qwt 131 + sqlite 132 + txt2tags 118 133 zstd 119 134 ] ++ lib.optional withGrass grass 120 135 ++ lib.optional withWebKit qtwebkit 121 136 ++ pythonBuildInputs; 122 137 123 - nativeBuildInputs = [ makeWrapper wrapGAppsHook cmake flex bison ninja ]; 124 - 125 138 patches = [ 126 139 (substituteAll { 127 140 src = ./set-pyqt-package-dirs.patch; ··· 130 143 }) 131 144 ]; 132 145 146 + # Add path to Qt platform plugins 147 + # (offscreen is needed by "${APIS_SRC_DIR}/generate_console_pap.py") 148 + preBuild = '' 149 + export QT_QPA_PLATFORM_PLUGIN_PATH=${qtbase.bin}/lib/qt-${qtbase.version}/plugins/platforms 150 + ''; 151 + 133 152 cmakeFlags = [ 134 153 "-DWITH_3D=True" 135 154 "-DWITH_PDAL=TRUE" ··· 140 159 in "-DGRASS_PREFIX${gmajor}=${grass}/grass${gmajor}${gminor}" 141 160 ); 142 161 162 + qtWrapperArgs = [ 163 + "--set QT_QPA_PLATFORM_PLUGIN_PATH ${qtbase.bin}/lib/qt-${qtbase.version}/plugins/platforms" 164 + ]; 165 + 143 166 dontWrapGApps = true; # wrapper params passed below 144 167 145 168 postFixup = lib.optionalString withGrass '' 146 - # grass has to be availble on the command line even though we baked in 169 + # GRASS has to be availble on the command line even though we baked in 147 170 # the path at build time using GRASS_PREFIX. 148 - # using wrapGAppsHook also prevents file dialogs from crashing the program 149 - # on non-NixOS 171 + # Using wrapGAppsHook also prevents file dialogs from crashing the program 172 + # on non-NixOS. 150 173 wrapProgram $out/bin/qgis \ 151 174 "''${gappsWrapperArgs[@]}" \ 152 175 --prefix PATH : ${lib.makeBinPath [ grass ]}
+71 -98
pkgs/applications/graphics/flaca/Cargo.lock
··· 38 38 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 39 39 40 40 [[package]] 41 + name = "bitflags" 42 + version = "2.4.0" 43 + source = "registry+https://github.com/rust-lang/crates.io-index" 44 + checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 45 + 46 + [[package]] 41 47 name = "bitvec" 42 48 version = "1.0.1" 43 49 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 69 75 70 76 [[package]] 71 77 name = "cc" 72 - version = "1.0.79" 78 + version = "1.0.83" 73 79 source = "registry+https://github.com/rust-lang/crates.io-index" 74 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 80 + checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 75 81 dependencies = [ 76 82 "jobserver", 83 + "libc", 77 84 ] 78 85 79 86 [[package]] ··· 152 159 153 160 [[package]] 154 161 name = "dactyl" 155 - version = "0.5.0" 162 + version = "0.5.1" 156 163 source = "registry+https://github.com/rust-lang/crates.io-index" 157 - checksum = "6ee53db074fe946dcfb43408f19964425827d2967f74c5f4509c48a91bd2899f" 164 + checksum = "72f762271c6826d426c3fd2e37aa827fa039596bc7050e9289cb713265be3d7f" 158 165 dependencies = [ 159 166 "num-traits", 160 167 ] ··· 177 184 178 185 [[package]] 179 186 name = "either" 180 - version = "1.8.1" 187 + version = "1.9.0" 181 188 source = "registry+https://github.com/rust-lang/crates.io-index" 182 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 189 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 183 190 184 191 [[package]] 185 192 name = "errno" 186 - version = "0.3.1" 193 + version = "0.3.2" 187 194 source = "registry+https://github.com/rust-lang/crates.io-index" 188 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 195 + checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 189 196 dependencies = [ 190 197 "errno-dragonfly", 191 198 "libc", ··· 204 211 205 212 [[package]] 206 213 name = "fastrand" 207 - version = "1.9.0" 214 + version = "2.0.0" 208 215 source = "registry+https://github.com/rust-lang/crates.io-index" 209 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 210 - dependencies = [ 211 - "instant", 212 - ] 216 + checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 213 217 214 218 [[package]] 215 219 name = "fdeflate" ··· 222 226 223 227 [[package]] 224 228 name = "flaca" 225 - version = "2.2.1" 229 + version = "2.2.2" 226 230 dependencies = [ 227 231 "argyle", 228 232 "cc", ··· 239 243 240 244 [[package]] 241 245 name = "flate2" 242 - version = "1.0.26" 246 + version = "1.0.27" 243 247 source = "registry+https://github.com/rust-lang/crates.io-index" 244 - checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 248 + checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" 245 249 dependencies = [ 246 250 "crc32fast", 247 251 "miniz_oxide", ··· 255 259 256 260 [[package]] 257 261 name = "fyi_msg" 258 - version = "0.11.0" 262 + version = "0.11.2" 259 263 source = "registry+https://github.com/rust-lang/crates.io-index" 260 - checksum = "34a6cc16a2874d6da616ed0766edc29ed01f51ed4121f6d8c723d622433f4298" 264 + checksum = "64175e76ad270dcde1566c16eb7d0f6cc2cbb575e5721dbd899e7f3a86b92718" 261 265 dependencies = [ 262 266 "ahash", 263 267 "bytecount", ··· 274 278 275 279 [[package]] 276 280 name = "hermit-abi" 277 - version = "0.2.6" 281 + version = "0.3.2" 278 282 source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 280 - dependencies = [ 281 - "libc", 282 - ] 283 - 284 - [[package]] 285 - name = "hermit-abi" 286 - version = "0.3.1" 287 - source = "registry+https://github.com/rust-lang/crates.io-index" 288 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 283 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 289 284 290 285 [[package]] 291 286 name = "image" 292 - version = "0.24.6" 287 + version = "0.24.7" 293 288 source = "registry+https://github.com/rust-lang/crates.io-index" 294 - checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" 289 + checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 295 290 dependencies = [ 296 291 "bytemuck", 297 292 "byteorder", ··· 312 307 ] 313 308 314 309 [[package]] 315 - name = "instant" 316 - version = "0.1.12" 317 - source = "registry+https://github.com/rust-lang/crates.io-index" 318 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 319 - dependencies = [ 320 - "cfg-if", 321 - ] 322 - 323 - [[package]] 324 - name = "io-lifetimes" 325 - version = "1.0.11" 326 - source = "registry+https://github.com/rust-lang/crates.io-index" 327 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 328 - dependencies = [ 329 - "hermit-abi 0.3.1", 330 - "libc", 331 - "windows-sys", 332 - ] 333 - 334 - [[package]] 335 310 name = "itertools" 336 311 version = "0.10.5" 337 312 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 351 326 352 327 [[package]] 353 328 name = "libc" 354 - version = "0.2.146" 329 + version = "0.2.147" 355 330 source = "registry+https://github.com/rust-lang/crates.io-index" 356 - checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" 331 + checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 357 332 358 333 [[package]] 359 334 name = "libdeflate-sys" ··· 375 350 376 351 [[package]] 377 352 name = "linux-raw-sys" 378 - version = "0.3.8" 353 + version = "0.4.5" 379 354 source = "registry+https://github.com/rust-lang/crates.io-index" 380 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 355 + checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 381 356 382 357 [[package]] 383 358 name = "log" 384 - version = "0.4.19" 359 + version = "0.4.20" 385 360 source = "registry+https://github.com/rust-lang/crates.io-index" 386 - checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 361 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 387 362 388 363 [[package]] 389 364 name = "memoffset" ··· 431 406 source = "registry+https://github.com/rust-lang/crates.io-index" 432 407 checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 433 408 dependencies = [ 434 - "bitflags", 409 + "bitflags 1.3.2", 435 410 "cfg-if", 436 411 "libc", 437 412 "static_assertions", ··· 460 435 461 436 [[package]] 462 437 name = "num-traits" 463 - version = "0.2.15" 438 + version = "0.2.16" 464 439 source = "registry+https://github.com/rust-lang/crates.io-index" 465 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 440 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 466 441 dependencies = [ 467 442 "autocfg", 468 443 ] 469 444 470 445 [[package]] 471 446 name = "num_cpus" 472 - version = "1.15.0" 447 + version = "1.16.0" 473 448 source = "registry+https://github.com/rust-lang/crates.io-index" 474 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 449 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 475 450 dependencies = [ 476 - "hermit-abi 0.2.6", 451 + "hermit-abi", 477 452 "libc", 478 453 ] 479 454 ··· 503 478 504 479 [[package]] 505 480 name = "png" 506 - version = "0.17.9" 481 + version = "0.17.10" 507 482 source = "registry+https://github.com/rust-lang/crates.io-index" 508 - checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11" 483 + checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 509 484 dependencies = [ 510 - "bitflags", 485 + "bitflags 1.3.2", 511 486 "crc32fast", 512 487 "fdeflate", 513 488 "flate2", ··· 548 523 source = "registry+https://github.com/rust-lang/crates.io-index" 549 524 checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 550 525 dependencies = [ 551 - "bitflags", 526 + "bitflags 1.3.2", 552 527 ] 553 528 554 529 [[package]] ··· 577 552 578 553 [[package]] 579 554 name = "rustix" 580 - version = "0.37.20" 555 + version = "0.38.9" 581 556 source = "registry+https://github.com/rust-lang/crates.io-index" 582 - checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0" 557 + checksum = "9bfe0f2582b4931a45d1fa608f8a8722e8b3c7ac54dd6d5f3b3212791fedef49" 583 558 dependencies = [ 584 - "bitflags", 559 + "bitflags 2.4.0", 585 560 "errno", 586 - "io-lifetimes", 587 561 "libc", 588 562 "linux-raw-sys", 589 563 "windows-sys", ··· 591 565 592 566 [[package]] 593 567 name = "scopeguard" 594 - version = "1.1.0" 568 + version = "1.2.0" 595 569 source = "registry+https://github.com/rust-lang/crates.io-index" 596 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 570 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 597 571 598 572 [[package]] 599 573 name = "semver" 600 - version = "1.0.17" 574 + version = "1.0.18" 601 575 source = "registry+https://github.com/rust-lang/crates.io-index" 602 - checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 576 + checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 603 577 604 578 [[package]] 605 579 name = "simd-adler32" 606 - version = "0.3.5" 580 + version = "0.3.7" 607 581 source = "registry+https://github.com/rust-lang/crates.io-index" 608 - checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f" 582 + checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 609 583 610 584 [[package]] 611 585 name = "static_assertions" ··· 621 595 622 596 [[package]] 623 597 name = "tempfile" 624 - version = "3.6.0" 598 + version = "3.8.0" 625 599 source = "registry+https://github.com/rust-lang/crates.io-index" 626 - checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6" 600 + checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 627 601 dependencies = [ 628 - "autocfg", 629 602 "cfg-if", 630 603 "fastrand", 631 604 "redox_syscall", ··· 688 661 689 662 [[package]] 690 663 name = "windows-targets" 691 - version = "0.48.0" 664 + version = "0.48.5" 692 665 source = "registry+https://github.com/rust-lang/crates.io-index" 693 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 666 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 694 667 dependencies = [ 695 668 "windows_aarch64_gnullvm", 696 669 "windows_aarch64_msvc", ··· 703 676 704 677 [[package]] 705 678 name = "windows_aarch64_gnullvm" 706 - version = "0.48.0" 679 + version = "0.48.5" 707 680 source = "registry+https://github.com/rust-lang/crates.io-index" 708 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 681 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 709 682 710 683 [[package]] 711 684 name = "windows_aarch64_msvc" 712 - version = "0.48.0" 685 + version = "0.48.5" 713 686 source = "registry+https://github.com/rust-lang/crates.io-index" 714 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 687 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 715 688 716 689 [[package]] 717 690 name = "windows_i686_gnu" 718 - version = "0.48.0" 691 + version = "0.48.5" 719 692 source = "registry+https://github.com/rust-lang/crates.io-index" 720 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 693 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 721 694 722 695 [[package]] 723 696 name = "windows_i686_msvc" 724 - version = "0.48.0" 697 + version = "0.48.5" 725 698 source = "registry+https://github.com/rust-lang/crates.io-index" 726 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 699 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 727 700 728 701 [[package]] 729 702 name = "windows_x86_64_gnu" 730 - version = "0.48.0" 703 + version = "0.48.5" 731 704 source = "registry+https://github.com/rust-lang/crates.io-index" 732 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 705 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 733 706 734 707 [[package]] 735 708 name = "windows_x86_64_gnullvm" 736 - version = "0.48.0" 709 + version = "0.48.5" 737 710 source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 711 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 739 712 740 713 [[package]] 741 714 name = "windows_x86_64_msvc" 742 - version = "0.48.0" 715 + version = "0.48.5" 743 716 source = "registry+https://github.com/rust-lang/crates.io-index" 744 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 717 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 745 718 746 719 [[package]] 747 720 name = "write_atomic" 748 - version = "0.3.2" 721 + version = "0.4.0" 749 722 source = "registry+https://github.com/rust-lang/crates.io-index" 750 - checksum = "12c8ddcf39a6adf57b643d28dd93e9e04c9f3df6af8aaf924c4c4622172cc103" 723 + checksum = "e0ccffd0975630df843ef6124fdfb5032f86b6110d4913b7c85cab7d597dd49f" 751 724 dependencies = [ 752 725 "rustix", 753 726 "tempfile",
+2 -2
pkgs/applications/graphics/flaca/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "flaca"; 5 - version = "2.2.1"; 5 + version = "2.2.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Blobfolio"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-RXMqPpQM2h6EtIIH8Ix31euC7zK3v2QohZqouNlK7rM="; 11 + hash = "sha256-YLJ8jeJhpxmSfF0PObd7FSFdVbEVhHYIaUJusAIEIx4="; 12 12 }; 13 13 14 14 # upstream does not provide a Cargo.lock
+267 -7
pkgs/applications/misc/mission-center/Cargo.lock
··· 53 53 checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 54 54 55 55 [[package]] 56 + name = "arrayvec" 57 + version = "0.7.4" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 60 + 61 + [[package]] 62 + name = "async-channel" 63 + version = "1.9.0" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 66 + dependencies = [ 67 + "concurrent-queue", 68 + "event-listener", 69 + "futures-core", 70 + ] 71 + 72 + [[package]] 73 + name = "async-lock" 74 + version = "2.7.0" 75 + source = "registry+https://github.com/rust-lang/crates.io-index" 76 + checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 77 + dependencies = [ 78 + "event-listener", 79 + ] 80 + 81 + [[package]] 82 + name = "async-task" 83 + version = "4.4.0" 84 + source = "registry+https://github.com/rust-lang/crates.io-index" 85 + checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 86 + 87 + [[package]] 88 + name = "atomic-waker" 89 + version = "1.1.1" 90 + source = "registry+https://github.com/rust-lang/crates.io-index" 91 + checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" 92 + 93 + [[package]] 56 94 name = "autocfg" 57 95 version = "1.1.0" 58 96 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 83 121 checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 84 122 dependencies = [ 85 123 "generic-array", 124 + ] 125 + 126 + [[package]] 127 + name = "blocking" 128 + version = "1.3.1" 129 + source = "registry+https://github.com/rust-lang/crates.io-index" 130 + checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" 131 + dependencies = [ 132 + "async-channel", 133 + "async-lock", 134 + "async-task", 135 + "atomic-waker", 136 + "fastrand", 137 + "futures-lite", 138 + "log", 86 139 ] 87 140 88 141 [[package]] ··· 181 234 version = "1.1.0" 182 235 source = "registry+https://github.com/rust-lang/crates.io-index" 183 236 checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 237 + 238 + [[package]] 239 + name = "concurrent-queue" 240 + version = "2.2.0" 241 + source = "registry+https://github.com/rust-lang/crates.io-index" 242 + checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" 243 + dependencies = [ 244 + "crossbeam-utils 0.8.16", 245 + ] 184 246 185 247 [[package]] 186 248 name = "const-random" ··· 423 485 ] 424 486 425 487 [[package]] 488 + name = "event-listener" 489 + version = "2.5.3" 490 + source = "registry+https://github.com/rust-lang/crates.io-index" 491 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 492 + 493 + [[package]] 426 494 name = "fallible-iterator" 427 495 version = "0.2.0" 428 496 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 435 503 checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 436 504 437 505 [[package]] 506 + name = "fastrand" 507 + version = "1.9.0" 508 + source = "registry+https://github.com/rust-lang/crates.io-index" 509 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 510 + dependencies = [ 511 + "instant", 512 + ] 513 + 514 + [[package]] 438 515 name = "field-offset" 439 516 version = "0.3.6" 440 517 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 475 552 version = "0.3.28" 476 553 source = "registry+https://github.com/rust-lang/crates.io-index" 477 554 checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 555 + 556 + [[package]] 557 + name = "futures-lite" 558 + version = "1.13.0" 559 + source = "registry+https://github.com/rust-lang/crates.io-index" 560 + checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 561 + dependencies = [ 562 + "fastrand", 563 + "futures-core", 564 + "futures-io", 565 + "memchr", 566 + "parking", 567 + "pin-project-lite", 568 + "waker-fn", 569 + ] 478 570 479 571 [[package]] 480 572 name = "futures-macro" ··· 956 1048 ] 957 1049 958 1050 [[package]] 1051 + name = "interprocess" 1052 + version = "1.2.1" 1053 + source = "registry+https://github.com/rust-lang/crates.io-index" 1054 + checksum = "81f2533f3be42fffe3b5e63b71aeca416c1c3bc33e4e27be018521e76b1f38fb" 1055 + dependencies = [ 1056 + "blocking", 1057 + "cfg-if 1.0.0", 1058 + "futures-core", 1059 + "futures-io", 1060 + "intmap", 1061 + "libc 0.2.147", 1062 + "once_cell", 1063 + "rustc_version 0.4.0", 1064 + "spinning", 1065 + "thiserror", 1066 + "to_method", 1067 + "winapi", 1068 + ] 1069 + 1070 + [[package]] 1071 + name = "intmap" 1072 + version = "0.7.1" 1073 + source = "registry+https://github.com/rust-lang/crates.io-index" 1074 + checksum = "ae52f28f45ac2bc96edb7714de995cffc174a395fb0abf5bff453587c980d7b9" 1075 + 1076 + [[package]] 959 1077 name = "io-lifetimes" 960 1078 version = "1.0.11" 961 1079 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1092 1210 ] 1093 1211 1094 1212 [[package]] 1213 + name = "lock_api" 1214 + version = "0.4.10" 1215 + source = "registry+https://github.com/rust-lang/crates.io-index" 1216 + checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 1217 + dependencies = [ 1218 + "autocfg", 1219 + "scopeguard", 1220 + ] 1221 + 1222 + [[package]] 1095 1223 name = "log" 1096 1224 version = "0.4.19" 1097 1225 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1153 1281 1154 1282 [[package]] 1155 1283 name = "missioncenter" 1156 - version = "0.2.5" 1284 + version = "0.3.1" 1157 1285 dependencies = [ 1286 + "arrayvec 0.7.4", 1158 1287 "drm", 1159 1288 "egl", 1160 1289 "errno-sys", ··· 1162 1291 "gettext-rs", 1163 1292 "gl", 1164 1293 "gtk4", 1294 + "interprocess", 1165 1295 "lazy_static", 1166 1296 "libadwaita", 1167 1297 "libc 0.2.147", ··· 1182 1312 "serde", 1183 1313 "serde_json", 1184 1314 "sha2", 1315 + "shared_memory_extended", 1185 1316 "sysinfo", 1186 1317 "textdistance", 1318 + "thiserror", 1187 1319 ] 1188 1320 1189 1321 [[package]] ··· 1331 1463 ] 1332 1464 1333 1465 [[package]] 1466 + name = "parking" 1467 + version = "2.1.0" 1468 + source = "registry+https://github.com/rust-lang/crates.io-index" 1469 + checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" 1470 + 1471 + [[package]] 1334 1472 name = "pathfinder_canvas" 1335 1473 version = "0.5.0" 1336 1474 source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" ··· 1354 1492 version = "0.5.0" 1355 1493 source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1356 1494 dependencies = [ 1357 - "arrayvec", 1495 + "arrayvec 0.5.2", 1358 1496 "bitflags 1.3.2", 1359 1497 "image", 1360 1498 "log", ··· 1502 1640 ] 1503 1641 1504 1642 [[package]] 1643 + name = "ppv-lite86" 1644 + version = "0.2.17" 1645 + source = "registry+https://github.com/rust-lang/crates.io-index" 1646 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1647 + 1648 + [[package]] 1505 1649 name = "proc-macro-crate" 1506 1650 version = "1.3.1" 1507 1651 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1569 1713 ] 1570 1714 1571 1715 [[package]] 1716 + name = "rand" 1717 + version = "0.8.5" 1718 + source = "registry+https://github.com/rust-lang/crates.io-index" 1719 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1720 + dependencies = [ 1721 + "libc 0.2.147", 1722 + "rand_chacha", 1723 + "rand_core", 1724 + ] 1725 + 1726 + [[package]] 1727 + name = "rand_chacha" 1728 + version = "0.3.1" 1729 + source = "registry+https://github.com/rust-lang/crates.io-index" 1730 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1731 + dependencies = [ 1732 + "ppv-lite86", 1733 + "rand_core", 1734 + ] 1735 + 1736 + [[package]] 1737 + name = "rand_core" 1738 + version = "0.6.4" 1739 + source = "registry+https://github.com/rust-lang/crates.io-index" 1740 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1741 + dependencies = [ 1742 + "getrandom", 1743 + ] 1744 + 1745 + [[package]] 1572 1746 name = "raw-cpuid" 1573 1747 version = "11.0.1" 1574 1748 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1764 1938 ] 1765 1939 1766 1940 [[package]] 1941 + name = "shared_memory_extended" 1942 + version = "0.13.0" 1943 + source = "registry+https://github.com/rust-lang/crates.io-index" 1944 + checksum = "004d7ece9a3be64f85471d50967710b0a146144225bed5f0abd0514a3bed086f" 1945 + dependencies = [ 1946 + "cfg-if 1.0.0", 1947 + "libc 0.2.147", 1948 + "nix", 1949 + "rand", 1950 + "win-sys", 1951 + ] 1952 + 1953 + [[package]] 1767 1954 name = "slab" 1768 1955 version = "0.4.8" 1769 1956 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1777 1964 version = "1.11.0" 1778 1965 source = "registry+https://github.com/rust-lang/crates.io-index" 1779 1966 checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 1967 + 1968 + [[package]] 1969 + name = "spinning" 1970 + version = "0.1.0" 1971 + source = "registry+https://github.com/rust-lang/crates.io-index" 1972 + checksum = "2d4f0e86297cad2658d92a707320d87bf4e6ae1050287f51d19b67ef3f153a7b" 1973 + dependencies = [ 1974 + "lock_api", 1975 + ] 1780 1976 1781 1977 [[package]] 1782 1978 name = "static_assertions" ··· 1879 2075 dependencies = [ 1880 2076 "crunchy", 1881 2077 ] 2078 + 2079 + [[package]] 2080 + name = "to_method" 2081 + version = "1.1.0" 2082 + source = "registry+https://github.com/rust-lang/crates.io-index" 2083 + checksum = "c7c4ceeeca15c8384bbc3e011dbd8fccb7f068a440b752b7d9b32ceb0ca0e2e8" 1882 2084 1883 2085 [[package]] 1884 2086 name = "toml" ··· 1957 2159 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1958 2160 1959 2161 [[package]] 2162 + name = "waker-fn" 2163 + version = "1.1.0" 2164 + source = "registry+https://github.com/rust-lang/crates.io-index" 2165 + checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 2166 + 2167 + [[package]] 1960 2168 name = "wasi" 1961 2169 version = "0.11.0+wasi-snapshot-preview1" 1962 2170 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2080 2288 ] 2081 2289 2082 2290 [[package]] 2291 + name = "win-sys" 2292 + version = "0.3.1" 2293 + source = "registry+https://github.com/rust-lang/crates.io-index" 2294 + checksum = "5b7b128a98c1cfa201b09eb49ba285887deb3cbe7466a98850eb1adabb452be5" 2295 + dependencies = [ 2296 + "windows", 2297 + ] 2298 + 2299 + [[package]] 2083 2300 name = "winapi" 2084 2301 version = "0.3.9" 2085 2302 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2102 2319 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2103 2320 2104 2321 [[package]] 2322 + name = "windows" 2323 + version = "0.34.0" 2324 + source = "registry+https://github.com/rust-lang/crates.io-index" 2325 + checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f" 2326 + dependencies = [ 2327 + "windows_aarch64_msvc 0.34.0", 2328 + "windows_i686_gnu 0.34.0", 2329 + "windows_i686_msvc 0.34.0", 2330 + "windows_x86_64_gnu 0.34.0", 2331 + "windows_x86_64_msvc 0.34.0", 2332 + ] 2333 + 2334 + [[package]] 2105 2335 name = "windows-sys" 2106 2336 version = "0.48.0" 2107 2337 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2117 2347 checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 2118 2348 dependencies = [ 2119 2349 "windows_aarch64_gnullvm", 2120 - "windows_aarch64_msvc", 2121 - "windows_i686_gnu", 2122 - "windows_i686_msvc", 2123 - "windows_x86_64_gnu", 2350 + "windows_aarch64_msvc 0.48.0", 2351 + "windows_i686_gnu 0.48.0", 2352 + "windows_i686_msvc 0.48.0", 2353 + "windows_x86_64_gnu 0.48.0", 2124 2354 "windows_x86_64_gnullvm", 2125 - "windows_x86_64_msvc", 2355 + "windows_x86_64_msvc 0.48.0", 2126 2356 ] 2127 2357 2128 2358 [[package]] ··· 2133 2363 2134 2364 [[package]] 2135 2365 name = "windows_aarch64_msvc" 2366 + version = "0.34.0" 2367 + source = "registry+https://github.com/rust-lang/crates.io-index" 2368 + checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d" 2369 + 2370 + [[package]] 2371 + name = "windows_aarch64_msvc" 2136 2372 version = "0.48.0" 2137 2373 source = "registry+https://github.com/rust-lang/crates.io-index" 2138 2374 checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2139 2375 2140 2376 [[package]] 2141 2377 name = "windows_i686_gnu" 2378 + version = "0.34.0" 2379 + source = "registry+https://github.com/rust-lang/crates.io-index" 2380 + checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed" 2381 + 2382 + [[package]] 2383 + name = "windows_i686_gnu" 2142 2384 version = "0.48.0" 2143 2385 source = "registry+https://github.com/rust-lang/crates.io-index" 2144 2386 checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2145 2387 2146 2388 [[package]] 2147 2389 name = "windows_i686_msvc" 2390 + version = "0.34.0" 2391 + source = "registry+https://github.com/rust-lang/crates.io-index" 2392 + checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956" 2393 + 2394 + [[package]] 2395 + name = "windows_i686_msvc" 2148 2396 version = "0.48.0" 2149 2397 source = "registry+https://github.com/rust-lang/crates.io-index" 2150 2398 checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2151 2399 2152 2400 [[package]] 2153 2401 name = "windows_x86_64_gnu" 2402 + version = "0.34.0" 2403 + source = "registry+https://github.com/rust-lang/crates.io-index" 2404 + checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4" 2405 + 2406 + [[package]] 2407 + name = "windows_x86_64_gnu" 2154 2408 version = "0.48.0" 2155 2409 source = "registry+https://github.com/rust-lang/crates.io-index" 2156 2410 checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" ··· 2160 2414 version = "0.48.0" 2161 2415 source = "registry+https://github.com/rust-lang/crates.io-index" 2162 2416 checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2417 + 2418 + [[package]] 2419 + name = "windows_x86_64_msvc" 2420 + version = "0.34.0" 2421 + source = "registry+https://github.com/rust-lang/crates.io-index" 2422 + checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9" 2163 2423 2164 2424 [[package]] 2165 2425 name = "windows_x86_64_msvc"
+9 -6
pkgs/applications/misc/mission-center/default.nix
··· 36 36 nvtop = fetchFromGitHub { 37 37 owner = "Syllo"; 38 38 repo = "nvtop"; 39 - rev = "9a8458b541a195a0c5cadafb66e240962c852b39"; 40 - hash = "sha256-iFBZbESRTuwgLSUuHnjcXwmpvdeQrd3oUJd7BRyxu84="; 39 + rev = "be47f8c560487efc6e6a419d59c69bfbdb819324"; 40 + hash = "sha256-MdaZYLxCuVX4LvbwBYNfHHoJWqZAy4J8NBK7Guh2whc="; 41 41 }; 42 42 in 43 43 stdenv.mkDerivation rec { 44 44 pname = "mission-center"; 45 - version = "0.2.5"; 45 + version = "0.3.1"; 46 46 47 47 src = fetchFromGitLab { 48 48 owner = "mission-center-devs"; 49 49 repo = "mission-center"; 50 50 rev = "v${version}"; 51 - hash = "sha256-f6GkwF+3USl60pUxxTu90KzdsfxBiAkiqnBSTTmC2Lc="; 51 + hash = "sha256-fiUF1mvbnguySy2ZXTi4Z61t35FO6fljqm21dMGwQMI="; 52 52 }; 53 53 54 54 cargoDeps = symlinkJoin { ··· 61 61 }; 62 62 }) 63 63 (rustPlatform.importCargoLock { 64 - lockFile = ./proxy-Cargo.lock; 64 + lockFile = ./gatherer-Cargo.lock; 65 65 }) 66 66 ]; 67 67 }; ··· 111 111 done 112 112 cd ../.. 113 113 patchShebangs data/hwdb/generate_hwdb.py 114 - sed -i 's|cmd.arg("dmidecode")|cmd.arg("${dmidecode}/bin/dmidecode")|g' src/sys_info_v2/mem_info.rs 114 + ''; 115 + 116 + postInstall = '' 117 + wrapProgram $out/bin/missioncenter --prefix PATH : $out/bin:${dmidecode}/bin 115 118 ''; 116 119 117 120 meta = with lib; {
+591
pkgs/applications/misc/mission-center/gatherer-Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "anyhow" 7 + version = "1.0.72" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" 10 + 11 + [[package]] 12 + name = "arrayvec" 13 + version = "0.7.4" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 16 + 17 + [[package]] 18 + name = "async-channel" 19 + version = "1.9.0" 20 + source = "registry+https://github.com/rust-lang/crates.io-index" 21 + checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 22 + dependencies = [ 23 + "concurrent-queue", 24 + "event-listener", 25 + "futures-core", 26 + ] 27 + 28 + [[package]] 29 + name = "async-lock" 30 + version = "2.7.0" 31 + source = "registry+https://github.com/rust-lang/crates.io-index" 32 + checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 33 + dependencies = [ 34 + "event-listener", 35 + ] 36 + 37 + [[package]] 38 + name = "async-task" 39 + version = "4.4.0" 40 + source = "registry+https://github.com/rust-lang/crates.io-index" 41 + checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 42 + 43 + [[package]] 44 + name = "atomic-waker" 45 + version = "1.1.1" 46 + source = "registry+https://github.com/rust-lang/crates.io-index" 47 + checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" 48 + 49 + [[package]] 50 + name = "autocfg" 51 + version = "1.1.0" 52 + source = "registry+https://github.com/rust-lang/crates.io-index" 53 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 54 + 55 + [[package]] 56 + name = "bitflags" 57 + version = "1.3.2" 58 + source = "registry+https://github.com/rust-lang/crates.io-index" 59 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 60 + 61 + [[package]] 62 + name = "blocking" 63 + version = "1.3.1" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" 66 + dependencies = [ 67 + "async-channel", 68 + "async-lock", 69 + "async-task", 70 + "atomic-waker", 71 + "fastrand", 72 + "futures-lite", 73 + "log", 74 + ] 75 + 76 + [[package]] 77 + name = "cfg-if" 78 + version = "1.0.0" 79 + source = "registry+https://github.com/rust-lang/crates.io-index" 80 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 81 + 82 + [[package]] 83 + name = "concurrent-queue" 84 + version = "2.2.0" 85 + source = "registry+https://github.com/rust-lang/crates.io-index" 86 + checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" 87 + dependencies = [ 88 + "crossbeam-utils", 89 + ] 90 + 91 + [[package]] 92 + name = "const-random" 93 + version = "0.1.15" 94 + source = "registry+https://github.com/rust-lang/crates.io-index" 95 + checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e" 96 + dependencies = [ 97 + "const-random-macro", 98 + "proc-macro-hack", 99 + ] 100 + 101 + [[package]] 102 + name = "const-random-macro" 103 + version = "0.1.15" 104 + source = "registry+https://github.com/rust-lang/crates.io-index" 105 + checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb" 106 + dependencies = [ 107 + "getrandom", 108 + "once_cell", 109 + "proc-macro-hack", 110 + "tiny-keccak", 111 + ] 112 + 113 + [[package]] 114 + name = "crossbeam-utils" 115 + version = "0.8.16" 116 + source = "registry+https://github.com/rust-lang/crates.io-index" 117 + checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 118 + dependencies = [ 119 + "cfg-if", 120 + ] 121 + 122 + [[package]] 123 + name = "crunchy" 124 + version = "0.2.2" 125 + source = "registry+https://github.com/rust-lang/crates.io-index" 126 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 127 + 128 + [[package]] 129 + name = "dlv-list" 130 + version = "0.5.0" 131 + source = "registry+https://github.com/rust-lang/crates.io-index" 132 + checksum = "d529fd73d344663edfd598ccb3f344e46034db51ebd103518eae34338248ad73" 133 + dependencies = [ 134 + "const-random", 135 + ] 136 + 137 + [[package]] 138 + name = "event-listener" 139 + version = "2.5.3" 140 + source = "registry+https://github.com/rust-lang/crates.io-index" 141 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 142 + 143 + [[package]] 144 + name = "fastrand" 145 + version = "1.9.0" 146 + source = "registry+https://github.com/rust-lang/crates.io-index" 147 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 148 + dependencies = [ 149 + "instant", 150 + ] 151 + 152 + [[package]] 153 + name = "futures-core" 154 + version = "0.3.28" 155 + source = "registry+https://github.com/rust-lang/crates.io-index" 156 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 157 + 158 + [[package]] 159 + name = "futures-io" 160 + version = "0.3.28" 161 + source = "registry+https://github.com/rust-lang/crates.io-index" 162 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 163 + 164 + [[package]] 165 + name = "futures-lite" 166 + version = "1.13.0" 167 + source = "registry+https://github.com/rust-lang/crates.io-index" 168 + checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 169 + dependencies = [ 170 + "fastrand", 171 + "futures-core", 172 + "futures-io", 173 + "memchr", 174 + "parking", 175 + "pin-project-lite", 176 + "waker-fn", 177 + ] 178 + 179 + [[package]] 180 + name = "gatherer" 181 + version = "0.3.1" 182 + dependencies = [ 183 + "anyhow", 184 + "arrayvec", 185 + "interprocess", 186 + "lazy_static", 187 + "libc", 188 + "num_cpus", 189 + "rust-ini", 190 + "shared_memory_extended", 191 + "thiserror", 192 + ] 193 + 194 + [[package]] 195 + name = "getrandom" 196 + version = "0.2.10" 197 + source = "registry+https://github.com/rust-lang/crates.io-index" 198 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 199 + dependencies = [ 200 + "cfg-if", 201 + "libc", 202 + "wasi", 203 + ] 204 + 205 + [[package]] 206 + name = "hashbrown" 207 + version = "0.13.2" 208 + source = "registry+https://github.com/rust-lang/crates.io-index" 209 + checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 210 + 211 + [[package]] 212 + name = "hermit-abi" 213 + version = "0.3.2" 214 + source = "registry+https://github.com/rust-lang/crates.io-index" 215 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 216 + 217 + [[package]] 218 + name = "instant" 219 + version = "0.1.12" 220 + source = "registry+https://github.com/rust-lang/crates.io-index" 221 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 222 + dependencies = [ 223 + "cfg-if", 224 + ] 225 + 226 + [[package]] 227 + name = "interprocess" 228 + version = "1.2.1" 229 + source = "registry+https://github.com/rust-lang/crates.io-index" 230 + checksum = "81f2533f3be42fffe3b5e63b71aeca416c1c3bc33e4e27be018521e76b1f38fb" 231 + dependencies = [ 232 + "blocking", 233 + "cfg-if", 234 + "futures-core", 235 + "futures-io", 236 + "intmap", 237 + "libc", 238 + "once_cell", 239 + "rustc_version", 240 + "spinning", 241 + "thiserror", 242 + "to_method", 243 + "winapi", 244 + ] 245 + 246 + [[package]] 247 + name = "intmap" 248 + version = "0.7.1" 249 + source = "registry+https://github.com/rust-lang/crates.io-index" 250 + checksum = "ae52f28f45ac2bc96edb7714de995cffc174a395fb0abf5bff453587c980d7b9" 251 + 252 + [[package]] 253 + name = "lazy_static" 254 + version = "1.4.0" 255 + source = "registry+https://github.com/rust-lang/crates.io-index" 256 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 257 + 258 + [[package]] 259 + name = "libc" 260 + version = "0.2.147" 261 + source = "registry+https://github.com/rust-lang/crates.io-index" 262 + checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 263 + 264 + [[package]] 265 + name = "lock_api" 266 + version = "0.4.10" 267 + source = "registry+https://github.com/rust-lang/crates.io-index" 268 + checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 269 + dependencies = [ 270 + "autocfg", 271 + "scopeguard", 272 + ] 273 + 274 + [[package]] 275 + name = "log" 276 + version = "0.4.19" 277 + source = "registry+https://github.com/rust-lang/crates.io-index" 278 + checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 279 + 280 + [[package]] 281 + name = "memchr" 282 + version = "2.5.0" 283 + source = "registry+https://github.com/rust-lang/crates.io-index" 284 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 285 + 286 + [[package]] 287 + name = "nix" 288 + version = "0.26.2" 289 + source = "registry+https://github.com/rust-lang/crates.io-index" 290 + checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 291 + dependencies = [ 292 + "bitflags", 293 + "cfg-if", 294 + "libc", 295 + "static_assertions", 296 + ] 297 + 298 + [[package]] 299 + name = "num_cpus" 300 + version = "1.16.0" 301 + source = "registry+https://github.com/rust-lang/crates.io-index" 302 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 303 + dependencies = [ 304 + "hermit-abi", 305 + "libc", 306 + ] 307 + 308 + [[package]] 309 + name = "once_cell" 310 + version = "1.18.0" 311 + source = "registry+https://github.com/rust-lang/crates.io-index" 312 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 313 + 314 + [[package]] 315 + name = "ordered-multimap" 316 + version = "0.6.0" 317 + source = "registry+https://github.com/rust-lang/crates.io-index" 318 + checksum = "4ed8acf08e98e744e5384c8bc63ceb0364e68a6854187221c18df61c4797690e" 319 + dependencies = [ 320 + "dlv-list", 321 + "hashbrown", 322 + ] 323 + 324 + [[package]] 325 + name = "parking" 326 + version = "2.1.0" 327 + source = "registry+https://github.com/rust-lang/crates.io-index" 328 + checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" 329 + 330 + [[package]] 331 + name = "pin-project-lite" 332 + version = "0.2.10" 333 + source = "registry+https://github.com/rust-lang/crates.io-index" 334 + checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" 335 + 336 + [[package]] 337 + name = "ppv-lite86" 338 + version = "0.2.17" 339 + source = "registry+https://github.com/rust-lang/crates.io-index" 340 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 341 + 342 + [[package]] 343 + name = "proc-macro-hack" 344 + version = "0.5.20+deprecated" 345 + source = "registry+https://github.com/rust-lang/crates.io-index" 346 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 347 + 348 + [[package]] 349 + name = "proc-macro2" 350 + version = "1.0.66" 351 + source = "registry+https://github.com/rust-lang/crates.io-index" 352 + checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 353 + dependencies = [ 354 + "unicode-ident", 355 + ] 356 + 357 + [[package]] 358 + name = "quote" 359 + version = "1.0.32" 360 + source = "registry+https://github.com/rust-lang/crates.io-index" 361 + checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" 362 + dependencies = [ 363 + "proc-macro2", 364 + ] 365 + 366 + [[package]] 367 + name = "rand" 368 + version = "0.8.5" 369 + source = "registry+https://github.com/rust-lang/crates.io-index" 370 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 371 + dependencies = [ 372 + "libc", 373 + "rand_chacha", 374 + "rand_core", 375 + ] 376 + 377 + [[package]] 378 + name = "rand_chacha" 379 + version = "0.3.1" 380 + source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 382 + dependencies = [ 383 + "ppv-lite86", 384 + "rand_core", 385 + ] 386 + 387 + [[package]] 388 + name = "rand_core" 389 + version = "0.6.4" 390 + source = "registry+https://github.com/rust-lang/crates.io-index" 391 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 392 + dependencies = [ 393 + "getrandom", 394 + ] 395 + 396 + [[package]] 397 + name = "rust-ini" 398 + version = "0.19.0" 399 + source = "registry+https://github.com/rust-lang/crates.io-index" 400 + checksum = "7e2a3bcec1f113553ef1c88aae6c020a369d03d55b58de9869a0908930385091" 401 + dependencies = [ 402 + "cfg-if", 403 + "ordered-multimap", 404 + ] 405 + 406 + [[package]] 407 + name = "rustc_version" 408 + version = "0.4.0" 409 + source = "registry+https://github.com/rust-lang/crates.io-index" 410 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 411 + dependencies = [ 412 + "semver", 413 + ] 414 + 415 + [[package]] 416 + name = "scopeguard" 417 + version = "1.2.0" 418 + source = "registry+https://github.com/rust-lang/crates.io-index" 419 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 420 + 421 + [[package]] 422 + name = "semver" 423 + version = "1.0.18" 424 + source = "registry+https://github.com/rust-lang/crates.io-index" 425 + checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 426 + 427 + [[package]] 428 + name = "shared_memory_extended" 429 + version = "0.13.0" 430 + source = "registry+https://github.com/rust-lang/crates.io-index" 431 + checksum = "004d7ece9a3be64f85471d50967710b0a146144225bed5f0abd0514a3bed086f" 432 + dependencies = [ 433 + "cfg-if", 434 + "libc", 435 + "nix", 436 + "rand", 437 + "win-sys", 438 + ] 439 + 440 + [[package]] 441 + name = "spinning" 442 + version = "0.1.0" 443 + source = "registry+https://github.com/rust-lang/crates.io-index" 444 + checksum = "2d4f0e86297cad2658d92a707320d87bf4e6ae1050287f51d19b67ef3f153a7b" 445 + dependencies = [ 446 + "lock_api", 447 + ] 448 + 449 + [[package]] 450 + name = "static_assertions" 451 + version = "1.1.0" 452 + source = "registry+https://github.com/rust-lang/crates.io-index" 453 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 454 + 455 + [[package]] 456 + name = "syn" 457 + version = "2.0.27" 458 + source = "registry+https://github.com/rust-lang/crates.io-index" 459 + checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0" 460 + dependencies = [ 461 + "proc-macro2", 462 + "quote", 463 + "unicode-ident", 464 + ] 465 + 466 + [[package]] 467 + name = "thiserror" 468 + version = "1.0.44" 469 + source = "registry+https://github.com/rust-lang/crates.io-index" 470 + checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" 471 + dependencies = [ 472 + "thiserror-impl", 473 + ] 474 + 475 + [[package]] 476 + name = "thiserror-impl" 477 + version = "1.0.44" 478 + source = "registry+https://github.com/rust-lang/crates.io-index" 479 + checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" 480 + dependencies = [ 481 + "proc-macro2", 482 + "quote", 483 + "syn", 484 + ] 485 + 486 + [[package]] 487 + name = "tiny-keccak" 488 + version = "2.0.2" 489 + source = "registry+https://github.com/rust-lang/crates.io-index" 490 + checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 491 + dependencies = [ 492 + "crunchy", 493 + ] 494 + 495 + [[package]] 496 + name = "to_method" 497 + version = "1.1.0" 498 + source = "registry+https://github.com/rust-lang/crates.io-index" 499 + checksum = "c7c4ceeeca15c8384bbc3e011dbd8fccb7f068a440b752b7d9b32ceb0ca0e2e8" 500 + 501 + [[package]] 502 + name = "unicode-ident" 503 + version = "1.0.11" 504 + source = "registry+https://github.com/rust-lang/crates.io-index" 505 + checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 506 + 507 + [[package]] 508 + name = "waker-fn" 509 + version = "1.1.0" 510 + source = "registry+https://github.com/rust-lang/crates.io-index" 511 + checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 512 + 513 + [[package]] 514 + name = "wasi" 515 + version = "0.11.0+wasi-snapshot-preview1" 516 + source = "registry+https://github.com/rust-lang/crates.io-index" 517 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 518 + 519 + [[package]] 520 + name = "win-sys" 521 + version = "0.3.1" 522 + source = "registry+https://github.com/rust-lang/crates.io-index" 523 + checksum = "5b7b128a98c1cfa201b09eb49ba285887deb3cbe7466a98850eb1adabb452be5" 524 + dependencies = [ 525 + "windows", 526 + ] 527 + 528 + [[package]] 529 + name = "winapi" 530 + version = "0.3.9" 531 + source = "registry+https://github.com/rust-lang/crates.io-index" 532 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 533 + dependencies = [ 534 + "winapi-i686-pc-windows-gnu", 535 + "winapi-x86_64-pc-windows-gnu", 536 + ] 537 + 538 + [[package]] 539 + name = "winapi-i686-pc-windows-gnu" 540 + version = "0.4.0" 541 + source = "registry+https://github.com/rust-lang/crates.io-index" 542 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 543 + 544 + [[package]] 545 + name = "winapi-x86_64-pc-windows-gnu" 546 + version = "0.4.0" 547 + source = "registry+https://github.com/rust-lang/crates.io-index" 548 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 549 + 550 + [[package]] 551 + name = "windows" 552 + version = "0.34.0" 553 + source = "registry+https://github.com/rust-lang/crates.io-index" 554 + checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f" 555 + dependencies = [ 556 + "windows_aarch64_msvc", 557 + "windows_i686_gnu", 558 + "windows_i686_msvc", 559 + "windows_x86_64_gnu", 560 + "windows_x86_64_msvc", 561 + ] 562 + 563 + [[package]] 564 + name = "windows_aarch64_msvc" 565 + version = "0.34.0" 566 + source = "registry+https://github.com/rust-lang/crates.io-index" 567 + checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d" 568 + 569 + [[package]] 570 + name = "windows_i686_gnu" 571 + version = "0.34.0" 572 + source = "registry+https://github.com/rust-lang/crates.io-index" 573 + checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed" 574 + 575 + [[package]] 576 + name = "windows_i686_msvc" 577 + version = "0.34.0" 578 + source = "registry+https://github.com/rust-lang/crates.io-index" 579 + checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956" 580 + 581 + [[package]] 582 + name = "windows_x86_64_gnu" 583 + version = "0.34.0" 584 + source = "registry+https://github.com/rust-lang/crates.io-index" 585 + checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4" 586 + 587 + [[package]] 588 + name = "windows_x86_64_msvc" 589 + version = "0.34.0" 590 + source = "registry+https://github.com/rust-lang/crates.io-index" 591 + checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"
-522
pkgs/applications/misc/mission-center/proxy-Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "anstream" 7 - version = "0.3.2" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 10 - dependencies = [ 11 - "anstyle", 12 - "anstyle-parse", 13 - "anstyle-query", 14 - "anstyle-wincon", 15 - "colorchoice", 16 - "is-terminal", 17 - "utf8parse", 18 - ] 19 - 20 - [[package]] 21 - name = "anstyle" 22 - version = "1.0.0" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 25 - 26 - [[package]] 27 - name = "anstyle-parse" 28 - version = "0.2.0" 29 - source = "registry+https://github.com/rust-lang/crates.io-index" 30 - checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" 31 - dependencies = [ 32 - "utf8parse", 33 - ] 34 - 35 - [[package]] 36 - name = "anstyle-query" 37 - version = "1.0.0" 38 - source = "registry+https://github.com/rust-lang/crates.io-index" 39 - checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 40 - dependencies = [ 41 - "windows-sys", 42 - ] 43 - 44 - [[package]] 45 - name = "anstyle-wincon" 46 - version = "1.0.1" 47 - source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 49 - dependencies = [ 50 - "anstyle", 51 - "windows-sys", 52 - ] 53 - 54 - [[package]] 55 - name = "bitflags" 56 - version = "1.3.2" 57 - source = "registry+https://github.com/rust-lang/crates.io-index" 58 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 59 - 60 - [[package]] 61 - name = "block-buffer" 62 - version = "0.10.4" 63 - source = "registry+https://github.com/rust-lang/crates.io-index" 64 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 65 - dependencies = [ 66 - "generic-array", 67 - ] 68 - 69 - [[package]] 70 - name = "cc" 71 - version = "1.0.79" 72 - source = "registry+https://github.com/rust-lang/crates.io-index" 73 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 74 - 75 - [[package]] 76 - name = "cfg-if" 77 - version = "1.0.0" 78 - source = "registry+https://github.com/rust-lang/crates.io-index" 79 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 80 - 81 - [[package]] 82 - name = "clap" 83 - version = "4.3.4" 84 - source = "registry+https://github.com/rust-lang/crates.io-index" 85 - checksum = "80672091db20273a15cf9fdd4e47ed43b5091ec9841bf4c6145c9dfbbcae09ed" 86 - dependencies = [ 87 - "clap_builder", 88 - "clap_derive", 89 - "once_cell", 90 - ] 91 - 92 - [[package]] 93 - name = "clap_builder" 94 - version = "4.3.4" 95 - source = "registry+https://github.com/rust-lang/crates.io-index" 96 - checksum = "c1458a1df40e1e2afebb7ab60ce55c1fa8f431146205aa5f4887e0b111c27636" 97 - dependencies = [ 98 - "anstream", 99 - "anstyle", 100 - "bitflags", 101 - "clap_lex", 102 - "strsim", 103 - ] 104 - 105 - [[package]] 106 - name = "clap_derive" 107 - version = "4.3.2" 108 - source = "registry+https://github.com/rust-lang/crates.io-index" 109 - checksum = "b8cd2b2a819ad6eec39e8f1d6b53001af1e5469f8c177579cdaeb313115b825f" 110 - dependencies = [ 111 - "heck", 112 - "proc-macro2", 113 - "quote", 114 - "syn", 115 - ] 116 - 117 - [[package]] 118 - name = "clap_lex" 119 - version = "0.5.0" 120 - source = "registry+https://github.com/rust-lang/crates.io-index" 121 - checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 122 - 123 - [[package]] 124 - name = "colorchoice" 125 - version = "1.0.0" 126 - source = "registry+https://github.com/rust-lang/crates.io-index" 127 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 128 - 129 - [[package]] 130 - name = "const-random" 131 - version = "0.1.15" 132 - source = "registry+https://github.com/rust-lang/crates.io-index" 133 - checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e" 134 - dependencies = [ 135 - "const-random-macro", 136 - "proc-macro-hack", 137 - ] 138 - 139 - [[package]] 140 - name = "const-random-macro" 141 - version = "0.1.15" 142 - source = "registry+https://github.com/rust-lang/crates.io-index" 143 - checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb" 144 - dependencies = [ 145 - "getrandom", 146 - "once_cell", 147 - "proc-macro-hack", 148 - "tiny-keccak", 149 - ] 150 - 151 - [[package]] 152 - name = "cpufeatures" 153 - version = "0.2.9" 154 - source = "registry+https://github.com/rust-lang/crates.io-index" 155 - checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 156 - dependencies = [ 157 - "libc", 158 - ] 159 - 160 - [[package]] 161 - name = "crunchy" 162 - version = "0.2.2" 163 - source = "registry+https://github.com/rust-lang/crates.io-index" 164 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 165 - 166 - [[package]] 167 - name = "crypto-common" 168 - version = "0.1.6" 169 - source = "registry+https://github.com/rust-lang/crates.io-index" 170 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 171 - dependencies = [ 172 - "generic-array", 173 - "typenum", 174 - ] 175 - 176 - [[package]] 177 - name = "digest" 178 - version = "0.10.7" 179 - source = "registry+https://github.com/rust-lang/crates.io-index" 180 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 181 - dependencies = [ 182 - "block-buffer", 183 - "crypto-common", 184 - ] 185 - 186 - [[package]] 187 - name = "dlv-list" 188 - version = "0.5.0" 189 - source = "registry+https://github.com/rust-lang/crates.io-index" 190 - checksum = "d529fd73d344663edfd598ccb3f344e46034db51ebd103518eae34338248ad73" 191 - dependencies = [ 192 - "const-random", 193 - ] 194 - 195 - [[package]] 196 - name = "errno" 197 - version = "0.3.1" 198 - source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 200 - dependencies = [ 201 - "errno-dragonfly", 202 - "libc", 203 - "windows-sys", 204 - ] 205 - 206 - [[package]] 207 - name = "errno-dragonfly" 208 - version = "0.1.2" 209 - source = "registry+https://github.com/rust-lang/crates.io-index" 210 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 211 - dependencies = [ 212 - "cc", 213 - "libc", 214 - ] 215 - 216 - [[package]] 217 - name = "generic-array" 218 - version = "0.14.7" 219 - source = "registry+https://github.com/rust-lang/crates.io-index" 220 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 221 - dependencies = [ 222 - "typenum", 223 - "version_check", 224 - ] 225 - 226 - [[package]] 227 - name = "getrandom" 228 - version = "0.2.10" 229 - source = "registry+https://github.com/rust-lang/crates.io-index" 230 - checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 231 - dependencies = [ 232 - "cfg-if", 233 - "libc", 234 - "wasi", 235 - ] 236 - 237 - [[package]] 238 - name = "hashbrown" 239 - version = "0.13.2" 240 - source = "registry+https://github.com/rust-lang/crates.io-index" 241 - checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 242 - 243 - [[package]] 244 - name = "heck" 245 - version = "0.4.1" 246 - source = "registry+https://github.com/rust-lang/crates.io-index" 247 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 248 - 249 - [[package]] 250 - name = "hermit-abi" 251 - version = "0.2.6" 252 - source = "registry+https://github.com/rust-lang/crates.io-index" 253 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 254 - dependencies = [ 255 - "libc", 256 - ] 257 - 258 - [[package]] 259 - name = "hermit-abi" 260 - version = "0.3.1" 261 - source = "registry+https://github.com/rust-lang/crates.io-index" 262 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 263 - 264 - [[package]] 265 - name = "io-lifetimes" 266 - version = "1.0.11" 267 - source = "registry+https://github.com/rust-lang/crates.io-index" 268 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 269 - dependencies = [ 270 - "hermit-abi 0.3.1", 271 - "libc", 272 - "windows-sys", 273 - ] 274 - 275 - [[package]] 276 - name = "is-terminal" 277 - version = "0.4.7" 278 - source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" 280 - dependencies = [ 281 - "hermit-abi 0.3.1", 282 - "io-lifetimes", 283 - "rustix", 284 - "windows-sys", 285 - ] 286 - 287 - [[package]] 288 - name = "lazy_static" 289 - version = "1.4.0" 290 - source = "registry+https://github.com/rust-lang/crates.io-index" 291 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 292 - 293 - [[package]] 294 - name = "libc" 295 - version = "0.2.146" 296 - source = "registry+https://github.com/rust-lang/crates.io-index" 297 - checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" 298 - 299 - [[package]] 300 - name = "linux-raw-sys" 301 - version = "0.3.8" 302 - source = "registry+https://github.com/rust-lang/crates.io-index" 303 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 304 - 305 - [[package]] 306 - name = "num_cpus" 307 - version = "1.15.0" 308 - source = "registry+https://github.com/rust-lang/crates.io-index" 309 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 310 - dependencies = [ 311 - "hermit-abi 0.2.6", 312 - "libc", 313 - ] 314 - 315 - [[package]] 316 - name = "once_cell" 317 - version = "1.18.0" 318 - source = "registry+https://github.com/rust-lang/crates.io-index" 319 - checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 320 - 321 - [[package]] 322 - name = "ordered-multimap" 323 - version = "0.6.0" 324 - source = "registry+https://github.com/rust-lang/crates.io-index" 325 - checksum = "4ed8acf08e98e744e5384c8bc63ceb0364e68a6854187221c18df61c4797690e" 326 - dependencies = [ 327 - "dlv-list", 328 - "hashbrown", 329 - ] 330 - 331 - [[package]] 332 - name = "proc-macro-hack" 333 - version = "0.5.20+deprecated" 334 - source = "registry+https://github.com/rust-lang/crates.io-index" 335 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 336 - 337 - [[package]] 338 - name = "proc-macro2" 339 - version = "1.0.60" 340 - source = "registry+https://github.com/rust-lang/crates.io-index" 341 - checksum = "dec2b086b7a862cf4de201096214fa870344cf922b2b30c167badb3af3195406" 342 - dependencies = [ 343 - "unicode-ident", 344 - ] 345 - 346 - [[package]] 347 - name = "proxy" 348 - version = "0.2.5" 349 - dependencies = [ 350 - "clap", 351 - "lazy_static", 352 - "libc", 353 - "num_cpus", 354 - "rust-ini", 355 - "sha2", 356 - ] 357 - 358 - [[package]] 359 - name = "quote" 360 - version = "1.0.28" 361 - source = "registry+https://github.com/rust-lang/crates.io-index" 362 - checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" 363 - dependencies = [ 364 - "proc-macro2", 365 - ] 366 - 367 - [[package]] 368 - name = "rust-ini" 369 - version = "0.19.0" 370 - source = "registry+https://github.com/rust-lang/crates.io-index" 371 - checksum = "7e2a3bcec1f113553ef1c88aae6c020a369d03d55b58de9869a0908930385091" 372 - dependencies = [ 373 - "cfg-if", 374 - "ordered-multimap", 375 - ] 376 - 377 - [[package]] 378 - name = "rustix" 379 - version = "0.37.20" 380 - source = "registry+https://github.com/rust-lang/crates.io-index" 381 - checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0" 382 - dependencies = [ 383 - "bitflags", 384 - "errno", 385 - "io-lifetimes", 386 - "libc", 387 - "linux-raw-sys", 388 - "windows-sys", 389 - ] 390 - 391 - [[package]] 392 - name = "sha2" 393 - version = "0.10.7" 394 - source = "registry+https://github.com/rust-lang/crates.io-index" 395 - checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 396 - dependencies = [ 397 - "cfg-if", 398 - "cpufeatures", 399 - "digest", 400 - ] 401 - 402 - [[package]] 403 - name = "strsim" 404 - version = "0.10.0" 405 - source = "registry+https://github.com/rust-lang/crates.io-index" 406 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 407 - 408 - [[package]] 409 - name = "syn" 410 - version = "2.0.18" 411 - source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" 413 - dependencies = [ 414 - "proc-macro2", 415 - "quote", 416 - "unicode-ident", 417 - ] 418 - 419 - [[package]] 420 - name = "tiny-keccak" 421 - version = "2.0.2" 422 - source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 424 - dependencies = [ 425 - "crunchy", 426 - ] 427 - 428 - [[package]] 429 - name = "typenum" 430 - version = "1.16.0" 431 - source = "registry+https://github.com/rust-lang/crates.io-index" 432 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 433 - 434 - [[package]] 435 - name = "unicode-ident" 436 - version = "1.0.9" 437 - source = "registry+https://github.com/rust-lang/crates.io-index" 438 - checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 439 - 440 - [[package]] 441 - name = "utf8parse" 442 - version = "0.2.1" 443 - source = "registry+https://github.com/rust-lang/crates.io-index" 444 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 445 - 446 - [[package]] 447 - name = "version_check" 448 - version = "0.9.4" 449 - source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 451 - 452 - [[package]] 453 - name = "wasi" 454 - version = "0.11.0+wasi-snapshot-preview1" 455 - source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 457 - 458 - [[package]] 459 - name = "windows-sys" 460 - version = "0.48.0" 461 - source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 463 - dependencies = [ 464 - "windows-targets", 465 - ] 466 - 467 - [[package]] 468 - name = "windows-targets" 469 - version = "0.48.0" 470 - source = "registry+https://github.com/rust-lang/crates.io-index" 471 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 472 - dependencies = [ 473 - "windows_aarch64_gnullvm", 474 - "windows_aarch64_msvc", 475 - "windows_i686_gnu", 476 - "windows_i686_msvc", 477 - "windows_x86_64_gnu", 478 - "windows_x86_64_gnullvm", 479 - "windows_x86_64_msvc", 480 - ] 481 - 482 - [[package]] 483 - name = "windows_aarch64_gnullvm" 484 - version = "0.48.0" 485 - source = "registry+https://github.com/rust-lang/crates.io-index" 486 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 487 - 488 - [[package]] 489 - name = "windows_aarch64_msvc" 490 - version = "0.48.0" 491 - source = "registry+https://github.com/rust-lang/crates.io-index" 492 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 493 - 494 - [[package]] 495 - name = "windows_i686_gnu" 496 - version = "0.48.0" 497 - source = "registry+https://github.com/rust-lang/crates.io-index" 498 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 499 - 500 - [[package]] 501 - name = "windows_i686_msvc" 502 - version = "0.48.0" 503 - source = "registry+https://github.com/rust-lang/crates.io-index" 504 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 505 - 506 - [[package]] 507 - name = "windows_x86_64_gnu" 508 - version = "0.48.0" 509 - source = "registry+https://github.com/rust-lang/crates.io-index" 510 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 511 - 512 - [[package]] 513 - name = "windows_x86_64_gnullvm" 514 - version = "0.48.0" 515 - source = "registry+https://github.com/rust-lang/crates.io-index" 516 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 517 - 518 - [[package]] 519 - name = "windows_x86_64_msvc" 520 - version = "0.48.0" 521 - source = "registry+https://github.com/rust-lang/crates.io-index" 522 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
+5 -5
pkgs/applications/networking/browsers/librewolf/src.json
··· 1 1 { 2 - "packageVersion": "116.0.2-1", 2 + "packageVersion": "116.0.3-1", 3 3 "source": { 4 - "rev": "116.0.2-1", 5 - "sha256": "08q50yjb8q168zb2y4iajjqd9ygbpywwr9i4vfn67wchqlsc1mrp" 4 + "rev": "116.0.3-1", 5 + "sha256": "19l5nny96p89xm8c9f5m1435sglshn7izmjnj338c8qh217zxiyq" 6 6 }, 7 7 "firefox": { 8 - "version": "116.0.2", 9 - "sha512": "2c0ae18672fe22c75002744831130e13da764f83726951e5b58cfe74f7f473e22634ce08ebc11a98bac5baec0a4ac099a3a350a8b756af9c5bea6d5f4432da6d" 8 + "version": "116.0.3", 9 + "sha512": "194c50e9ba5a918c37fbef8cd72ffb98e5e9f51955d8172b6666a758b5f20777ca0a7f79dff0328305fb6dafefb102ab002e326f47d0965a4dc6d3e9287c42b9" 10 10 } 11 11 }
+9 -5
pkgs/applications/science/chemistry/cp2k/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python3, gfortran, blas, lapack 1 + { lib, stdenv, fetchFromGitHub, mpiCheckPhaseHook, python3, gfortran, blas, lapack 2 2 , fftw, libint, libvori, libxc, mpi, gsl, scalapack, openssh, makeWrapper 3 3 , libxsmm, spglib, which, pkg-config, plumed, zlib 4 4 , enableElpa ? false ··· 88 88 EOF 89 89 ''; 90 90 91 + nativeCheckInputs = [ 92 + mpiCheckPhaseHook 93 + openssh 94 + ]; 95 + 91 96 checkPhase = '' 92 - export OMP_NUM_THREADS=1 97 + runHook preCheck 93 98 94 - export HYDRA_IFACE=lo # Fix to make mpich run in a sandbox 95 - export OMPI_MCA_rmaps_base_oversubscribe=1 96 99 export CP2K_DATA_DIR=data 100 + mpirun -np 2 exe/${arch}/libcp2k_unittest.${cp2kVersion} 97 101 98 - mpirun -np 2 exe/${arch}/libcp2k_unittest.${cp2kVersion} 102 + runHook postCheck 99 103 ''; 100 104 101 105 installPhase = ''
+5 -5
pkgs/applications/science/chemistry/nwchem/default.nix
··· 3 3 , pkgs 4 4 , fetchFromGitHub 5 5 , fetchurl 6 + , mpiCheckPhaseHook 6 7 , which 7 8 , openssh 8 9 , gcc ··· 190 191 doCheck = false; 191 192 192 193 doInstallCheck = true; 194 + nativeCheckInputs = [ mpiCheckPhaseHook ]; 193 195 installCheckPhase = '' 194 - export OMP_NUM_THREADS=1 195 - 196 - # Fix to make mpich run in a sandbox 197 - export HYDRA_IFACE=lo 198 - export OMPI_MCA_rmaps_base_oversubscribe=1 196 + runHook preInstallCheck 199 197 200 198 # run a simple water test 201 199 mpirun -np 2 $out/bin/nwchem $out/share/nwchem/QA/tests/h2o/h2o.nw > h2o.out 202 200 grep "Total SCF energy" h2o.out | grep 76.010538 201 + 202 + runHook postInstallCheck 203 203 ''; 204 204 205 205 passthru = { inherit mpi; };
+2 -2
pkgs/applications/video/haruna/default.nix
··· 26 26 27 27 mkDerivation rec { 28 28 pname = "haruna"; 29 - version = "0.11.1"; 29 + version = "0.12.0"; 30 30 31 31 src = fetchFromGitLab { 32 32 owner = "multimedia"; 33 33 repo = "haruna"; 34 34 rev = "v${version}"; 35 - hash = "sha256-quCkQN1IxKoGr+VzeDXs2UChJgxfgI+z56SDYc6eZDc="; 35 + hash = "sha256-NWV3DSQkgH4cqNnHipg4S3Nf5aEVdRzD0oT8a2OyCu4="; 36 36 domain = "invent.kde.org"; 37 37 }; 38 38
+19 -11
pkgs/build-support/fetchnextcloudapp/default.nix
··· 1 - { stdenv, fetchzip, applyPatches, ... }: 1 + { stdenv, fetchzip, applyPatches, lib, ... }: 2 2 { url 3 3 , sha256 4 + , appName ? null 5 + , appVersion ? null 6 + , license 4 7 , patches ? [ ] 5 - , name ? null 6 - , version ? null 8 + , description ? null 9 + , homepage ? null 7 10 }: 8 - if name != null || version != null then throw '' 9 - `pkgs.fetchNextcloudApp` has been changed to use `fetchzip`. 10 - To update, please 11 - * remove `name`/`version` 12 - * update the hash 13 - '' 14 - else applyPatches { 11 + applyPatches ({ 15 12 inherit patches; 16 13 src = fetchzip { 17 14 inherit url sha256; ··· 23 20 fi 24 21 popd &>/dev/null 25 22 ''; 23 + meta = { 24 + license = lib.licenses.${license}; 25 + longDescription = description; 26 + inherit homepage; 27 + } // lib.optionalAttrs (description != null) { 28 + longDescription = description; 29 + } // lib.optionalAttrs (homepage != null) { 30 + inherit homepage; 31 + }; 26 32 }; 27 - } 33 + } // lib.optionalAttrs (appName != null && appVersion != null) { 34 + name = "nextcloud-app-${appName}-${appVersion}"; 35 + })
+6
pkgs/build-support/rust/default-crate-overrides.nix
··· 40 40 , autoconf 41 41 , automake 42 42 , libtool 43 + , seatd # =libseat 43 44 , ... 44 45 }: 45 46 ··· 170 171 LIBGIT2_SYS_USE_PKG_CONFIG = true; 171 172 nativeBuildInputs = [ pkg-config ]; 172 173 buildInputs = [ openssl zlib libgit2 ]; 174 + }; 175 + 176 + libseat-sys = attrs: { 177 + nativeBuildInputs = [ pkg-config ]; 178 + buildInputs = [ seatd ]; 173 179 }; 174 180 175 181 libsqlite3-sys = attrs: {
+5
pkgs/build-support/setup-hooks/mpi-check-hook/default.nix
··· 1 + { callPackage, makeSetupHook }: 2 + 3 + makeSetupHook { 4 + name = "mpi-checkPhase-hook"; 5 + } ./mpi-check-hook.sh
+54
pkgs/build-support/setup-hooks/mpi-check-hook/mpi-check-hook.sh
··· 1 + preCheckHooks+=('setupMpiCheck') 2 + preInstallCheckHooks+=('setupMpiCheck') 3 + 4 + 5 + setupMpiCheck() { 6 + # Find out which MPI implementation we are using 7 + # and set safe defaults that are guaranteed to run 8 + # on any build machine 9 + 10 + mpiType="NONE" 11 + 12 + # OpenMPI signature 13 + if command ompi_info &> /dev/null; then 14 + mpiType="openmpi" 15 + fi 16 + 17 + # MPICH based implementations 18 + if command mpichversion &> /dev/null; then 19 + if [ "$mpiType" != "NONE" ]; then 20 + echo "WARNING: found OpenMPI and MPICH/MVAPICH executables" 21 + fi 22 + 23 + version=$(mpichversion) 24 + if [[ "$version" == *"MPICH"* ]]; then 25 + mpiType="MPICH" 26 + fi 27 + if [[ "$version" == *"MVAPICH"* ]]; then 28 + mpiType="MVAPICH" 29 + fi 30 + fi 31 + 32 + echo "Found MPI implementation: $mpiType" 33 + 34 + case $mpiType in 35 + openmpi) 36 + # make sure the test starts even if we have less than the requested amount of cores 37 + export OMPI_MCA_rmaps_base_oversubscribe=1 38 + # Disable CPU pinning 39 + export OMPI_MCA_hwloc_base_binding_policy=none 40 + ;; 41 + MPICH) 42 + # Fix to make mpich run in a sandbox 43 + export HYDRA_IFACE=lo 44 + ;; 45 + MVAPICH) 46 + # Disable CPU pinning 47 + export MV2_ENABLE_AFFINITY=0 48 + ;; 49 + esac 50 + 51 + # Limit number of OpenMP threads. Default is "all cores". 52 + export OMP_NUM_THREADS=1 53 + } 54 +
+6 -2
pkgs/build-support/trivial-builders/default.nix
··· 905 905 ) + "-patched" 906 906 , patches ? [] 907 907 , postPatch ? "" 908 - }: stdenvNoCC.mkDerivation { 908 + , ... 909 + }@args: stdenvNoCC.mkDerivation { 909 910 inherit name src patches postPatch; 910 911 preferLocalBuild = true; 911 912 allowSubstitutes = false; 912 913 phases = "unpackPhase patchPhase installPhase"; 913 914 installPhase = "cp -R ./ $out"; 914 - }; 915 + } 916 + # Carry `meta` information from the underlying `src` if present. 917 + // (optionalAttrs (src?meta) { inherit (src) meta; }) 918 + // (removeAttrs args [ "src" "name" "patches" "postPatch" ]); 915 919 916 920 /* An immutable file in the store with a length of 0 bytes. */ 917 921 emptyFile = runCommand "empty-file" {
+49
pkgs/data/themes/whitesur-kde/default.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + , gitUpdater 5 + }: 6 + 7 + stdenvNoCC.mkDerivation (finalAttrs: { 8 + pname = "whitesur-kde"; 9 + version = "unstable-2023-08-15"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "vinceliuice"; 13 + repo = finalAttrs.pname; 14 + rev = "d50bc20b2b78705bb9856204066affb763fa8a35"; 15 + hash = "sha256-oG6QT4VQpBznM+gvzdiY4CldOwdHcBeHlbvlc52eFuU="; 16 + }; 17 + 18 + postPatch = '' 19 + patchShebangs install.sh 20 + 21 + substituteInPlace install.sh \ 22 + --replace '$HOME/.config' $out/share \ 23 + --replace '$HOME/.local' $out \ 24 + --replace '"$HOME"/.Xresources' $out/doc/.Xresources 25 + ''; 26 + 27 + installPhase = '' 28 + runHook preInstall 29 + 30 + mkdir -p $out/doc 31 + 32 + name= ./install.sh 33 + 34 + mkdir -p $out/share/sddm/themes 35 + cp -a sddm/WhiteSur $out/share/sddm/themes/ 36 + 37 + runHook postInstall 38 + ''; 39 + 40 + passthru.updateScript = gitUpdater { }; 41 + 42 + meta = with lib; { 43 + description = "A MacOS big sur like theme for KDE Plasma desktop"; 44 + homepage = "https://github.com/vinceliuice/WhiteSur-kde"; 45 + license = licenses.gpl3Only; 46 + platforms = platforms.all; 47 + maintainers = [ maintainers.romildo ]; 48 + }; 49 + })
+4 -4
pkgs/desktops/budgie/magpie/default.nix
··· 46 46 47 47 stdenv.mkDerivation (finalAttrs: { 48 48 pname = "magpie"; 49 - version = "0.9.2"; 49 + version = "0.9.3"; 50 50 51 51 outputs = [ "out" "dev" "devdoc" ]; 52 52 ··· 54 54 owner = "BuddiesOfBudgie"; 55 55 repo = "magpie"; 56 56 rev = "v${finalAttrs.version}"; 57 - hash = "sha256-GoilHdESFgpwt8+Uqzrnf8jBpeaSak1uHTlkNcQdgtk="; 57 + hash = "sha256-A8FmW2o2p5B5pxTZ6twwufyhfppuMXjnMKopZRD+XdE="; 58 58 }; 59 59 60 60 patches = [ ··· 124 124 125 125 postPatch = '' 126 126 patchShebangs src/backends/native/gen-default-modes.py 127 - # Magpie doesn't install any .desktop files 128 - substituteInPlace meson/meson-postinstall.sh --replace "update-desktop-database" "# update-desktop-database" 127 + # Magpie does not install any .desktop files 128 + substituteInPlace scripts/mesonPostInstall.sh --replace "update-desktop-database" "# update-desktop-database" 129 129 ''; 130 130 131 131 postFixup = ''
+3 -3
pkgs/development/compilers/typescript/default.nix
··· 2 2 3 3 buildNpmPackage rec { 4 4 pname = "typescript"; 5 - version = "5.1.6"; 5 + version = "5.2.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "microsoft"; 9 9 repo = "TypeScript"; 10 10 rev = "v${version}"; 11 - hash = "sha256-YBAAiO7MBJ41VK6A9zeExB7ZSbbrQ23sVTHAqo+/H/w="; 11 + hash = "sha256-wjoqDmCudN5+9C3GrP1viiXBvsWgU0UIYWaFeK/TJEY="; 12 12 }; 13 13 14 - npmDepsHash = "sha256-RHiUhhkzkr2Ra3wc1d13gE2WIZL49w7IEFEAZuBDTDI="; 14 + npmDepsHash = "sha256-7Wm6nlpqZRNqBU0mYFZRVWQkO4uqvrKrp2h2aEmZtow="; 15 15 16 16 meta = with lib; { 17 17 description = "A superset of JavaScript that compiles to clean JavaScript output";
+4 -6
pkgs/development/interpreters/risor/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "risor"; 10 - version = "0.14.0"; 10 + version = "0.15.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "risor-io"; 14 14 repo = "risor"; 15 15 rev = "v${version}"; 16 - hash = "sha256-QhXIwFrApSkWY2YYYGlojKsByNA2xpyVTm0SpYWB/Ds="; 16 + hash = "sha256-aBUM/+mAuQ+JUOqeMtRYpOwdKbD6An9/Nc2Q6YDnUmE="; 17 17 }; 18 18 19 - vendorHash = "sha256-diAbQwnlhMm43ZlLKq3llMl9mO3sIkc80aCI5UDn7F4="; 19 + sourceRoot = "${src.name}/cmd/risor"; 20 20 21 - subPackages = [ 22 - "cmd/..." 23 - ]; 21 + vendorHash = "sha256-vlrYmY70nEAI8FSsMzZtuLMt8+aVi0jDX7PGKRMw4r8="; 24 22 25 23 ldflags = [ 26 24 "-s"
+4 -9
pkgs/development/libraries/elpa/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook, gfortran, perl 2 - , mpi, blas, lapack, scalapack, openssh 1 + { lib, stdenv, fetchurl, autoreconfHook, mpiCheckPhaseHook 2 + , gfortran, perl, mpi, blas, lapack, scalapack, openssh 3 3 # CPU optimizations 4 4 , avxSupport ? stdenv.hostPlatform.avxSupport 5 5 , avx2Support ? stdenv.hostPlatform.avx2Support ··· 41 41 substituteInPlace Makefile.am --replace '#!/bin/bash' '#!${stdenv.shell}' 42 42 ''; 43 43 44 - nativeBuildInputs = [ autoreconfHook perl openssh ]; 44 + nativeBuildInputs = [ autoreconfHook perl ]; 45 45 46 46 buildInputs = [ mpi blas lapack scalapack ] 47 47 ++ lib.optional enableCuda cudatoolkit; ··· 76 76 77 77 doCheck = true; 78 78 79 + nativeCheckInputs = [ mpiCheckPhaseHook openssh ]; 79 80 preCheck = '' 80 81 #patchShebangs ./ 81 - 82 - # make sure the test starts even if we have less than 4 cores 83 - export OMPI_MCA_rmaps_base_oversubscribe=1 84 - 85 - # Fix to make mpich run in a sandbox 86 - export HYDRA_IFACE=lo 87 82 88 83 # Run dual threaded 89 84 export OMP_NUM_THREADS=2
+5 -5
pkgs/development/libraries/science/math/dbcsr/default.nix
··· 2 2 , lib 3 3 , fetchFromGitHub 4 4 , cmake 5 + , mpiCheckPhaseHook 5 6 , pkg-config 6 7 , fypp 7 8 , gfortran ··· 64 65 "-DUSE_MPI=ON" 65 66 ]; 66 67 67 - checkInputs = [ openssh ]; 68 + checkInputs = [ 69 + openssh 70 + mpiCheckPhaseHook 71 + ]; 68 72 69 73 doCheck = true; 70 - preCheck = '' 71 - export HYDRA_IFACE=lo # Fix to make mpich run in a sandbox 72 - export OMPI_MCA_rmaps_base_oversubscribe=1 73 - ''; 74 74 75 75 meta = with lib; { 76 76 description = "Distributed Block Compressed Sparse Row matrix library";
+5 -5
pkgs/development/libraries/science/math/p4est-sc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub 1 + { lib, stdenv, fetchFromGitHub, mpiCheckPhaseHook 2 2 , autoreconfHook, pkg-config 3 3 , p4est-sc-debugEnable ? true, p4est-sc-mpiSupport ? true 4 4 , mpi, openssh, zlib ··· 47 47 enableParallelBuilding = true; 48 48 makeFlags = [ "V=0" ]; 49 49 50 - preCheck = '' 51 - export OMPI_MCA_rmaps_base_oversubscribe=1 52 - export HYDRA_IFACE=lo 53 - ''; 50 + nativeCheckInputs = lib.optionals mpiSupport [ 51 + mpiCheckPhaseHook 52 + openssh 53 + ]; 54 54 55 55 # disallow Darwin checks due to prototype incompatibility of qsort_r 56 56 # to be fixed in a future version of the source code
+1 -1
pkgs/development/libraries/science/math/p4est/default.nix
··· 46 46 ++ lib.optional withMetis "--with-metis" 47 47 ; 48 48 49 - inherit (p4est-sc) makeFlags dontDisableStatic enableParallelBuilding preCheck doCheck; 49 + inherit (p4est-sc) makeFlags dontDisableStatic enableParallelBuilding doCheck; 50 50 51 51 meta = { 52 52 branch = "prev3-develop";
+3 -14
pkgs/development/libraries/science/math/scalapack/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, openssh 2 - , mpi, blas, lapack 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, cmake 2 + , openssh, mpiCheckPhaseHook, mpi, blas, lapack 3 3 } : 4 4 5 5 assert blas.isILP64 == lapack.isILP64; ··· 35 35 ''; 36 36 37 37 nativeBuildInputs = [ cmake ]; 38 - nativeCheckInputs = [ openssh ]; 38 + nativeCheckInputs = [ openssh mpiCheckPhaseHook ]; 39 39 buildInputs = [ blas lapack ]; 40 40 propagatedBuildInputs = [ mpi ]; 41 41 hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ]; ··· 60 60 # Increase individual test timeout from 1500s to 10000s because hydra's builds 61 61 # sometimes fail due to this 62 62 checkFlagsArray = [ "ARGS=--timeout 10000" ]; 63 - 64 - preCheck = '' 65 - # make sure the test starts even if we have less than 4 cores 66 - export OMPI_MCA_rmaps_base_oversubscribe=1 67 - 68 - # Fix to make mpich run in a sandbox 69 - export HYDRA_IFACE=lo 70 - 71 - # Run single threaded 72 - export OMP_NUM_THREADS=1 73 - ''; 74 63 75 64 meta = with lib; { 76 65 homepage = "http://www.netlib.org/scalapack/";
+14 -14
pkgs/development/python-modules/approvaltests/default.nix
··· 1 1 { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , pythonOlder 5 - 6 - # propagates 7 2 , allpairspy 8 3 , approval-utilities 9 4 , beautifulsoup4 5 + , buildPythonPackage 10 6 , empty-files 7 + , fetchFromGitHub 8 + , mock 11 9 , mrjob 10 + , numpy 12 11 , pyperclip 13 12 , pytest 14 - , typing-extensions 15 - 16 - # tests 17 - , numpy 18 13 , pytestCheckHook 14 + , pythonOlder 15 + , testfixtures 16 + , typing-extensions 19 17 }: 20 18 21 19 buildPythonPackage rec { 22 - version = "8.3.1"; 23 20 pname = "approvaltests"; 21 + version = "8.4.1"; 24 22 format = "setuptools"; 25 23 26 24 disabled = pythonOlder "3.7"; 27 25 28 - # no tests included in PyPI tarball 29 26 src = fetchFromGitHub { 30 27 owner = "approvals"; 31 28 repo = "ApprovalTests.Python"; 32 29 rev = "refs/tags/v${version}"; 33 - hash = "sha256-FyYT+w4CX+CdUg0uGwyjw98H8Z+HMVecgMBW/ytrtFU="; 30 + hash = "sha256-BuFiNZZ7228CKJ97mVK2S8Siqe040EYV5pElVtwuVf4="; 34 31 }; 35 32 36 33 propagatedBuildInputs = [ ··· 41 38 mrjob 42 39 pyperclip 43 40 pytest 41 + testfixtures 44 42 typing-extensions 45 43 ]; 46 44 47 45 nativeCheckInputs = [ 46 + mock 48 47 numpy 49 48 pytestCheckHook 50 49 ]; 51 50 52 51 disabledTests = [ 53 - # tests expects paths below ApprovalTests.Python directory 52 + # Tests expects paths below ApprovalTests.Python directory 54 53 "test_received_filename" 55 54 "test_pytest_namer" 56 55 ]; ··· 63 62 meta = with lib; { 64 63 description = "Assertion/verification library to aid testing"; 65 64 homepage = "https://github.com/approvals/ApprovalTests.Python"; 65 + changelog = "https://github.com/approvals/ApprovalTests.Python/releases/tag/v${version}"; 66 66 license = licenses.asl20; 67 - maintainers = [ maintainers.marsam ]; 67 + maintainers = with maintainers; [ marsam ]; 68 68 }; 69 69 }
+2 -2
pkgs/development/python-modules/appthreat-vulnerability-db/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "appthreat-vulnerability-db"; 20 - version = "5.2.0"; 20 + version = "5.2.1"; 21 21 format = "pyproject"; 22 22 23 23 disabled = pythonOlder "3.7"; ··· 26 26 owner = "AppThreat"; 27 27 repo = "vulnerability-db"; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-OtaoyqYRsZVoWezrTAy3zROyNeRLbZmCT+z7YCwf9Ow="; 29 + hash = "sha256-FSi9fMp9SLnoIVo+Clca6oglroeIb6RbohiSSc6fqxo="; 30 30 }; 31 31 32 32 postPatch = ''
+3 -22
pkgs/development/python-modules/apptools/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , configobj 4 - , fetchpatch 5 4 , fetchPypi 6 5 , importlib-resources 7 6 , pandas 8 7 , pytestCheckHook 9 - , pythonAtLeast 10 8 , pythonOlder 11 9 , tables 12 10 , traits ··· 15 13 16 14 buildPythonPackage rec { 17 15 pname = "apptools"; 18 - version = "5.1.0"; 16 + version = "5.2.1"; 19 17 format = "setuptools"; 20 18 21 19 disabled = pythonOlder "3.7"; 22 20 23 21 src = fetchPypi { 24 22 inherit pname version; 25 - sha256 = "12x5lcs1cllpybz7f0i1lcwvmqsaa5n818wb2165lj049wqxx4yh"; 23 + hash = "sha256-xiaPXfzzCIvK92oAA+ULd3TQG1JY1xmbQQtIUv8iRuM="; 26 24 }; 27 25 28 - patches = [ 29 - # python310: Fix tests 30 - # https://github.com/enthought/apptools/issues/303 31 - (fetchpatch { 32 - url = "https://github.com/enthought/apptools/commit/10fb73916124f7ae7edf6c6688a05ad95678488f.patch"; 33 - hash = "sha256-izAcP5RWobLvnk2PQx31SX/TUGkw+prbYbjamYVmtjY="; 34 - name = "fix_python310_tests.patch"; 35 - }) 36 - 37 - # python39: importlib_resources -> importlib.resources. This patch will be included 38 - # in the next release after 5.1.0. 39 - (fetchpatch { 40 - url = "https://github.com/enthought/apptools/commit/0ae4f52f19a8c0ca9d7926e17c7de949097f24b4.patch"; 41 - sha256 = "165aiwjisr5c3lasg7xblcha7y1y5bq23vi3g9gc80c24bzwcbsw"; 42 - name = "fix_importlib-resources_naming.patch"; 43 - }) 44 - ]; 45 - 46 26 propagatedBuildInputs = [ 47 27 configobj 48 28 traits ··· 68 48 meta = with lib; { 69 49 description = "Set of packages that Enthought has found useful in creating a number of applications"; 70 50 homepage = "https://github.com/enthought/apptools"; 51 + changelog = "https://github.com/enthought/apptools/releases/tag/${version}"; 71 52 license = licenses.bsdOriginal; 72 53 maintainers = with maintainers; [ knedlsepp ]; 73 54 };
+42
pkgs/development/python-modules/botocore-stubs/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , poetry-core 5 + , pythonOlder 6 + , types-awscrt 7 + , typing-extensions 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "botocore-stubs"; 12 + version = "1.31.34"; 13 + format = "pyproject"; 14 + 15 + disabled = pythonOlder "3.7"; 16 + 17 + src = fetchPypi { 18 + pname = "botocore_stubs"; 19 + inherit version; 20 + hash = "sha256-7HQvhmNqzyeHIgCYf+IGi6X7kmbOBBcKkOomtpjhVlQ="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + poetry-core 25 + ]; 26 + 27 + propagatedBuildInputs = [ 28 + types-awscrt 29 + typing-extensions 30 + ]; 31 + 32 + pythonImportsCheck = [ 33 + "botocore-stubs" 34 + ]; 35 + 36 + meta = with lib; { 37 + description = "Type annotations and code completion for botocore"; 38 + homepage = "https://pypi.org/project/botocore-stubs/"; 39 + license = licenses.mit; 40 + maintainers = with maintainers; [ fab ]; 41 + }; 42 + }
+2 -2
pkgs/development/python-modules/fountains/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "fountains"; 13 - version = "2.1.0"; 13 + version = "2.2.0"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-gYVguXMVrXxra/xy+R4RXVk9yDGKiKE8u3qWUk8sjt4="; 20 + hash = "sha256-MhOQ4pemxmjfp7Uy5hLA8i8BBI5QbvD4EjEcKMM/u3I="; 21 21 }; 22 22 23 23 patches = [
+2 -2
pkgs/development/python-modules/hass-nabucasa/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "hass-nabucasa"; 20 - version = "0.69.0"; 20 + version = "0.70.0"; 21 21 format = "setuptools"; 22 22 23 23 disabled = pythonOlder "3.8"; ··· 26 26 owner = "nabucasa"; 27 27 repo = pname; 28 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-7FO/z5AseP80y74e4ivLXlwB9t5jJf2bCaNp6HfqZ1c="; 29 + hash = "sha256-lELb39N5pAZFeANgzg5TBmC+gmY/wgXbE7wlvdlJe2A="; 30 30 }; 31 31 32 32 postPatch = ''
+13 -12
pkgs/development/python-modules/keyrings-alt/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , jaraco-classes 5 + , keyring 6 + , pytestCheckHook 4 7 , pythonOlder 5 - , isPy27 6 - , six 7 - 8 - , pytestCheckHook 9 - , keyring 10 8 , setuptools-scm 11 9 }: 12 10 13 11 buildPythonPackage rec { 14 - pname = "keyrings.alt"; 15 - version = "4.2.0"; 12 + pname = "keyrings-alt"; 13 + version = "5.0.0"; 16 14 format = "pyproject"; 17 - disabled = isPy27; 15 + 16 + disabled = pythonOlder "3.8"; 18 17 19 18 src = fetchPypi { 20 - inherit pname version; 21 - hash = "sha256-K6PVZEG6Bjf1+cCWBo9nAQrART+dC2Jt4qowGTU7ZDE="; 19 + pname = "keyrings.alt"; 20 + inherit version; 21 + hash = "sha256-nURstHu86pD/ouzD6AA6z0FXP8IBv0S0vxO9DhFISCg="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ··· 26 26 ]; 27 27 28 28 propagatedBuildInputs = [ 29 - six 29 + jaraco-classes 30 30 ]; 31 31 32 32 nativeCheckInputs = [ ··· 39 39 ]; 40 40 41 41 meta = with lib; { 42 - license = licenses.mit; 43 42 description = "Alternate keyring implementations"; 44 43 homepage = "https://github.com/jaraco/keyrings.alt"; 44 + changelog = "https://github.com/jaraco/keyrings.alt/blob/v${version}/NEWS.rst"; 45 + license = licenses.mit; 45 46 maintainers = with maintainers; [ nyarly ]; 46 47 }; 47 48 }
+3 -2
pkgs/development/python-modules/mdformat-mkdocs/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "mdformat-mkdocs"; 12 - version = "1.0.2"; 12 + version = "1.0.4"; 13 13 format = "flit"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "KyleKing"; 19 19 repo = pname; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-H+wqgcXNrdrZ5aQvZ7XM8YpBpVZM6pFtsANC00UZ0jM="; 21 + hash = "sha256-mGWeG8clWJ7obsvO+gYaVzfAyDOh9HNdyWW5KgOgfmM="; 22 22 }; 23 23 24 24 buildInputs = [ ··· 34 34 meta = with lib; { 35 35 description = "mdformat plugin for MkDocs"; 36 36 homepage = "https://github.com/KyleKing/mdformat-mkdocs"; 37 + changelog = "https://github.com/KyleKing/mdformat-mkdocs/releases/tag/v${version}"; 37 38 license = licenses.mit; 38 39 maintainers = with maintainers; [ aldoborrero ]; 39 40 };
+6 -7
pkgs/development/python-modules/meep/default.nix
··· 4 4 , fetchFromGitHub 5 5 , autoreconfHook 6 6 , pkg-config 7 + , mpiCheckPhaseHook 7 8 , gfortran 8 9 , mpi 9 10 , blas ··· 108 109 errors can be caught. 109 110 */ 110 111 doCheck = true; 112 + nativeCheckInputs = [ mpiCheckPhaseHook openssh ]; 111 113 checkPhase = '' 112 - export PATH=$PATH:${openssh}/bin 113 - export PYTHONPATH="$out/lib/${python.libPrefix}/site-packages:$PYTHONPATH" 114 - 115 - export OMP_NUM_THREADS=1 114 + runHook preCheck 116 115 117 - # Fix to make mpich run in a sandbox 118 - export HYDRA_IFACE=lo 119 - export OMPI_MCA_rmaps_base_oversubscribe=1 116 + export PYTHONPATH="$out/lib/${python.libPrefix}/site-packages:$PYTHONPATH" 120 117 121 118 # Generate a python test script 122 119 cat > test.py << EOF ··· 139 136 EOF 140 137 141 138 ${mpi}/bin/mpiexec -np 2 python3 test.py 139 + 140 + runHook postCheck 142 141 ''; 143 142 144 143 meta = with lib; {
+2 -2
pkgs/development/python-modules/meshtastic/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "meshtastic"; 23 - version = "2.2.1"; 23 + version = "2.2.2"; 24 24 format = "setuptools"; 25 25 26 26 disabled = pythonOlder "3.7"; ··· 29 29 owner = "meshtastic"; 30 30 repo = "Meshtastic-python"; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-szeY3+84xAihGK9nLgMQf9oLRDlKlaPg6+I42TJkfVY="; 32 + hash = "sha256-7mQq0phe920t7aJxvP0cCpVNH9s7F+x1fBdzAVUgtKE="; 33 33 }; 34 34 35 35 propagatedBuildInputs = [
+4 -6
pkgs/development/python-modules/mpi4py/default.nix
··· 1 - { lib, fetchPypi, fetchpatch, python, buildPythonPackage, mpi, openssh }: 1 + { lib, fetchPypi, fetchpatch, python, buildPythonPackage 2 + , mpi, mpiCheckPhaseHook, openssh 3 + }: 2 4 3 5 buildPythonPackage rec { 4 6 pname = "mpi4py"; ··· 33 35 # sometimes packages specify where files should be installed outside the usual 34 36 # python lib prefix, we override that back so all infrastructure (setup hooks) 35 37 # work as expected 36 - 37 - # Needed to run the tests reliably. See: 38 - # https://bitbucket.org/mpi4py/mpi4py/issues/87/multiple-test-errors-with-openmpi-30 39 - export OMPI_MCA_rmaps_base_oversubscribe=yes 40 38 ''; 41 39 42 40 setupPyBuildFlags = ["--mpicc=${mpi}/bin/mpicc"]; ··· 45 43 46 44 __darwinAllowLocalNetworking = true; 47 45 48 - nativeCheckInputs = [ openssh ]; 46 + nativeCheckInputs = [ openssh mpiCheckPhaseHook ]; 49 47 50 48 meta = with lib; { 51 49 description = "Python bindings for the Message Passing Interface standard";
+2 -2
pkgs/development/python-modules/oauthenticator/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "oauthenticator"; 17 - version = "16.0.6"; 17 + version = "16.0.7"; 18 18 format = "setuptools"; 19 19 20 20 disabled = pythonOlder "3.7"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-82I+ZmWRUUV+kxveHNDXTsbOeZcT0QJo/SJP3paxRcY="; 24 + hash = "sha256-opF7HdTJX4M7gTgB0VyWyyG/DO7lrVTvTcxMBX3a6UE="; 25 25 }; 26 26 27 27 postPatch = ''
+2 -2
pkgs/development/python-modules/publicsuffixlist/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "publicsuffixlist"; 12 - version = "0.10.0.20230814"; 12 + version = "0.10.0.20230824"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-GG6ilUUauVT2u/BuS4agzJVQdydEuGwpxJVznWDb46Q="; 19 + hash = "sha256-8Cln/fjc1ne1EPyvGJH55N4Xzs9FbvZOxaoaXiWY8Bw="; 20 20 }; 21 21 22 22 passthru.optional-dependencies = {
+6 -10
pkgs/development/python-modules/smbus2/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , nose 4 + , pytestCheckHook 5 5 , pythonOlder 6 6 }: 7 7 8 8 buildPythonPackage rec { 9 9 pname = "smbus2"; 10 - version = "0.4.2"; 10 + version = "0.4.3"; 11 + format = "setuptools"; 11 12 12 13 disabled = pythonOlder "3.6"; 13 14 ··· 15 16 owner = "kplindegaard"; 16 17 repo = pname; 17 18 rev = "refs/tags/${version}"; 18 - hash = "sha256-6JzFbhUq8XR1nYkadPeYqItcLZDIFAwTe3BriEW2nVI="; 19 + hash = "sha256-tjJurJzDn0ATiYY3Xo66lwUs98/7ZLG3d4+h1prVHAI="; 19 20 }; 20 21 21 22 nativeCheckInputs = [ 22 - nose 23 + pytestCheckHook 23 24 ]; 24 - 25 - checkPhase = '' 26 - runHook preCheck 27 - nosetests 28 - runHook postCheck 29 - ''; 30 25 31 26 pythonImportsCheck = [ 32 27 "smbus2" ··· 35 30 meta = with lib; { 36 31 description = "Drop-in replacement for smbus-cffi/smbus-python"; 37 32 homepage = "https://smbus2.readthedocs.io/"; 33 + changelog = "https://github.com/kplindegaard/smbus2/blob/${version}/CHANGELOG.md"; 38 34 license = licenses.mit; 39 35 maintainers = with maintainers; [ fab ]; 40 36 };
+36
pkgs/development/python-modules/types-awscrt/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , poetry-core 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "types-awscrt"; 10 + version = "0.19.0"; 11 + format = "pyproject"; 12 + 13 + disabled = pythonOlder "3.7"; 14 + 15 + src = fetchPypi { 16 + pname = "types_awscrt"; 17 + inherit version; 18 + hash = "sha256-6u9gQiz3FrSuIW8WS3TWecgrDZxT2zgKN96ymuVXmxs="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + poetry-core 23 + ]; 24 + 25 + pythonImportsCheck = [ 26 + "awscrt-stubs" 27 + ]; 28 + 29 + meta = with lib; { 30 + description = "Type annotations and code completion for awscrt"; 31 + homepage = "https://github.com/youtype/types-awscrt"; 32 + changelog = "https://github.com/youtype/types-awscrt/releases/tag/${version}"; 33 + license = licenses.mit; 34 + maintainers = with maintainers; [ fab ]; 35 + }; 36 + }
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 22 23 23 buildPythonApplication rec { 24 24 pname = "checkov"; 25 - version = "2.4.7"; 25 + version = "2.4.10"; 26 26 format = "setuptools"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "bridgecrewio"; 30 30 repo = pname; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-NveRGWf0Aghu0fxVAVSukrH9zFl+QJ2rWNYm5JIHIjk="; 32 + hash = "sha256-L5BRpwWAP4WyP3kyzp8ELVnXth84jRwP9wmj9kA+xcw="; 33 33 }; 34 34 35 35 patches = [
+511 -502
pkgs/development/tools/mongosh/package-lock.json
··· 1 1 { 2 2 "name": "mongosh", 3 - "version": "1.10.5", 3 + "version": "1.10.6", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 8 "name": "mongosh", 9 - "version": "1.10.5", 9 + "version": "1.10.6", 10 10 "license": "Apache-2.0", 11 11 "dependencies": { 12 - "@mongosh/cli-repl": "1.10.5" 12 + "@mongosh/cli-repl": "1.10.6" 13 13 }, 14 14 "bin": { 15 15 "mongosh": "bin/mongosh.js" ··· 122 122 "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 123 123 }, 124 124 "node_modules/@aws-sdk/client-cognito-identity": { 125 - "version": "3.391.0", 126 - "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.391.0.tgz", 127 - "integrity": "sha512-5mlkdrLP6sTG6D+q/qFw6vPVegFGSy1XcVUdERmWo6fvR7mYlRNETGC5sNsGPcMhnN3MCviqxCJmXpwnsP7okg==", 125 + "version": "3.398.0", 126 + "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.398.0.tgz", 127 + "integrity": "sha512-Pr/S1f8R2FsJ8DwBC6g0CSdtZNNV5dMHhlIi+t8YAmCJvP4KT+UhzFjbvQRINlBRLFuGUuP7p5vRcGVELD3+wA==", 128 128 "dependencies": { 129 129 "@aws-crypto/sha256-browser": "3.0.0", 130 130 "@aws-crypto/sha256-js": "3.0.0", 131 - "@aws-sdk/client-sts": "3.391.0", 132 - "@aws-sdk/credential-provider-node": "3.391.0", 133 - "@aws-sdk/middleware-host-header": "3.391.0", 134 - "@aws-sdk/middleware-logger": "3.391.0", 135 - "@aws-sdk/middleware-recursion-detection": "3.391.0", 136 - "@aws-sdk/middleware-signing": "3.391.0", 137 - "@aws-sdk/middleware-user-agent": "3.391.0", 138 - "@aws-sdk/types": "3.391.0", 139 - "@aws-sdk/util-endpoints": "3.391.0", 140 - "@aws-sdk/util-user-agent-browser": "3.391.0", 141 - "@aws-sdk/util-user-agent-node": "3.391.0", 142 - "@smithy/config-resolver": "^2.0.3", 143 - "@smithy/fetch-http-handler": "^2.0.3", 144 - "@smithy/hash-node": "^2.0.3", 145 - "@smithy/invalid-dependency": "^2.0.3", 146 - "@smithy/middleware-content-length": "^2.0.3", 147 - "@smithy/middleware-endpoint": "^2.0.3", 148 - "@smithy/middleware-retry": "^2.0.3", 149 - "@smithy/middleware-serde": "^2.0.3", 131 + "@aws-sdk/client-sts": "3.398.0", 132 + "@aws-sdk/credential-provider-node": "3.398.0", 133 + "@aws-sdk/middleware-host-header": "3.398.0", 134 + "@aws-sdk/middleware-logger": "3.398.0", 135 + "@aws-sdk/middleware-recursion-detection": "3.398.0", 136 + "@aws-sdk/middleware-signing": "3.398.0", 137 + "@aws-sdk/middleware-user-agent": "3.398.0", 138 + "@aws-sdk/types": "3.398.0", 139 + "@aws-sdk/util-endpoints": "3.398.0", 140 + "@aws-sdk/util-user-agent-browser": "3.398.0", 141 + "@aws-sdk/util-user-agent-node": "3.398.0", 142 + "@smithy/config-resolver": "^2.0.5", 143 + "@smithy/fetch-http-handler": "^2.0.5", 144 + "@smithy/hash-node": "^2.0.5", 145 + "@smithy/invalid-dependency": "^2.0.5", 146 + "@smithy/middleware-content-length": "^2.0.5", 147 + "@smithy/middleware-endpoint": "^2.0.5", 148 + "@smithy/middleware-retry": "^2.0.5", 149 + "@smithy/middleware-serde": "^2.0.5", 150 150 "@smithy/middleware-stack": "^2.0.0", 151 - "@smithy/node-config-provider": "^2.0.3", 152 - "@smithy/node-http-handler": "^2.0.3", 153 - "@smithy/protocol-http": "^2.0.3", 154 - "@smithy/smithy-client": "^2.0.3", 155 - "@smithy/types": "^2.2.0", 156 - "@smithy/url-parser": "^2.0.3", 151 + "@smithy/node-config-provider": "^2.0.5", 152 + "@smithy/node-http-handler": "^2.0.5", 153 + "@smithy/protocol-http": "^2.0.5", 154 + "@smithy/smithy-client": "^2.0.5", 155 + "@smithy/types": "^2.2.2", 156 + "@smithy/url-parser": "^2.0.5", 157 157 "@smithy/util-base64": "^2.0.0", 158 158 "@smithy/util-body-length-browser": "^2.0.0", 159 - "@smithy/util-body-length-node": "^2.0.0", 160 - "@smithy/util-defaults-mode-browser": "^2.0.3", 161 - "@smithy/util-defaults-mode-node": "^2.0.3", 159 + "@smithy/util-body-length-node": "^2.1.0", 160 + "@smithy/util-defaults-mode-browser": "^2.0.5", 161 + "@smithy/util-defaults-mode-node": "^2.0.5", 162 162 "@smithy/util-retry": "^2.0.0", 163 163 "@smithy/util-utf8": "^2.0.0", 164 164 "tslib": "^2.5.0" ··· 168 168 } 169 169 }, 170 170 "node_modules/@aws-sdk/client-sso": { 171 - "version": "3.391.0", 172 - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.391.0.tgz", 173 - "integrity": "sha512-aT+O1CbWIWYlCtWK6g3ZaMvFNImOgFGurOEPscuedqzG5UQc1bRtRrGYShLyzcZgfXP+s0cKYJqgGeRNoWiwqA==", 171 + "version": "3.398.0", 172 + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.398.0.tgz", 173 + "integrity": "sha512-CygL0jhfibw4kmWXG/3sfZMFNjcXo66XUuPC4BqZBk8Rj5vFoxp1vZeMkDLzTIk97Nvo5J5Bh+QnXKhub6AckQ==", 174 174 "dependencies": { 175 175 "@aws-crypto/sha256-browser": "3.0.0", 176 176 "@aws-crypto/sha256-js": "3.0.0", 177 - "@aws-sdk/middleware-host-header": "3.391.0", 178 - "@aws-sdk/middleware-logger": "3.391.0", 179 - "@aws-sdk/middleware-recursion-detection": "3.391.0", 180 - "@aws-sdk/middleware-user-agent": "3.391.0", 181 - "@aws-sdk/types": "3.391.0", 182 - "@aws-sdk/util-endpoints": "3.391.0", 183 - "@aws-sdk/util-user-agent-browser": "3.391.0", 184 - "@aws-sdk/util-user-agent-node": "3.391.0", 185 - "@smithy/config-resolver": "^2.0.3", 186 - "@smithy/fetch-http-handler": "^2.0.3", 187 - "@smithy/hash-node": "^2.0.3", 188 - "@smithy/invalid-dependency": "^2.0.3", 189 - "@smithy/middleware-content-length": "^2.0.3", 190 - "@smithy/middleware-endpoint": "^2.0.3", 191 - "@smithy/middleware-retry": "^2.0.3", 192 - "@smithy/middleware-serde": "^2.0.3", 177 + "@aws-sdk/middleware-host-header": "3.398.0", 178 + "@aws-sdk/middleware-logger": "3.398.0", 179 + "@aws-sdk/middleware-recursion-detection": "3.398.0", 180 + "@aws-sdk/middleware-user-agent": "3.398.0", 181 + "@aws-sdk/types": "3.398.0", 182 + "@aws-sdk/util-endpoints": "3.398.0", 183 + "@aws-sdk/util-user-agent-browser": "3.398.0", 184 + "@aws-sdk/util-user-agent-node": "3.398.0", 185 + "@smithy/config-resolver": "^2.0.5", 186 + "@smithy/fetch-http-handler": "^2.0.5", 187 + "@smithy/hash-node": "^2.0.5", 188 + "@smithy/invalid-dependency": "^2.0.5", 189 + "@smithy/middleware-content-length": "^2.0.5", 190 + "@smithy/middleware-endpoint": "^2.0.5", 191 + "@smithy/middleware-retry": "^2.0.5", 192 + "@smithy/middleware-serde": "^2.0.5", 193 193 "@smithy/middleware-stack": "^2.0.0", 194 - "@smithy/node-config-provider": "^2.0.3", 195 - "@smithy/node-http-handler": "^2.0.3", 196 - "@smithy/protocol-http": "^2.0.3", 197 - "@smithy/smithy-client": "^2.0.3", 198 - "@smithy/types": "^2.2.0", 199 - "@smithy/url-parser": "^2.0.3", 194 + "@smithy/node-config-provider": "^2.0.5", 195 + "@smithy/node-http-handler": "^2.0.5", 196 + "@smithy/protocol-http": "^2.0.5", 197 + "@smithy/smithy-client": "^2.0.5", 198 + "@smithy/types": "^2.2.2", 199 + "@smithy/url-parser": "^2.0.5", 200 200 "@smithy/util-base64": "^2.0.0", 201 201 "@smithy/util-body-length-browser": "^2.0.0", 202 - "@smithy/util-body-length-node": "^2.0.0", 203 - "@smithy/util-defaults-mode-browser": "^2.0.3", 204 - "@smithy/util-defaults-mode-node": "^2.0.3", 202 + "@smithy/util-body-length-node": "^2.1.0", 203 + "@smithy/util-defaults-mode-browser": "^2.0.5", 204 + "@smithy/util-defaults-mode-node": "^2.0.5", 205 205 "@smithy/util-retry": "^2.0.0", 206 206 "@smithy/util-utf8": "^2.0.0", 207 207 "tslib": "^2.5.0" ··· 211 211 } 212 212 }, 213 213 "node_modules/@aws-sdk/client-sts": { 214 - "version": "3.391.0", 215 - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.391.0.tgz", 216 - "integrity": "sha512-y+KmorcUx9o5O99sXVPbhGUpsLpfhzYRaYCqxArLsyzZTCO6XDXMi8vg/xtS+b703j9lWEl5GxAv2oBaEwEnhQ==", 214 + "version": "3.398.0", 215 + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.398.0.tgz", 216 + "integrity": "sha512-/3Pa9wLMvBZipKraq3AtbmTfXW6q9kyvhwOno64f1Fz7kFb8ijQFMGoATS70B2pGEZTlxkUqJFWDiisT6Q6dFg==", 217 217 "dependencies": { 218 218 "@aws-crypto/sha256-browser": "3.0.0", 219 219 "@aws-crypto/sha256-js": "3.0.0", 220 - "@aws-sdk/credential-provider-node": "3.391.0", 221 - "@aws-sdk/middleware-host-header": "3.391.0", 222 - "@aws-sdk/middleware-logger": "3.391.0", 223 - "@aws-sdk/middleware-recursion-detection": "3.391.0", 224 - "@aws-sdk/middleware-sdk-sts": "3.391.0", 225 - "@aws-sdk/middleware-signing": "3.391.0", 226 - "@aws-sdk/middleware-user-agent": "3.391.0", 227 - "@aws-sdk/types": "3.391.0", 228 - "@aws-sdk/util-endpoints": "3.391.0", 229 - "@aws-sdk/util-user-agent-browser": "3.391.0", 230 - "@aws-sdk/util-user-agent-node": "3.391.0", 231 - "@smithy/config-resolver": "^2.0.3", 232 - "@smithy/fetch-http-handler": "^2.0.3", 233 - "@smithy/hash-node": "^2.0.3", 234 - "@smithy/invalid-dependency": "^2.0.3", 235 - "@smithy/middleware-content-length": "^2.0.3", 236 - "@smithy/middleware-endpoint": "^2.0.3", 237 - "@smithy/middleware-retry": "^2.0.3", 238 - "@smithy/middleware-serde": "^2.0.3", 220 + "@aws-sdk/credential-provider-node": "3.398.0", 221 + "@aws-sdk/middleware-host-header": "3.398.0", 222 + "@aws-sdk/middleware-logger": "3.398.0", 223 + "@aws-sdk/middleware-recursion-detection": "3.398.0", 224 + "@aws-sdk/middleware-sdk-sts": "3.398.0", 225 + "@aws-sdk/middleware-signing": "3.398.0", 226 + "@aws-sdk/middleware-user-agent": "3.398.0", 227 + "@aws-sdk/types": "3.398.0", 228 + "@aws-sdk/util-endpoints": "3.398.0", 229 + "@aws-sdk/util-user-agent-browser": "3.398.0", 230 + "@aws-sdk/util-user-agent-node": "3.398.0", 231 + "@smithy/config-resolver": "^2.0.5", 232 + "@smithy/fetch-http-handler": "^2.0.5", 233 + "@smithy/hash-node": "^2.0.5", 234 + "@smithy/invalid-dependency": "^2.0.5", 235 + "@smithy/middleware-content-length": "^2.0.5", 236 + "@smithy/middleware-endpoint": "^2.0.5", 237 + "@smithy/middleware-retry": "^2.0.5", 238 + "@smithy/middleware-serde": "^2.0.5", 239 239 "@smithy/middleware-stack": "^2.0.0", 240 - "@smithy/node-config-provider": "^2.0.3", 241 - "@smithy/node-http-handler": "^2.0.3", 242 - "@smithy/protocol-http": "^2.0.3", 243 - "@smithy/smithy-client": "^2.0.3", 244 - "@smithy/types": "^2.2.0", 245 - "@smithy/url-parser": "^2.0.3", 240 + "@smithy/node-config-provider": "^2.0.5", 241 + "@smithy/node-http-handler": "^2.0.5", 242 + "@smithy/protocol-http": "^2.0.5", 243 + "@smithy/smithy-client": "^2.0.5", 244 + "@smithy/types": "^2.2.2", 245 + "@smithy/url-parser": "^2.0.5", 246 246 "@smithy/util-base64": "^2.0.0", 247 247 "@smithy/util-body-length-browser": "^2.0.0", 248 - "@smithy/util-body-length-node": "^2.0.0", 249 - "@smithy/util-defaults-mode-browser": "^2.0.3", 250 - "@smithy/util-defaults-mode-node": "^2.0.3", 248 + "@smithy/util-body-length-node": "^2.1.0", 249 + "@smithy/util-defaults-mode-browser": "^2.0.5", 250 + "@smithy/util-defaults-mode-node": "^2.0.5", 251 251 "@smithy/util-retry": "^2.0.0", 252 252 "@smithy/util-utf8": "^2.0.0", 253 253 "fast-xml-parser": "4.2.5", ··· 258 258 } 259 259 }, 260 260 "node_modules/@aws-sdk/credential-provider-cognito-identity": { 261 - "version": "3.391.0", 262 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.391.0.tgz", 263 - "integrity": "sha512-60B2WDGJOijluCzeTQDzPWgGuAhYKTcYnK5fNMi9xzHBqw+IhPaGYcmAx1bQGY7SuoZBqVgt1h6fiNxY8TWO5w==", 261 + "version": "3.398.0", 262 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.398.0.tgz", 263 + "integrity": "sha512-MFUhy1YayHg5ypRTk4OTfDumQRP+OJBagaGv14kA8DzhKH1sNrU4HV7A7y2J4SvkN5hG/KnLJqxpakCtB2/O2g==", 264 264 "dependencies": { 265 - "@aws-sdk/client-cognito-identity": "3.391.0", 266 - "@aws-sdk/types": "3.391.0", 265 + "@aws-sdk/client-cognito-identity": "3.398.0", 266 + "@aws-sdk/types": "3.398.0", 267 267 "@smithy/property-provider": "^2.0.0", 268 - "@smithy/types": "^2.2.0", 268 + "@smithy/types": "^2.2.2", 269 269 "tslib": "^2.5.0" 270 270 }, 271 271 "engines": { ··· 273 273 } 274 274 }, 275 275 "node_modules/@aws-sdk/credential-provider-env": { 276 - "version": "3.391.0", 277 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.391.0.tgz", 278 - "integrity": "sha512-mAzICedcg4bfL0mM5O6QTd9mQ331NLse1DMr6XL21ZZiLB48ej19L7AGV2xq5QwVbqKU3IVv1myRyhvpDM9jMg==", 276 + "version": "3.398.0", 277 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.398.0.tgz", 278 + "integrity": "sha512-Z8Yj5z7FroAsR6UVML+XUdlpoqEe9Dnle8c2h8/xWwIC2feTfIBhjLhRVxfbpbM1pLgBSNEcZ7U8fwq5l7ESVQ==", 279 279 "dependencies": { 280 - "@aws-sdk/types": "3.391.0", 280 + "@aws-sdk/types": "3.398.0", 281 281 "@smithy/property-provider": "^2.0.0", 282 - "@smithy/types": "^2.2.0", 282 + "@smithy/types": "^2.2.2", 283 283 "tslib": "^2.5.0" 284 284 }, 285 285 "engines": { ··· 287 287 } 288 288 }, 289 289 "node_modules/@aws-sdk/credential-provider-ini": { 290 - "version": "3.391.0", 291 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.391.0.tgz", 292 - "integrity": "sha512-DJZmbmRMqNSfSV7UF8eBVhADz16KAMCTxnFuvgioHHfYUTZQEhCxRHI8jJqYWxhLTriS7AuTBIWr+1AIbwsCTA==", 290 + "version": "3.398.0", 291 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.398.0.tgz", 292 + "integrity": "sha512-AsK1lStK3nB9Cn6S6ODb1ktGh7SRejsNVQVKX3t5d3tgOaX+aX1Iwy8FzM/ZEN8uCloeRifUGIY9uQFygg5mSw==", 293 293 "dependencies": { 294 - "@aws-sdk/credential-provider-env": "3.391.0", 295 - "@aws-sdk/credential-provider-process": "3.391.0", 296 - "@aws-sdk/credential-provider-sso": "3.391.0", 297 - "@aws-sdk/credential-provider-web-identity": "3.391.0", 298 - "@aws-sdk/types": "3.391.0", 294 + "@aws-sdk/credential-provider-env": "3.398.0", 295 + "@aws-sdk/credential-provider-process": "3.398.0", 296 + "@aws-sdk/credential-provider-sso": "3.398.0", 297 + "@aws-sdk/credential-provider-web-identity": "3.398.0", 298 + "@aws-sdk/types": "3.398.0", 299 299 "@smithy/credential-provider-imds": "^2.0.0", 300 300 "@smithy/property-provider": "^2.0.0", 301 301 "@smithy/shared-ini-file-loader": "^2.0.0", 302 - "@smithy/types": "^2.2.0", 302 + "@smithy/types": "^2.2.2", 303 303 "tslib": "^2.5.0" 304 304 }, 305 305 "engines": { ··· 307 307 } 308 308 }, 309 309 "node_modules/@aws-sdk/credential-provider-node": { 310 - "version": "3.391.0", 311 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.391.0.tgz", 312 - "integrity": "sha512-LXHQwsTw4WBwRzD9swu8254Hao5MoIaGXIzbhX4EQ84dtOkKYbwiY4pDpLfcHcw3B1lFKkVclMze8WAs4EdEww==", 310 + "version": "3.398.0", 311 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.398.0.tgz", 312 + "integrity": "sha512-odmI/DSKfuWUYeDnGTCEHBbC8/MwnF6yEq874zl6+owoVv0ZsYP8qBHfiJkYqrwg7wQ7Pi40sSAPC1rhesGwzg==", 313 313 "dependencies": { 314 - "@aws-sdk/credential-provider-env": "3.391.0", 315 - "@aws-sdk/credential-provider-ini": "3.391.0", 316 - "@aws-sdk/credential-provider-process": "3.391.0", 317 - "@aws-sdk/credential-provider-sso": "3.391.0", 318 - "@aws-sdk/credential-provider-web-identity": "3.391.0", 319 - "@aws-sdk/types": "3.391.0", 314 + "@aws-sdk/credential-provider-env": "3.398.0", 315 + "@aws-sdk/credential-provider-ini": "3.398.0", 316 + "@aws-sdk/credential-provider-process": "3.398.0", 317 + "@aws-sdk/credential-provider-sso": "3.398.0", 318 + "@aws-sdk/credential-provider-web-identity": "3.398.0", 319 + "@aws-sdk/types": "3.398.0", 320 320 "@smithy/credential-provider-imds": "^2.0.0", 321 321 "@smithy/property-provider": "^2.0.0", 322 322 "@smithy/shared-ini-file-loader": "^2.0.0", 323 - "@smithy/types": "^2.2.0", 323 + "@smithy/types": "^2.2.2", 324 324 "tslib": "^2.5.0" 325 325 }, 326 326 "engines": { ··· 328 328 } 329 329 }, 330 330 "node_modules/@aws-sdk/credential-provider-process": { 331 - "version": "3.391.0", 332 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.391.0.tgz", 333 - "integrity": "sha512-KMlzPlBI+hBmXDo+EoFZdLgCVRkRa9B9iEE6x0+hQQ6g9bW6HI7cDRVdceR1ZoPasSaNAZ9QOXMTIBxTpn0sPQ==", 331 + "version": "3.398.0", 332 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.398.0.tgz", 333 + "integrity": "sha512-WrkBL1W7TXN508PA9wRXPFtzmGpVSW98gDaHEaa8GolAPHMPa5t2QcC/z/cFpglzrcVv8SA277zu9Z8tELdZhg==", 334 334 "dependencies": { 335 - "@aws-sdk/types": "3.391.0", 335 + "@aws-sdk/types": "3.398.0", 336 336 "@smithy/property-provider": "^2.0.0", 337 337 "@smithy/shared-ini-file-loader": "^2.0.0", 338 - "@smithy/types": "^2.2.0", 338 + "@smithy/types": "^2.2.2", 339 339 "tslib": "^2.5.0" 340 340 }, 341 341 "engines": { ··· 343 343 } 344 344 }, 345 345 "node_modules/@aws-sdk/credential-provider-sso": { 346 - "version": "3.391.0", 347 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.391.0.tgz", 348 - "integrity": "sha512-FT/WoiRHiKys+FcRwvjui0yKuzNtJdn2uGuI1hYE0gpW1wVmW02ouufLckJTmcw09THUZ4w53OoCVU5OY00p8A==", 346 + "version": "3.398.0", 347 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.398.0.tgz", 348 + "integrity": "sha512-2Dl35587xbnzR/GGZqA2MnFs8+kS4wbHQO9BioU0okA+8NRueohNMdrdQmQDdSNK4BfIpFspiZmFkXFNyEAfgw==", 349 349 "dependencies": { 350 - "@aws-sdk/client-sso": "3.391.0", 351 - "@aws-sdk/token-providers": "3.391.0", 352 - "@aws-sdk/types": "3.391.0", 350 + "@aws-sdk/client-sso": "3.398.0", 351 + "@aws-sdk/token-providers": "3.398.0", 352 + "@aws-sdk/types": "3.398.0", 353 353 "@smithy/property-provider": "^2.0.0", 354 354 "@smithy/shared-ini-file-loader": "^2.0.0", 355 - "@smithy/types": "^2.2.0", 355 + "@smithy/types": "^2.2.2", 356 356 "tslib": "^2.5.0" 357 357 }, 358 358 "engines": { ··· 360 360 } 361 361 }, 362 362 "node_modules/@aws-sdk/credential-provider-web-identity": { 363 - "version": "3.391.0", 364 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.391.0.tgz", 365 - "integrity": "sha512-n0vYg82B8bc4rxKltVbVqclev7hx+elyS9pEnZs3YbnbWJq0qqsznXmDfLqd1TcWpa09PGXcah0nsRDolVThsA==", 363 + "version": "3.398.0", 364 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.398.0.tgz", 365 + "integrity": "sha512-iG3905Alv9pINbQ8/MIsshgqYMbWx+NDQWpxbIW3W0MkSH3iAqdVpSCteYidYX9G/jv2Um1nW3y360ib20bvNg==", 366 366 "dependencies": { 367 - "@aws-sdk/types": "3.391.0", 367 + "@aws-sdk/types": "3.398.0", 368 368 "@smithy/property-provider": "^2.0.0", 369 - "@smithy/types": "^2.2.0", 369 + "@smithy/types": "^2.2.2", 370 370 "tslib": "^2.5.0" 371 371 }, 372 372 "engines": { ··· 374 374 } 375 375 }, 376 376 "node_modules/@aws-sdk/credential-providers": { 377 - "version": "3.391.0", 378 - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.391.0.tgz", 379 - "integrity": "sha512-J2fh74zUC3qZnbZol95T9w9PTgmx9NfyIy5JVs43rISdvgnAkD9fXd6YbBfQOxl9Xx9HiZW7Fa3hTxma7d/zlA==", 377 + "version": "3.398.0", 378 + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.398.0.tgz", 379 + "integrity": "sha512-355vXmImn2e85mIWSYDVb101AF2lIVHKNCaH6sV1U/8i0ZOXh2cJYNdkRYrxNt1ezDB0k97lSKvuDx7RDvJyRg==", 380 380 "dependencies": { 381 - "@aws-sdk/client-cognito-identity": "3.391.0", 382 - "@aws-sdk/client-sso": "3.391.0", 383 - "@aws-sdk/client-sts": "3.391.0", 384 - "@aws-sdk/credential-provider-cognito-identity": "3.391.0", 385 - "@aws-sdk/credential-provider-env": "3.391.0", 386 - "@aws-sdk/credential-provider-ini": "3.391.0", 387 - "@aws-sdk/credential-provider-node": "3.391.0", 388 - "@aws-sdk/credential-provider-process": "3.391.0", 389 - "@aws-sdk/credential-provider-sso": "3.391.0", 390 - "@aws-sdk/credential-provider-web-identity": "3.391.0", 391 - "@aws-sdk/types": "3.391.0", 381 + "@aws-sdk/client-cognito-identity": "3.398.0", 382 + "@aws-sdk/client-sso": "3.398.0", 383 + "@aws-sdk/client-sts": "3.398.0", 384 + "@aws-sdk/credential-provider-cognito-identity": "3.398.0", 385 + "@aws-sdk/credential-provider-env": "3.398.0", 386 + "@aws-sdk/credential-provider-ini": "3.398.0", 387 + "@aws-sdk/credential-provider-node": "3.398.0", 388 + "@aws-sdk/credential-provider-process": "3.398.0", 389 + "@aws-sdk/credential-provider-sso": "3.398.0", 390 + "@aws-sdk/credential-provider-web-identity": "3.398.0", 391 + "@aws-sdk/types": "3.398.0", 392 392 "@smithy/credential-provider-imds": "^2.0.0", 393 393 "@smithy/property-provider": "^2.0.0", 394 - "@smithy/types": "^2.2.0", 394 + "@smithy/types": "^2.2.2", 395 395 "tslib": "^2.5.0" 396 396 }, 397 397 "engines": { ··· 399 399 } 400 400 }, 401 401 "node_modules/@aws-sdk/middleware-host-header": { 402 - "version": "3.391.0", 403 - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.391.0.tgz", 404 - "integrity": "sha512-+nyNr0rb2ixY7mU48nibr7L7gsw37y4oELhqgnNKhcjZDJ34imBwKIMFa64n21FdftmhcjR8IdSpzXE9xrkJ8g==", 402 + "version": "3.398.0", 403 + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.398.0.tgz", 404 + "integrity": "sha512-m+5laWdBaxIZK2ko0OwcCHJZJ5V1MgEIt8QVQ3k4/kOkN9ICjevOYmba751pHoTnbOYB7zQd6D2OT3EYEEsUcA==", 405 405 "dependencies": { 406 - "@aws-sdk/types": "3.391.0", 407 - "@smithy/protocol-http": "^2.0.3", 408 - "@smithy/types": "^2.2.0", 406 + "@aws-sdk/types": "3.398.0", 407 + "@smithy/protocol-http": "^2.0.5", 408 + "@smithy/types": "^2.2.2", 409 409 "tslib": "^2.5.0" 410 410 }, 411 411 "engines": { ··· 413 413 } 414 414 }, 415 415 "node_modules/@aws-sdk/middleware-logger": { 416 - "version": "3.391.0", 417 - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.391.0.tgz", 418 - "integrity": "sha512-KOwl5zo16b17JDhqILHBStccBQ2w35em7+/6vdkJdUII6OU8aVIFTlIQT9wOUvd4do6biIRBMZG3IK0Rg7mRDQ==", 416 + "version": "3.398.0", 417 + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.398.0.tgz", 418 + "integrity": "sha512-CiJjW+FL12elS6Pn7/UVjVK8HWHhXMfvHZvOwx/Qkpy340sIhkuzOO6fZEruECDTZhl2Wqn81XdJ1ZQ4pRKpCg==", 419 419 "dependencies": { 420 - "@aws-sdk/types": "3.391.0", 421 - "@smithy/types": "^2.2.0", 420 + "@aws-sdk/types": "3.398.0", 421 + "@smithy/types": "^2.2.2", 422 422 "tslib": "^2.5.0" 423 423 }, 424 424 "engines": { ··· 426 426 } 427 427 }, 428 428 "node_modules/@aws-sdk/middleware-recursion-detection": { 429 - "version": "3.391.0", 430 - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.391.0.tgz", 431 - "integrity": "sha512-hVR3z59G7pX4pjDQs9Ag1tMgbLeGXOzeAAaNP9fEtHSd3KBMAGQgN3K3b9WPjzE2W0EoloHRJMK4qxZErdde2g==", 429 + "version": "3.398.0", 430 + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.398.0.tgz", 431 + "integrity": "sha512-7QpOqPQAZNXDXv6vsRex4R8dLniL0E/80OPK4PPFsrCh9btEyhN9Begh4i1T+5lL28hmYkztLOkTQ2N5J3hgRQ==", 432 432 "dependencies": { 433 - "@aws-sdk/types": "3.391.0", 434 - "@smithy/protocol-http": "^2.0.3", 435 - "@smithy/types": "^2.2.0", 433 + "@aws-sdk/types": "3.398.0", 434 + "@smithy/protocol-http": "^2.0.5", 435 + "@smithy/types": "^2.2.2", 436 436 "tslib": "^2.5.0" 437 437 }, 438 438 "engines": { ··· 440 440 } 441 441 }, 442 442 "node_modules/@aws-sdk/middleware-sdk-sts": { 443 - "version": "3.391.0", 444 - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.391.0.tgz", 445 - "integrity": "sha512-6ZXI3Z4QU+TnT5PwKWloGmRHG81tWeI18/zxf9wWzrO2NhYFvITzEJH0vWLLiXdWtn/BYfLULXtDvkTaepbI5A==", 443 + "version": "3.398.0", 444 + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.398.0.tgz", 445 + "integrity": "sha512-+JH76XHEgfVihkY+GurohOQ5Z83zVN1nYcQzwCFnCDTh4dG4KwhnZKG+WPw6XJECocY0R+H0ivofeALHvVWJtQ==", 446 446 "dependencies": { 447 - "@aws-sdk/middleware-signing": "3.391.0", 448 - "@aws-sdk/types": "3.391.0", 449 - "@smithy/types": "^2.2.0", 447 + "@aws-sdk/middleware-signing": "3.398.0", 448 + "@aws-sdk/types": "3.398.0", 449 + "@smithy/types": "^2.2.2", 450 450 "tslib": "^2.5.0" 451 451 }, 452 452 "engines": { ··· 454 454 } 455 455 }, 456 456 "node_modules/@aws-sdk/middleware-signing": { 457 - "version": "3.391.0", 458 - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.391.0.tgz", 459 - "integrity": "sha512-2pAJJlZqaHc0d+cz2FTVrQmWi8ygKfqfczHUo/loCtOaMNtWXBHb/JsLEecs6cXdizy6gi3YsLz6VZYwY4Ssxw==", 457 + "version": "3.398.0", 458 + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.398.0.tgz", 459 + "integrity": "sha512-O0KqXAix1TcvZBFt1qoFkHMUNJOSgjJTYS7lFTRKSwgsD27bdW2TM2r9R8DAccWFt5Amjkdt+eOwQMIXPGTm8w==", 460 460 "dependencies": { 461 - "@aws-sdk/types": "3.391.0", 461 + "@aws-sdk/types": "3.398.0", 462 462 "@smithy/property-provider": "^2.0.0", 463 - "@smithy/protocol-http": "^2.0.3", 463 + "@smithy/protocol-http": "^2.0.5", 464 464 "@smithy/signature-v4": "^2.0.0", 465 - "@smithy/types": "^2.2.0", 465 + "@smithy/types": "^2.2.2", 466 466 "@smithy/util-middleware": "^2.0.0", 467 467 "tslib": "^2.5.0" 468 468 }, ··· 471 471 } 472 472 }, 473 473 "node_modules/@aws-sdk/middleware-user-agent": { 474 - "version": "3.391.0", 475 - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.391.0.tgz", 476 - "integrity": "sha512-LdK9uMNA14zqRw3B79Mhy7GX36qld/GYo93xuu+lr+AQ98leZEdc6GUbrtNDI3fP1Z8TMQcyHUKBml4/B+wXpQ==", 474 + "version": "3.398.0", 475 + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.398.0.tgz", 476 + "integrity": "sha512-nF1jg0L+18b5HvTcYzwyFgfZQQMELJINFqI0mi4yRKaX7T5a3aGp5RVLGGju/6tAGTuFbfBoEhkhU3kkxexPYQ==", 477 477 "dependencies": { 478 - "@aws-sdk/types": "3.391.0", 479 - "@aws-sdk/util-endpoints": "3.391.0", 480 - "@smithy/protocol-http": "^2.0.3", 481 - "@smithy/types": "^2.2.0", 478 + "@aws-sdk/types": "3.398.0", 479 + "@aws-sdk/util-endpoints": "3.398.0", 480 + "@smithy/protocol-http": "^2.0.5", 481 + "@smithy/types": "^2.2.2", 482 482 "tslib": "^2.5.0" 483 483 }, 484 484 "engines": { ··· 486 486 } 487 487 }, 488 488 "node_modules/@aws-sdk/token-providers": { 489 - "version": "3.391.0", 490 - "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.391.0.tgz", 491 - "integrity": "sha512-kgfArsKLDJE71qQjfXiHiM5cZqgDHlMsqEx35+A65GmTWJaS1PGDqu3ZvVVU8E5mxnCCLw7vho21fsjvH6TBpg==", 489 + "version": "3.398.0", 490 + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.398.0.tgz", 491 + "integrity": "sha512-nrYgjzavGCKJL/48Vt0EL+OlIc5UZLfNGpgyUW9cv3XZwl+kXV0QB+HH0rHZZLfpbBgZ2RBIJR9uD5ieu/6hpQ==", 492 492 "dependencies": { 493 493 "@aws-crypto/sha256-browser": "3.0.0", 494 494 "@aws-crypto/sha256-js": "3.0.0", 495 - "@aws-sdk/middleware-host-header": "3.391.0", 496 - "@aws-sdk/middleware-logger": "3.391.0", 497 - "@aws-sdk/middleware-recursion-detection": "3.391.0", 498 - "@aws-sdk/middleware-user-agent": "3.391.0", 499 - "@aws-sdk/types": "3.391.0", 500 - "@aws-sdk/util-endpoints": "3.391.0", 501 - "@aws-sdk/util-user-agent-browser": "3.391.0", 502 - "@aws-sdk/util-user-agent-node": "3.391.0", 503 - "@smithy/config-resolver": "^2.0.3", 504 - "@smithy/fetch-http-handler": "^2.0.3", 505 - "@smithy/hash-node": "^2.0.3", 506 - "@smithy/invalid-dependency": "^2.0.3", 507 - "@smithy/middleware-content-length": "^2.0.3", 508 - "@smithy/middleware-endpoint": "^2.0.3", 509 - "@smithy/middleware-retry": "^2.0.3", 510 - "@smithy/middleware-serde": "^2.0.3", 495 + "@aws-sdk/middleware-host-header": "3.398.0", 496 + "@aws-sdk/middleware-logger": "3.398.0", 497 + "@aws-sdk/middleware-recursion-detection": "3.398.0", 498 + "@aws-sdk/middleware-user-agent": "3.398.0", 499 + "@aws-sdk/types": "3.398.0", 500 + "@aws-sdk/util-endpoints": "3.398.0", 501 + "@aws-sdk/util-user-agent-browser": "3.398.0", 502 + "@aws-sdk/util-user-agent-node": "3.398.0", 503 + "@smithy/config-resolver": "^2.0.5", 504 + "@smithy/fetch-http-handler": "^2.0.5", 505 + "@smithy/hash-node": "^2.0.5", 506 + "@smithy/invalid-dependency": "^2.0.5", 507 + "@smithy/middleware-content-length": "^2.0.5", 508 + "@smithy/middleware-endpoint": "^2.0.5", 509 + "@smithy/middleware-retry": "^2.0.5", 510 + "@smithy/middleware-serde": "^2.0.5", 511 511 "@smithy/middleware-stack": "^2.0.0", 512 - "@smithy/node-config-provider": "^2.0.3", 513 - "@smithy/node-http-handler": "^2.0.3", 512 + "@smithy/node-config-provider": "^2.0.5", 513 + "@smithy/node-http-handler": "^2.0.5", 514 514 "@smithy/property-provider": "^2.0.0", 515 - "@smithy/protocol-http": "^2.0.3", 515 + "@smithy/protocol-http": "^2.0.5", 516 516 "@smithy/shared-ini-file-loader": "^2.0.0", 517 - "@smithy/smithy-client": "^2.0.3", 518 - "@smithy/types": "^2.2.0", 519 - "@smithy/url-parser": "^2.0.3", 517 + "@smithy/smithy-client": "^2.0.5", 518 + "@smithy/types": "^2.2.2", 519 + "@smithy/url-parser": "^2.0.5", 520 520 "@smithy/util-base64": "^2.0.0", 521 521 "@smithy/util-body-length-browser": "^2.0.0", 522 - "@smithy/util-body-length-node": "^2.0.0", 523 - "@smithy/util-defaults-mode-browser": "^2.0.3", 524 - "@smithy/util-defaults-mode-node": "^2.0.3", 522 + "@smithy/util-body-length-node": "^2.1.0", 523 + "@smithy/util-defaults-mode-browser": "^2.0.5", 524 + "@smithy/util-defaults-mode-node": "^2.0.5", 525 525 "@smithy/util-retry": "^2.0.0", 526 526 "@smithy/util-utf8": "^2.0.0", 527 527 "tslib": "^2.5.0" ··· 531 531 } 532 532 }, 533 533 "node_modules/@aws-sdk/types": { 534 - "version": "3.391.0", 535 - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.391.0.tgz", 536 - "integrity": "sha512-QpYVFKMOnzHz/JMj/b8wb18qxiT92U/5r5MmtRz2R3LOH6ooTO96k4ozXCrYr0qNed1PAnOj73rPrrH2wnCJKQ==", 534 + "version": "3.398.0", 535 + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.398.0.tgz", 536 + "integrity": "sha512-r44fkS+vsEgKCuEuTV+TIk0t0m5ZlXHNjSDYEUvzLStbbfUFiNus/YG4UCa0wOk9R7VuQI67badsvvPeVPCGDQ==", 537 537 "dependencies": { 538 - "@smithy/types": "^2.2.0", 538 + "@smithy/types": "^2.2.2", 539 539 "tslib": "^2.5.0" 540 540 }, 541 541 "engines": { ··· 543 543 } 544 544 }, 545 545 "node_modules/@aws-sdk/util-endpoints": { 546 - "version": "3.391.0", 547 - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.391.0.tgz", 548 - "integrity": "sha512-zv4sYDTQhNxyLoekcE02/nk3xvoo6yCHDy1kDJk0MFxOKaqUB+CvZdQBR4YBLSDlD4o4DUBmdYgKT58FfbM8sQ==", 546 + "version": "3.398.0", 547 + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.398.0.tgz", 548 + "integrity": "sha512-Fy0gLYAei/Rd6BrXG4baspCnWTUSd0NdokU1pZh4KlfEAEN1i8SPPgfiO5hLk7+2inqtCmqxVJlfqbMVe9k4bw==", 549 549 "dependencies": { 550 - "@aws-sdk/types": "3.391.0", 550 + "@aws-sdk/types": "3.398.0", 551 551 "tslib": "^2.5.0" 552 552 }, 553 553 "engines": { ··· 566 566 } 567 567 }, 568 568 "node_modules/@aws-sdk/util-user-agent-browser": { 569 - "version": "3.391.0", 570 - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.391.0.tgz", 571 - "integrity": "sha512-6ipHOB1WdCBNeAMJauN7l2qNE0WLVaTNhkD290/ElXm1FHGTL8yw6lIDIjhIFO1bmbZxDiKApwDiG7ROhaJoxQ==", 569 + "version": "3.398.0", 570 + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.398.0.tgz", 571 + "integrity": "sha512-A3Tzx1tkDHlBT+IgxmsMCHbV8LM7SwwCozq2ZjJRx0nqw3MCrrcxQFXldHeX/gdUMO+0Oocb7HGSnVODTq+0EA==", 572 572 "dependencies": { 573 - "@aws-sdk/types": "3.391.0", 574 - "@smithy/types": "^2.2.0", 573 + "@aws-sdk/types": "3.398.0", 574 + "@smithy/types": "^2.2.2", 575 575 "bowser": "^2.11.0", 576 576 "tslib": "^2.5.0" 577 577 } 578 578 }, 579 579 "node_modules/@aws-sdk/util-user-agent-node": { 580 - "version": "3.391.0", 581 - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.391.0.tgz", 582 - "integrity": "sha512-PVvAK/Lf4BdB1eJIZtyFpGSslGQwKpYt9/hKs5NlR+qxBMXU9T0DnTqH4GiXZaazvXr7OUVWitIF2b7iKBMTow==", 580 + "version": "3.398.0", 581 + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.398.0.tgz", 582 + "integrity": "sha512-RTVQofdj961ej4//fEkppFf4KXqKGMTCqJYghx3G0C/MYXbg7MGl7LjfNGtJcboRE8pfHHQ/TUWBDA7RIAPPlQ==", 583 583 "dependencies": { 584 - "@aws-sdk/types": "3.391.0", 585 - "@smithy/node-config-provider": "^2.0.3", 586 - "@smithy/types": "^2.2.0", 584 + "@aws-sdk/types": "3.398.0", 585 + "@smithy/node-config-provider": "^2.0.5", 586 + "@smithy/types": "^2.2.2", 587 587 "tslib": "^2.5.0" 588 588 }, 589 589 "engines": { ··· 691 691 } 692 692 }, 693 693 "node_modules/@babel/core": { 694 - "version": "7.22.10", 695 - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz", 696 - "integrity": "sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==", 694 + "version": "7.22.11", 695 + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.11.tgz", 696 + "integrity": "sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==", 697 697 "dependencies": { 698 698 "@ampproject/remapping": "^2.2.0", 699 699 "@babel/code-frame": "^7.22.10", 700 700 "@babel/generator": "^7.22.10", 701 701 "@babel/helper-compilation-targets": "^7.22.10", 702 702 "@babel/helper-module-transforms": "^7.22.9", 703 - "@babel/helpers": "^7.22.10", 704 - "@babel/parser": "^7.22.10", 703 + "@babel/helpers": "^7.22.11", 704 + "@babel/parser": "^7.22.11", 705 705 "@babel/template": "^7.22.5", 706 - "@babel/traverse": "^7.22.10", 707 - "@babel/types": "^7.22.10", 706 + "@babel/traverse": "^7.22.11", 707 + "@babel/types": "^7.22.11", 708 708 "convert-source-map": "^1.7.0", 709 709 "debug": "^4.1.0", 710 710 "gensync": "^1.0.0-beta.2", 711 - "json5": "^2.2.2", 711 + "json5": "^2.2.3", 712 712 "semver": "^6.3.1" 713 713 }, 714 714 "engines": { ··· 879 879 } 880 880 }, 881 881 "node_modules/@babel/helpers": { 882 - "version": "7.22.10", 883 - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz", 884 - "integrity": "sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==", 882 + "version": "7.22.11", 883 + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz", 884 + "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==", 885 885 "dependencies": { 886 886 "@babel/template": "^7.22.5", 887 - "@babel/traverse": "^7.22.10", 888 - "@babel/types": "^7.22.10" 887 + "@babel/traverse": "^7.22.11", 888 + "@babel/types": "^7.22.11" 889 889 }, 890 890 "engines": { 891 891 "node": ">=6.9.0" ··· 969 969 } 970 970 }, 971 971 "node_modules/@babel/parser": { 972 - "version": "7.22.10", 973 - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz", 974 - "integrity": "sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==", 972 + "version": "7.22.11", 973 + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.11.tgz", 974 + "integrity": "sha512-R5zb8eJIBPJriQtbH/htEQy4k7E2dHWlD2Y2VT07JCzwYZHBxV5ZYtM0UhXSNMT74LyxuM+b1jdL7pSesXbC/g==", 975 975 "bin": { 976 976 "parser": "bin/babel-parser.js" 977 977 }, ··· 1035 1035 } 1036 1036 }, 1037 1037 "node_modules/@babel/traverse": { 1038 - "version": "7.22.10", 1039 - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz", 1040 - "integrity": "sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==", 1038 + "version": "7.22.11", 1039 + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.11.tgz", 1040 + "integrity": "sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==", 1041 1041 "dependencies": { 1042 1042 "@babel/code-frame": "^7.22.10", 1043 1043 "@babel/generator": "^7.22.10", ··· 1045 1045 "@babel/helper-function-name": "^7.22.5", 1046 1046 "@babel/helper-hoist-variables": "^7.22.5", 1047 1047 "@babel/helper-split-export-declaration": "^7.22.6", 1048 - "@babel/parser": "^7.22.10", 1049 - "@babel/types": "^7.22.10", 1048 + "@babel/parser": "^7.22.11", 1049 + "@babel/types": "^7.22.11", 1050 1050 "debug": "^4.1.0", 1051 1051 "globals": "^11.1.0" 1052 1052 }, ··· 1055 1055 } 1056 1056 }, 1057 1057 "node_modules/@babel/types": { 1058 - "version": "7.22.10", 1059 - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz", 1060 - "integrity": "sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==", 1058 + "version": "7.22.11", 1059 + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz", 1060 + "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==", 1061 1061 "dependencies": { 1062 1062 "@babel/helper-string-parser": "^7.22.5", 1063 1063 "@babel/helper-validator-identifier": "^7.22.5", ··· 1162 1162 "node": ">= 14.18.0" 1163 1163 } 1164 1164 }, 1165 + "node_modules/@mongodb-js/saslprep": { 1166 + "version": "1.1.0", 1167 + "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.0.tgz", 1168 + "integrity": "sha512-Xfijy7HvfzzqiOAhAepF4SGN5e9leLkMvg/OPOF97XemjfVCYN/oWa75wnkc6mltMSTwY+XlbhWgUOJmkFspSw==", 1169 + "optional": true, 1170 + "dependencies": { 1171 + "sparse-bitfield": "^3.0.3" 1172 + } 1173 + }, 1165 1174 "node_modules/@mongosh/arg-parser": { 1166 - "version": "1.10.5", 1167 - "resolved": "https://registry.npmjs.org/@mongosh/arg-parser/-/arg-parser-1.10.5.tgz", 1168 - "integrity": "sha512-Bt40S0q9Lgcn3JGHmFndmXVPpbE3FiaiV1MF4H15EFNIr9jWav95h+GH7ECrIEf8LkPW6kN1FGYnF3vEgepYzg==", 1175 + "version": "1.10.6", 1176 + "resolved": "https://registry.npmjs.org/@mongosh/arg-parser/-/arg-parser-1.10.6.tgz", 1177 + "integrity": "sha512-z6rXCrsG3mvH8TyFn+j0pZwAlYPhTOYNgiG7X/Jf3YZdtGbu31HFXdG0SQcHpt+3D9AMLQDMrABSrHLDM4PqJA==", 1169 1178 "dependencies": { 1170 - "@mongosh/errors": "1.10.5", 1171 - "@mongosh/i18n": "1.10.5", 1179 + "@mongosh/errors": "1.10.6", 1180 + "@mongosh/i18n": "1.10.6", 1172 1181 "mongodb-connection-string-url": "^2.6.0" 1173 1182 }, 1174 1183 "engines": { ··· 1176 1185 } 1177 1186 }, 1178 1187 "node_modules/@mongosh/async-rewriter2": { 1179 - "version": "1.10.5", 1180 - "resolved": "https://registry.npmjs.org/@mongosh/async-rewriter2/-/async-rewriter2-1.10.5.tgz", 1181 - "integrity": "sha512-EO+YyzF2ZiCfA70cFNy0yhhxv8j4PwX+AOkL2IS07/j1xik4q2ipWXHIK5AHQKXUhaBqGxhwaa7/DSmSMMEABg==", 1188 + "version": "1.10.6", 1189 + "resolved": "https://registry.npmjs.org/@mongosh/async-rewriter2/-/async-rewriter2-1.10.6.tgz", 1190 + "integrity": "sha512-1cd08jGwxj5TWdOSaLHnh82aT3IAzE7SpdXNdPIS6x9f1bddljnW21HT7aqVyuaG5RtU9kckf8eqE0pbD65taQ==", 1182 1191 "dependencies": { 1183 1192 "@babel/core": "^7.22.8", 1184 1193 "@babel/plugin-transform-destructuring": "^7.22.5", ··· 1195 1204 } 1196 1205 }, 1197 1206 "node_modules/@mongosh/autocomplete": { 1198 - "version": "1.10.5", 1199 - "resolved": "https://registry.npmjs.org/@mongosh/autocomplete/-/autocomplete-1.10.5.tgz", 1200 - "integrity": "sha512-580e/PdaEaBnHL31HHxVALuLWKH9Cck7BfHRfBzxnmRPH94JwbEe8SvZrOtqQJXmuLiJsXEmMYe7MpNnKiE1Qg==", 1207 + "version": "1.10.6", 1208 + "resolved": "https://registry.npmjs.org/@mongosh/autocomplete/-/autocomplete-1.10.6.tgz", 1209 + "integrity": "sha512-mb1KgTMyfFb/WrBvaKLuBI3GbnlEkxC4JNqWSHW91nwvsrBY0rr13lSI/ENJX3CsrjzIC1DyxcY6J2um2UC7dw==", 1201 1210 "dependencies": { 1202 1211 "@mongodb-js/mongodb-constants": "^0.2.2", 1203 - "@mongosh/shell-api": "1.10.5", 1212 + "@mongosh/shell-api": "1.10.6", 1204 1213 "semver": "^7.5.4" 1205 1214 }, 1206 1215 "engines": { ··· 1208 1217 } 1209 1218 }, 1210 1219 "node_modules/@mongosh/cli-repl": { 1211 - "version": "1.10.5", 1212 - "resolved": "https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-1.10.5.tgz", 1213 - "integrity": "sha512-3M8zo027AYGsTYDEf3qEmZKwHjl7kIheJOCeqBIl/sRbUi8lqpfIWju2DgzePVX/jkKZgLEkcJcNGF22gDPZPQ==", 1220 + "version": "1.10.6", 1221 + "resolved": "https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-1.10.6.tgz", 1222 + "integrity": "sha512-zb3LvlWsxxorgyPl18jatdVQreBtYd3A/+h1XGiNQtwjZ0eKkw4MSZudmz+z0SfTqRVPDMJ7Fgxk2m522e1HWA==", 1214 1223 "dependencies": { 1215 - "@mongosh/arg-parser": "1.10.5", 1216 - "@mongosh/autocomplete": "1.10.5", 1217 - "@mongosh/editor": "1.10.5", 1218 - "@mongosh/errors": "1.10.5", 1219 - "@mongosh/history": "1.10.5", 1220 - "@mongosh/i18n": "1.10.5", 1221 - "@mongosh/js-multiline-to-singleline": "1.10.5", 1222 - "@mongosh/logging": "1.10.5", 1223 - "@mongosh/service-provider-core": "1.10.5", 1224 - "@mongosh/service-provider-server": "1.10.5", 1225 - "@mongosh/shell-api": "1.10.5", 1226 - "@mongosh/shell-evaluator": "1.10.5", 1227 - "@mongosh/snippet-manager": "1.10.5", 1228 - "@mongosh/types": "1.10.5", 1224 + "@mongosh/arg-parser": "1.10.6", 1225 + "@mongosh/autocomplete": "1.10.6", 1226 + "@mongosh/editor": "1.10.6", 1227 + "@mongosh/errors": "1.10.6", 1228 + "@mongosh/history": "1.10.6", 1229 + "@mongosh/i18n": "1.10.6", 1230 + "@mongosh/js-multiline-to-singleline": "1.10.6", 1231 + "@mongosh/logging": "1.10.6", 1232 + "@mongosh/service-provider-core": "1.10.6", 1233 + "@mongosh/service-provider-server": "1.10.6", 1234 + "@mongosh/shell-api": "1.10.6", 1235 + "@mongosh/shell-evaluator": "1.10.6", 1236 + "@mongosh/snippet-manager": "1.10.6", 1237 + "@mongosh/types": "1.10.6", 1229 1238 "analytics-node": "^5.1.2", 1230 1239 "ansi-escape-sequences": "^5.1.2", 1231 1240 "askcharacter": "^1.0.0", ··· 1255 1264 } 1256 1265 }, 1257 1266 "node_modules/@mongosh/editor": { 1258 - "version": "1.10.5", 1259 - "resolved": "https://registry.npmjs.org/@mongosh/editor/-/editor-1.10.5.tgz", 1260 - "integrity": "sha512-pAN+Cu7/fIiAhqaYE2eeMtr2pN2Im3+EgdmJyz2YezjTMvBPwRg7MsS2FU1cyD5bbqMfO9aEvmtQ8AD19UPkfQ==", 1267 + "version": "1.10.6", 1268 + "resolved": "https://registry.npmjs.org/@mongosh/editor/-/editor-1.10.6.tgz", 1269 + "integrity": "sha512-HcHGSuVB9Jh27fi27flMtVCj7K0hiTmA1Wauv3IRwLOm+5QsMahXRt8sDIb86kw0mYtDke/UD2lWbbg351skPQ==", 1261 1270 "dependencies": { 1262 - "@mongosh/js-multiline-to-singleline": "1.10.5", 1263 - "@mongosh/service-provider-core": "1.10.5", 1264 - "@mongosh/shell-api": "1.10.5", 1265 - "@mongosh/shell-evaluator": "1.10.5", 1266 - "@mongosh/types": "1.10.5", 1271 + "@mongosh/js-multiline-to-singleline": "1.10.6", 1272 + "@mongosh/service-provider-core": "1.10.6", 1273 + "@mongosh/shell-api": "1.10.6", 1274 + "@mongosh/shell-evaluator": "1.10.6", 1275 + "@mongosh/types": "1.10.6", 1267 1276 "js-beautify": "^1.14.0" 1268 1277 }, 1269 1278 "engines": { ··· 1271 1280 } 1272 1281 }, 1273 1282 "node_modules/@mongosh/errors": { 1274 - "version": "1.10.5", 1275 - "resolved": "https://registry.npmjs.org/@mongosh/errors/-/errors-1.10.5.tgz", 1276 - "integrity": "sha512-b9g/G/n5Oo5EOiW8i3CqC6pZUTHvFmD8fp0hG/LA0CXutvdzWHTLC3j8lEqqa6vByEj/GF12l9IPdBHs171wSw==", 1283 + "version": "1.10.6", 1284 + "resolved": "https://registry.npmjs.org/@mongosh/errors/-/errors-1.10.6.tgz", 1285 + "integrity": "sha512-QWkp+1pTbsritSk2eAgw5+6m6h+GtP9n7C+LaiVhOB7HfYSCNdI9OVvZXpBzRC9Cw0rMORUc1BwUL/OioRtaYw==", 1277 1286 "dependencies": { 1278 1287 "chalk": "^4.1.2", 1279 1288 "handlebars": "^4.7.7", ··· 1284 1293 } 1285 1294 }, 1286 1295 "node_modules/@mongosh/history": { 1287 - "version": "1.10.5", 1288 - "resolved": "https://registry.npmjs.org/@mongosh/history/-/history-1.10.5.tgz", 1289 - "integrity": "sha512-kc8QAMAT7vSYW/BvS8rftp7WD+jfvWNdNYTRKxpv8Vuo6JD8p5+L6HThyc/1IufldGYQ9J30Rvrc4x8Hxc50tg==", 1296 + "version": "1.10.6", 1297 + "resolved": "https://registry.npmjs.org/@mongosh/history/-/history-1.10.6.tgz", 1298 + "integrity": "sha512-lP6HauOMmmEr1TuHWbmBxFLT4ZHsEX3QxxvNU232LmH1XKNHOyr7G9oafAz/TnA49h+QNaRusKJwLEVMeI7Eaw==", 1290 1299 "dependencies": { 1291 1300 "mongodb-connection-string-url": "^2.6.0", 1292 1301 "mongodb-redact": "^0.2.2" ··· 1296 1305 } 1297 1306 }, 1298 1307 "node_modules/@mongosh/i18n": { 1299 - "version": "1.10.5", 1300 - "resolved": "https://registry.npmjs.org/@mongosh/i18n/-/i18n-1.10.5.tgz", 1301 - "integrity": "sha512-X+U+z5C41cn2ByMUSkS/k7depFiTT6bkR7/vyVPHVTS0JfrYwC1HIRTIB8O4HIhhriG9wt/nOQ8KIlGcYKezjg==", 1308 + "version": "1.10.6", 1309 + "resolved": "https://registry.npmjs.org/@mongosh/i18n/-/i18n-1.10.6.tgz", 1310 + "integrity": "sha512-xj9/3MV6+jzcg+9HnInmAAtYLQF+2B8WNjrs3i+QHY0zl2C/2Fr59g8lL/btArtEbhCG0S0KYerYQ+9whI8qvg==", 1302 1311 "dependencies": { 1303 - "@mongosh/errors": "1.10.5", 1312 + "@mongosh/errors": "1.10.6", 1304 1313 "mustache": "^4.0.0" 1305 1314 }, 1306 1315 "engines": { ··· 1308 1317 } 1309 1318 }, 1310 1319 "node_modules/@mongosh/js-multiline-to-singleline": { 1311 - "version": "1.10.5", 1312 - "resolved": "https://registry.npmjs.org/@mongosh/js-multiline-to-singleline/-/js-multiline-to-singleline-1.10.5.tgz", 1313 - "integrity": "sha512-jKbDw7XmQAYtJVdAgGlh+Gepn+lzVBlBQub68UYh/nagOe0QNNDXIdwr7Av39UF7gVBRH5hoC286VutMLJRtIA==", 1320 + "version": "1.10.6", 1321 + "resolved": "https://registry.npmjs.org/@mongosh/js-multiline-to-singleline/-/js-multiline-to-singleline-1.10.6.tgz", 1322 + "integrity": "sha512-4kX7y6kAMCM/wwt1J6v6t6/rLQn5bZ8Xfc8HJA4bDiWVMt7FyjlrqShtkDXEzOcBpn2NMTKFrW8nmh1Bj3WZ2w==", 1314 1323 "dependencies": { 1315 1324 "@babel/core": "^7.16.12", 1316 1325 "@babel/types": "^7.21.2" ··· 1320 1329 } 1321 1330 }, 1322 1331 "node_modules/@mongosh/logging": { 1323 - "version": "1.10.5", 1324 - "resolved": "https://registry.npmjs.org/@mongosh/logging/-/logging-1.10.5.tgz", 1325 - "integrity": "sha512-qZQzDafW3sSAwsg8RDSwQeopZiN90J4eXmgstmEBj+qgFbBdZXfPaQNyOA5HVf6Kt9zOJXCqafa7FPXCDmgNhA==", 1332 + "version": "1.10.6", 1333 + "resolved": "https://registry.npmjs.org/@mongosh/logging/-/logging-1.10.6.tgz", 1334 + "integrity": "sha512-QHvdyo2JC+1vb4y+G6civdx6UQSih5Ze+Myi63sHTNkTTEx7wf4qkRQm6qHNf++THxEjOB6Xmiq6V2J7WSfw4Q==", 1326 1335 "dependencies": { 1327 1336 "@mongodb-js/devtools-connect": "^2.3.1", 1328 - "@mongosh/errors": "1.10.5", 1329 - "@mongosh/history": "1.10.5", 1330 - "@mongosh/types": "1.10.5", 1337 + "@mongosh/errors": "1.10.6", 1338 + "@mongosh/history": "1.10.6", 1339 + "@mongosh/types": "1.10.6", 1331 1340 "mongodb-log-writer": "^1.3.0", 1332 1341 "mongodb-redact": "^0.2.2" 1333 1342 }, ··· 1336 1345 } 1337 1346 }, 1338 1347 "node_modules/@mongosh/service-provider-core": { 1339 - "version": "1.10.5", 1340 - "resolved": "https://registry.npmjs.org/@mongosh/service-provider-core/-/service-provider-core-1.10.5.tgz", 1341 - "integrity": "sha512-CPJ0U/R6yM99lx0X4M540tPn02QLg7S0Mqw4eVNzqAjpolNJBQSeec5Gd41TMwNU9MkWjUjDgSBtaacV103Fiw==", 1348 + "version": "1.10.6", 1349 + "resolved": "https://registry.npmjs.org/@mongosh/service-provider-core/-/service-provider-core-1.10.6.tgz", 1350 + "integrity": "sha512-x91v6CnrTRr7Y61sUG5jLLqjcizggBiDHjpwxxauVvDrcziTWDXc9gEolJcgLqs2Roch3sQBc96BWfCwzJkfGw==", 1342 1351 "dependencies": { 1343 1352 "@aws-sdk/credential-providers": "^3.347.1", 1344 - "@mongosh/errors": "1.10.5", 1353 + "@mongosh/errors": "1.10.6", 1345 1354 "bson": "^5.3.0", 1346 1355 "mongodb": "^5.7.0", 1347 1356 "mongodb-build-info": "^1.6.2" ··· 1354 1363 } 1355 1364 }, 1356 1365 "node_modules/@mongosh/service-provider-server": { 1357 - "version": "1.10.5", 1358 - "resolved": "https://registry.npmjs.org/@mongosh/service-provider-server/-/service-provider-server-1.10.5.tgz", 1359 - "integrity": "sha512-7ROp+9u7PEAdlwqU5VD4zWq3Mh/mtFD7/aJ6AlNRu5qeuQx5NDOOxPCSrej4O9hjvsQGwNT7Qhj6SC90n6vW9g==", 1366 + "version": "1.10.6", 1367 + "resolved": "https://registry.npmjs.org/@mongosh/service-provider-server/-/service-provider-server-1.10.6.tgz", 1368 + "integrity": "sha512-0L+byNyYYNORyDR64BTG5HgRBW3nle/vjJl0aSEvf2vWsUnZF9lijjTXw52JT8VQAoM8+i9xddwZodF/AMXP7Q==", 1360 1369 "dependencies": { 1361 1370 "@mongodb-js/devtools-connect": "^2.3.1", 1362 - "@mongosh/errors": "1.10.5", 1363 - "@mongosh/service-provider-core": "1.10.5", 1364 - "@mongosh/types": "1.10.5", 1371 + "@mongosh/errors": "1.10.6", 1372 + "@mongosh/service-provider-core": "1.10.6", 1373 + "@mongosh/types": "1.10.6", 1365 1374 "@types/sinon-chai": "^3.2.4", 1366 1375 "aws4": "^1.11.0", 1367 1376 "mongodb": "^5.7.0", ··· 1377 1386 } 1378 1387 }, 1379 1388 "node_modules/@mongosh/shell-api": { 1380 - "version": "1.10.5", 1381 - "resolved": "https://registry.npmjs.org/@mongosh/shell-api/-/shell-api-1.10.5.tgz", 1382 - "integrity": "sha512-SZypGBmMxrYciuBFwGCdhdTLmwbczZ3foULphLCG2g90BjRsxhMRe3dhLaZetfohVJz4jaGBITSIfFL3MHpmBw==", 1389 + "version": "1.10.6", 1390 + "resolved": "https://registry.npmjs.org/@mongosh/shell-api/-/shell-api-1.10.6.tgz", 1391 + "integrity": "sha512-bqC4mObT0Vt2ynmqYFBmbWOmxqZlHl3JMGambpSAst1aQM3uUDWWbmf1s9icyfvUwAzbXe7698nUuOkxW+2/Vw==", 1383 1392 "dependencies": { 1384 - "@mongosh/arg-parser": "1.10.5", 1385 - "@mongosh/errors": "1.10.5", 1386 - "@mongosh/history": "1.10.5", 1387 - "@mongosh/i18n": "1.10.5", 1388 - "@mongosh/service-provider-core": "1.10.5", 1393 + "@mongosh/arg-parser": "1.10.6", 1394 + "@mongosh/errors": "1.10.6", 1395 + "@mongosh/history": "1.10.6", 1396 + "@mongosh/i18n": "1.10.6", 1397 + "@mongosh/service-provider-core": "1.10.6", 1389 1398 "mongodb-redact": "^0.2.2" 1390 1399 }, 1391 1400 "engines": { ··· 1393 1402 } 1394 1403 }, 1395 1404 "node_modules/@mongosh/shell-evaluator": { 1396 - "version": "1.10.5", 1397 - "resolved": "https://registry.npmjs.org/@mongosh/shell-evaluator/-/shell-evaluator-1.10.5.tgz", 1398 - "integrity": "sha512-SAaY9lPPNK//kazce9+mRuRLV2ZMcPogku7luShqF4dVlpk4+OsouLEcvfcFUDGUXbC4RKByPMfoShdhjX0L/w==", 1405 + "version": "1.10.6", 1406 + "resolved": "https://registry.npmjs.org/@mongosh/shell-evaluator/-/shell-evaluator-1.10.6.tgz", 1407 + "integrity": "sha512-djFpyX5vnyivF7Sf4ywwsPDJ0xZjOFOK+lYFTqXVrO8POvoDNYbKsaXs4Y6Ktd0mA5O1Zj/bXNbPDWHirpXy6g==", 1399 1408 "dependencies": { 1400 - "@mongosh/async-rewriter2": "1.10.5", 1401 - "@mongosh/history": "1.10.5", 1402 - "@mongosh/shell-api": "1.10.5" 1409 + "@mongosh/async-rewriter2": "1.10.6", 1410 + "@mongosh/history": "1.10.6", 1411 + "@mongosh/shell-api": "1.10.6" 1403 1412 }, 1404 1413 "engines": { 1405 1414 "node": ">=14.15.1" 1406 1415 } 1407 1416 }, 1408 1417 "node_modules/@mongosh/snippet-manager": { 1409 - "version": "1.10.5", 1410 - "resolved": "https://registry.npmjs.org/@mongosh/snippet-manager/-/snippet-manager-1.10.5.tgz", 1411 - "integrity": "sha512-TunA2xBclarEzaCSiv50LzdshmK0rBgYqK53qriVrnUeGEQpd6EvgTZN2F+wSpC0FJjLIkKT871amtPsjM5sJQ==", 1418 + "version": "1.10.6", 1419 + "resolved": "https://registry.npmjs.org/@mongosh/snippet-manager/-/snippet-manager-1.10.6.tgz", 1420 + "integrity": "sha512-QcOf5XTwAQ3FDeBL9Jniew1pKTDBehLb9eq5hOmNuNtoLrNAu10gsqBkfEPrQ4x3F+TJpaIVQo3ULAahSYSitA==", 1412 1421 "dependencies": { 1413 - "@mongosh/errors": "1.10.5", 1414 - "@mongosh/shell-api": "1.10.5", 1415 - "@mongosh/types": "1.10.5", 1422 + "@mongosh/errors": "1.10.6", 1423 + "@mongosh/shell-api": "1.10.6", 1424 + "@mongosh/types": "1.10.6", 1416 1425 "bson": "^5.3.0", 1417 1426 "cross-spawn": "^7.0.3", 1418 1427 "escape-string-regexp": "^4.0.0", ··· 1425 1434 } 1426 1435 }, 1427 1436 "node_modules/@mongosh/types": { 1428 - "version": "1.10.5", 1429 - "resolved": "https://registry.npmjs.org/@mongosh/types/-/types-1.10.5.tgz", 1430 - "integrity": "sha512-HQ5GUV8b4gMVlPXsqcfGCVwEK8i2DXHvSevv4RHx5ZwC19q+zt0urPqBKQHXpztmyQKnDWyNb+wwyJkhP9UKzA==", 1437 + "version": "1.10.6", 1438 + "resolved": "https://registry.npmjs.org/@mongosh/types/-/types-1.10.6.tgz", 1439 + "integrity": "sha512-v6gRl1ek8ioWhyo8tTs1EQwGdGKSUBmUXbPSRjqFqVITkJ8kFDu0+qRoms2m4VHvIv9ml//VqHHvBTj8Mjxx9A==", 1431 1440 "dependencies": { 1432 1441 "@mongodb-js/devtools-connect": "^2.3.1" 1433 1442 }, ··· 1468 1477 "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" 1469 1478 }, 1470 1479 "node_modules/@smithy/abort-controller": { 1471 - "version": "2.0.4", 1472 - "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.0.4.tgz", 1473 - "integrity": "sha512-3+3/xRQ0K/NFVtKSiTGsUa3muZnVaBmHrLNgxwoBLZO9rNhwZtjjjf7pFJ6aoucoul/c/w3xobRkgi8F9MWX8Q==", 1480 + "version": "2.0.5", 1481 + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.0.5.tgz", 1482 + "integrity": "sha512-byVZ2KWLMPYAZGKjRpniAzLcygJO4ruClZKdJTuB0eCB76ONFTdptBHlviHpAZXknRz7skYWPfcgO9v30A1SyA==", 1474 1483 "dependencies": { 1475 - "@smithy/types": "^2.2.1", 1484 + "@smithy/types": "^2.2.2", 1476 1485 "tslib": "^2.5.0" 1477 1486 }, 1478 1487 "engines": { ··· 1480 1489 } 1481 1490 }, 1482 1491 "node_modules/@smithy/config-resolver": { 1483 - "version": "2.0.4", 1484 - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.0.4.tgz", 1485 - "integrity": "sha512-JtKWIKoCFeOY5JGQeEl81AKdIpzeLLSjSMmO5yoKqc58Yn3cxmteylT6Elba3FgAHjK1OthARRXz5JXaKKRB7g==", 1492 + "version": "2.0.5", 1493 + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.0.5.tgz", 1494 + "integrity": "sha512-n0c2AXz+kjALY2FQr7Zy9zhYigXzboIh1AuUUVCqFBKFtdEvTwnwPXrTDoEehLiRTUHNL+4yzZ3s+D0kKYSLSg==", 1486 1495 "dependencies": { 1487 - "@smithy/types": "^2.2.1", 1496 + "@smithy/types": "^2.2.2", 1488 1497 "@smithy/util-config-provider": "^2.0.0", 1489 1498 "@smithy/util-middleware": "^2.0.0", 1490 1499 "tslib": "^2.5.0" ··· 1494 1503 } 1495 1504 }, 1496 1505 "node_modules/@smithy/credential-provider-imds": { 1497 - "version": "2.0.4", 1498 - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.0.4.tgz", 1499 - "integrity": "sha512-vW7xoDKZwjjf/2GCwVf/uvZce/QJOAYan9r8UsqlzOrnnpeS2ffhxeZjLK0/emZu8n6qU3amGgZ/BTo3oVtEyQ==", 1506 + "version": "2.0.5", 1507 + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.0.5.tgz", 1508 + "integrity": "sha512-KFcf/e0meFkQNyteJ65f1G19sgUEY1e5zL7hyAEUPz2SEfBmC9B37WyRq87G3MEEsvmAWwCRu7nFFYUKtR3svQ==", 1500 1509 "dependencies": { 1501 - "@smithy/node-config-provider": "^2.0.4", 1502 - "@smithy/property-provider": "^2.0.4", 1503 - "@smithy/types": "^2.2.1", 1504 - "@smithy/url-parser": "^2.0.4", 1510 + "@smithy/node-config-provider": "^2.0.5", 1511 + "@smithy/property-provider": "^2.0.5", 1512 + "@smithy/types": "^2.2.2", 1513 + "@smithy/url-parser": "^2.0.5", 1505 1514 "tslib": "^2.5.0" 1506 1515 }, 1507 1516 "engines": { ··· 1509 1518 } 1510 1519 }, 1511 1520 "node_modules/@smithy/eventstream-codec": { 1512 - "version": "2.0.4", 1513 - "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.0.4.tgz", 1514 - "integrity": "sha512-DkVLcQjhOxPj/4pf2hNj2kvOeoLczirHe57g7czMNJCUBvg9cpU9hNgqS37Y5sjdEtMSa2oTyCS5oeHZtKgoIw==", 1521 + "version": "2.0.5", 1522 + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.0.5.tgz", 1523 + "integrity": "sha512-iqR6OuOV3zbQK8uVs9o+9AxhVk8kW9NAxA71nugwUB+kTY9C35pUd0A5/m4PRT0Y0oIW7W4kgnSR3fdYXQjECw==", 1515 1524 "dependencies": { 1516 1525 "@aws-crypto/crc32": "3.0.0", 1517 - "@smithy/types": "^2.2.1", 1526 + "@smithy/types": "^2.2.2", 1518 1527 "@smithy/util-hex-encoding": "^2.0.0", 1519 1528 "tslib": "^2.5.0" 1520 1529 } 1521 1530 }, 1522 1531 "node_modules/@smithy/fetch-http-handler": { 1523 - "version": "2.0.4", 1524 - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.0.4.tgz", 1525 - "integrity": "sha512-1dwR8T+QMe5Gs60NpZgF7ReZp0SXz1O/aX5BdDhsOJh72fi3Bx2UZlDihCdb++9vPyBRMXFRF7I8/C4x8iIm8A==", 1532 + "version": "2.0.5", 1533 + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.0.5.tgz", 1534 + "integrity": "sha512-EzFoMowdBNy1VqtvkiXgPFEdosIAt4/4bgZ8uiDiUyfhmNXq/3bV+CagPFFBsgFOR/X2XK4zFZHRsoa7PNHVVg==", 1526 1535 "dependencies": { 1527 - "@smithy/protocol-http": "^2.0.4", 1528 - "@smithy/querystring-builder": "^2.0.4", 1529 - "@smithy/types": "^2.2.1", 1536 + "@smithy/protocol-http": "^2.0.5", 1537 + "@smithy/querystring-builder": "^2.0.5", 1538 + "@smithy/types": "^2.2.2", 1530 1539 "@smithy/util-base64": "^2.0.0", 1531 1540 "tslib": "^2.5.0" 1532 1541 } 1533 1542 }, 1534 1543 "node_modules/@smithy/hash-node": { 1535 - "version": "2.0.4", 1536 - "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.0.4.tgz", 1537 - "integrity": "sha512-vZ6a/fvEAFJKNtxJsn0I2WM8uBdypLLhLTpP4BA6fRsBAtwIl5S4wTt0Hspy6uGNn/74LmCxGmFSTMMbSd7ZDA==", 1544 + "version": "2.0.5", 1545 + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.0.5.tgz", 1546 + "integrity": "sha512-mk551hIywBITT+kXruRNXk7f8Fy7DTzBjZJSr/V6nolYKmUHIG3w5QU6nO9qPYEQGKc/yEPtkpdS28ndeG93lA==", 1538 1547 "dependencies": { 1539 - "@smithy/types": "^2.2.1", 1548 + "@smithy/types": "^2.2.2", 1540 1549 "@smithy/util-buffer-from": "^2.0.0", 1541 1550 "@smithy/util-utf8": "^2.0.0", 1542 1551 "tslib": "^2.5.0" ··· 1546 1555 } 1547 1556 }, 1548 1557 "node_modules/@smithy/invalid-dependency": { 1549 - "version": "2.0.4", 1550 - "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.0.4.tgz", 1551 - "integrity": "sha512-zfbPPZFiZvhIXJYKlzQwDUnxmWK/SmyDcM6iQJRZHU2jQZAzhHUXFGIu2lKH9L02VUqysOgQi3S/HY4fhrVT8w==", 1558 + "version": "2.0.5", 1559 + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.0.5.tgz", 1560 + "integrity": "sha512-0wEi+JT0hM+UUwrJVYbqjuGFhy5agY/zXyiN7BNAJ1XoCDjU5uaNSj8ekPWsXd/d4yM6NSe8UbPd8cOc1+3oBQ==", 1552 1561 "dependencies": { 1553 - "@smithy/types": "^2.2.1", 1562 + "@smithy/types": "^2.2.2", 1554 1563 "tslib": "^2.5.0" 1555 1564 } 1556 1565 }, ··· 1566 1575 } 1567 1576 }, 1568 1577 "node_modules/@smithy/middleware-content-length": { 1569 - "version": "2.0.4", 1570 - "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.0.4.tgz", 1571 - "integrity": "sha512-Pdd+fhRbvizqsgYJ0pLWE6hjhq42wDFWzMj/1T7mEY9tG9bP6/AcdsQK8SAOckrBLURDoeSqTAwPKalsgcZBxw==", 1578 + "version": "2.0.5", 1579 + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.0.5.tgz", 1580 + "integrity": "sha512-E7VwV5H02fgZIUGRli4GevBCAPvkyEI/fgl9SU47nPPi3DAAX3nEtUb8xfGbXjOcJ5BdSUoWWZn42tEd/blOqA==", 1572 1581 "dependencies": { 1573 - "@smithy/protocol-http": "^2.0.4", 1574 - "@smithy/types": "^2.2.1", 1582 + "@smithy/protocol-http": "^2.0.5", 1583 + "@smithy/types": "^2.2.2", 1575 1584 "tslib": "^2.5.0" 1576 1585 }, 1577 1586 "engines": { ··· 1579 1588 } 1580 1589 }, 1581 1590 "node_modules/@smithy/middleware-endpoint": { 1582 - "version": "2.0.4", 1583 - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.0.4.tgz", 1584 - "integrity": "sha512-aLPqkqKjZQ1V718P0Ostpp53nWfwK32uD0HFKSAOT25RvL285dqzGl0PAKDXpyLsPsPmHe0Yrg0AUFkRv4CRbQ==", 1591 + "version": "2.0.5", 1592 + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.0.5.tgz", 1593 + "integrity": "sha512-tyzDuoNTbsMQCq5Xkc4QOt6e2GACUllQIV8SQ5fc59FtOIV9/vbf58/GxVjZm2o8+MMbdDBANjTDZe/ijZKfyA==", 1585 1594 "dependencies": { 1586 - "@smithy/middleware-serde": "^2.0.4", 1587 - "@smithy/types": "^2.2.1", 1588 - "@smithy/url-parser": "^2.0.4", 1595 + "@smithy/middleware-serde": "^2.0.5", 1596 + "@smithy/types": "^2.2.2", 1597 + "@smithy/url-parser": "^2.0.5", 1589 1598 "@smithy/util-middleware": "^2.0.0", 1590 1599 "tslib": "^2.5.0" 1591 1600 }, ··· 1594 1603 } 1595 1604 }, 1596 1605 "node_modules/@smithy/middleware-retry": { 1597 - "version": "2.0.4", 1598 - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.0.4.tgz", 1599 - "integrity": "sha512-stozO6NgH9W/OSfFMOJEtlJCsnJFSoGyV4LHzIVQeXTzZ2RHjmytQ/Ez7GngHGZ1YsB4zxE1qDTXAU0AlaKf2w==", 1606 + "version": "2.0.5", 1607 + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.0.5.tgz", 1608 + "integrity": "sha512-ulIfbFyzQTVnJbLjUl1CTSi0etg6tej/ekwaLp0Gn8ybUkDkKYa+uB6CF/m2J5B6meRwyJlsryR+DjaOVyiicg==", 1600 1609 "dependencies": { 1601 - "@smithy/protocol-http": "^2.0.4", 1610 + "@smithy/protocol-http": "^2.0.5", 1602 1611 "@smithy/service-error-classification": "^2.0.0", 1603 - "@smithy/types": "^2.2.1", 1612 + "@smithy/types": "^2.2.2", 1604 1613 "@smithy/util-middleware": "^2.0.0", 1605 1614 "@smithy/util-retry": "^2.0.0", 1606 1615 "tslib": "^2.5.0", ··· 1611 1620 } 1612 1621 }, 1613 1622 "node_modules/@smithy/middleware-serde": { 1614 - "version": "2.0.4", 1615 - "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.0.4.tgz", 1616 - "integrity": "sha512-oDttJMMES7yXmopjQHnqTkxu8vZOdjB9VpSj94Ff4/GXdKQH7ozKLNIPq4C568nbeQbBt/gsLb6Ttbx1+j+JPQ==", 1623 + "version": "2.0.5", 1624 + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.0.5.tgz", 1625 + "integrity": "sha512-in0AA5sous74dOfTGU9rMJBXJ0bDVNxwdXtEt5lh3FVd2sEyjhI+rqpLLRF1E4ixbw3RSEf80hfRpcPdjg4vvQ==", 1617 1626 "dependencies": { 1618 - "@smithy/types": "^2.2.1", 1627 + "@smithy/types": "^2.2.2", 1619 1628 "tslib": "^2.5.0" 1620 1629 }, 1621 1630 "engines": { ··· 1634 1643 } 1635 1644 }, 1636 1645 "node_modules/@smithy/node-config-provider": { 1637 - "version": "2.0.4", 1638 - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.0.4.tgz", 1639 - "integrity": "sha512-s9O90cEhkpzZulvdHBBaroZ6AJ5uV6qtmycgYKP1yOCSfPHGIWYwaULdbfxraUsvzCcnMosDNkfckqXYoKI6jw==", 1646 + "version": "2.0.5", 1647 + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.0.5.tgz", 1648 + "integrity": "sha512-LRtjV9WkhONe2lVy+ipB/l1GX60ybzBmFyeRUoLUXWKdnZ3o81jsnbKzMK8hKq8eFSWPk+Lmyx6ZzCQabGeLxg==", 1640 1649 "dependencies": { 1641 - "@smithy/property-provider": "^2.0.4", 1642 - "@smithy/shared-ini-file-loader": "^2.0.4", 1643 - "@smithy/types": "^2.2.1", 1650 + "@smithy/property-provider": "^2.0.5", 1651 + "@smithy/shared-ini-file-loader": "^2.0.5", 1652 + "@smithy/types": "^2.2.2", 1644 1653 "tslib": "^2.5.0" 1645 1654 }, 1646 1655 "engines": { ··· 1648 1657 } 1649 1658 }, 1650 1659 "node_modules/@smithy/node-http-handler": { 1651 - "version": "2.0.4", 1652 - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.0.4.tgz", 1653 - "integrity": "sha512-svqeqkGgQz1B2m3IurHtp1O8vfuUGbqw6vynFmOrvPirRdiIPukHTZW1GN/JuBCtDpq9mNPutSVipfz2n4sZbQ==", 1660 + "version": "2.0.5", 1661 + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.0.5.tgz", 1662 + "integrity": "sha512-lZm5DZf4b3V0saUw9WTC4/du887P6cy2fUyQgQQKRRV6OseButyD5yTzeMmXE53CaXJBMBsUvvIQ0hRVxIq56w==", 1654 1663 "dependencies": { 1655 - "@smithy/abort-controller": "^2.0.4", 1656 - "@smithy/protocol-http": "^2.0.4", 1657 - "@smithy/querystring-builder": "^2.0.4", 1658 - "@smithy/types": "^2.2.1", 1664 + "@smithy/abort-controller": "^2.0.5", 1665 + "@smithy/protocol-http": "^2.0.5", 1666 + "@smithy/querystring-builder": "^2.0.5", 1667 + "@smithy/types": "^2.2.2", 1659 1668 "tslib": "^2.5.0" 1660 1669 }, 1661 1670 "engines": { ··· 1663 1672 } 1664 1673 }, 1665 1674 "node_modules/@smithy/property-provider": { 1666 - "version": "2.0.4", 1667 - "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.0.4.tgz", 1668 - "integrity": "sha512-OfaUIhnyvOkuCPHWMPkJqX++dUaDKsiZWuZqCdU04Z9dNAl2TtZAh7dw2rsZGb57vq6YH3PierNrDfQJTAKYtg==", 1675 + "version": "2.0.5", 1676 + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.0.5.tgz", 1677 + "integrity": "sha512-cAFSUhX6aiHcmpWfrCLKvwBtgN1F6A0N8qY/8yeSi0LRLmhGqsY1/YTxFE185MCVzYbqBGXVr9TBv4RUcIV4rA==", 1669 1678 "dependencies": { 1670 - "@smithy/types": "^2.2.1", 1679 + "@smithy/types": "^2.2.2", 1671 1680 "tslib": "^2.5.0" 1672 1681 }, 1673 1682 "engines": { ··· 1675 1684 } 1676 1685 }, 1677 1686 "node_modules/@smithy/protocol-http": { 1678 - "version": "2.0.4", 1679 - "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-2.0.4.tgz", 1680 - "integrity": "sha512-I1vCZ/m1U424gA9TXkL/pJ3HlRfujY8+Oj3GfDWcrNiWVmAeyx3CTvXw+yMHp2X01BOOu5fnyAa6JwAn1O+txA==", 1687 + "version": "2.0.5", 1688 + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-2.0.5.tgz", 1689 + "integrity": "sha512-d2hhHj34mA2V86doiDfrsy2fNTnUOowGaf9hKb0hIPHqvcnShU4/OSc4Uf1FwHkAdYF3cFXTrj5VGUYbEuvMdw==", 1681 1690 "dependencies": { 1682 - "@smithy/types": "^2.2.1", 1691 + "@smithy/types": "^2.2.2", 1683 1692 "tslib": "^2.5.0" 1684 1693 }, 1685 1694 "engines": { ··· 1687 1696 } 1688 1697 }, 1689 1698 "node_modules/@smithy/querystring-builder": { 1690 - "version": "2.0.4", 1691 - "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.0.4.tgz", 1692 - "integrity": "sha512-Jc7UPx1pNeisYcABkoo2Pn4kvomy1UI7uxv7R+1W3806KMAKgYHutWmZG01aPHu2XH0zY2RF2KfGiuialsxHvA==", 1699 + "version": "2.0.5", 1700 + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.0.5.tgz", 1701 + "integrity": "sha512-4DCX9krxLzATj+HdFPC3i8pb7XTAWzzKqSw8aTZMjXjtQY+vhe4azMAqIvbb6g7JKwIkmkRAjK6EXO3YWSnJVQ==", 1693 1702 "dependencies": { 1694 - "@smithy/types": "^2.2.1", 1703 + "@smithy/types": "^2.2.2", 1695 1704 "@smithy/util-uri-escape": "^2.0.0", 1696 1705 "tslib": "^2.5.0" 1697 1706 }, ··· 1700 1709 } 1701 1710 }, 1702 1711 "node_modules/@smithy/querystring-parser": { 1703 - "version": "2.0.4", 1704 - "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.0.4.tgz", 1705 - "integrity": "sha512-Uh6+PhGxSo17qe2g/JlyoekvTHKn7dYWfmHqUzPAvkW+dHlc3DNVG3++PV48z33lCo5YDVBBturWQ9N/TKn+EA==", 1712 + "version": "2.0.5", 1713 + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.0.5.tgz", 1714 + "integrity": "sha512-C2stCULH0r54KBksv3AWcN8CLS3u9+WsEW8nBrvctrJ5rQTNa1waHkffpVaiKvcW2nP0aIMBPCobD/kYf/q9mA==", 1706 1715 "dependencies": { 1707 - "@smithy/types": "^2.2.1", 1716 + "@smithy/types": "^2.2.2", 1708 1717 "tslib": "^2.5.0" 1709 1718 }, 1710 1719 "engines": { ··· 1720 1729 } 1721 1730 }, 1722 1731 "node_modules/@smithy/shared-ini-file-loader": { 1723 - "version": "2.0.4", 1724 - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.0.4.tgz", 1725 - "integrity": "sha512-091yneupXnSqvAU+vLG7h0g4QRRO6TjulpECXYVU6yW/LiNp7QE533DBpaphmbtI6tTC4EfGrhn35gTa0w+GQg==", 1732 + "version": "2.0.5", 1733 + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.0.5.tgz", 1734 + "integrity": "sha512-Mvtk6FwMtfbKRC4YuSsIqRYp9WTxsSUJVVo2djgyhcacKGMqicHDWSAmgy3sDrKv+G/G6xTZCPwm6pJARtdxVg==", 1726 1735 "dependencies": { 1727 - "@smithy/types": "^2.2.1", 1736 + "@smithy/types": "^2.2.2", 1728 1737 "tslib": "^2.5.0" 1729 1738 }, 1730 1739 "engines": { ··· 1732 1741 } 1733 1742 }, 1734 1743 "node_modules/@smithy/signature-v4": { 1735 - "version": "2.0.4", 1736 - "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.0.4.tgz", 1737 - "integrity": "sha512-y2xblkS0hb44QJDn9YjPp5aRFYSiI7w0bI3tATE3ybOrII2fppqD0SE3zgvew/B/3rTunuiCW+frTD0W4UYb9Q==", 1744 + "version": "2.0.5", 1745 + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.0.5.tgz", 1746 + "integrity": "sha512-ABIzXmUDXK4n2c9cXjQLELgH2RdtABpYKT+U131e2I6RbCypFZmxIHmIBufJzU2kdMCQ3+thBGDWorAITFW04A==", 1738 1747 "dependencies": { 1739 - "@smithy/eventstream-codec": "^2.0.4", 1748 + "@smithy/eventstream-codec": "^2.0.5", 1740 1749 "@smithy/is-array-buffer": "^2.0.0", 1741 - "@smithy/types": "^2.2.1", 1750 + "@smithy/types": "^2.2.2", 1742 1751 "@smithy/util-hex-encoding": "^2.0.0", 1743 1752 "@smithy/util-middleware": "^2.0.0", 1744 1753 "@smithy/util-uri-escape": "^2.0.0", ··· 1750 1759 } 1751 1760 }, 1752 1761 "node_modules/@smithy/smithy-client": { 1753 - "version": "2.0.4", 1754 - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.0.4.tgz", 1755 - "integrity": "sha512-Dg1dkqyj3jwa03RFs6E4ASmfQ7CjplbGISJIJNSt3F8NfIid2RalbeCMOIHK7VagKh9qngZNyoKxObZC9LB9Lg==", 1762 + "version": "2.0.5", 1763 + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.0.5.tgz", 1764 + "integrity": "sha512-kCTFr8wfOAWKDzGvfBElc6shHigWtHNhMQ1IbosjC4jOlayFyZMSs2PysKB+Ox/dhQ41KqOzgVjgiQ+PyWqHMQ==", 1756 1765 "dependencies": { 1757 1766 "@smithy/middleware-stack": "^2.0.0", 1758 - "@smithy/types": "^2.2.1", 1759 - "@smithy/util-stream": "^2.0.4", 1767 + "@smithy/types": "^2.2.2", 1768 + "@smithy/util-stream": "^2.0.5", 1760 1769 "tslib": "^2.5.0" 1761 1770 }, 1762 1771 "engines": { ··· 1764 1773 } 1765 1774 }, 1766 1775 "node_modules/@smithy/types": { 1767 - "version": "2.2.1", 1768 - "resolved": "https://registry.npmjs.org/@smithy/types/-/types-2.2.1.tgz", 1769 - "integrity": "sha512-6nyDOf027ZeJiQVm6PXmLm7dR+hR2YJUkr4VwUniXA8xZUGAu5Mk0zfx2BPFrt+e5YauvlIqQoH0CsrM4tLkfg==", 1776 + "version": "2.2.2", 1777 + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-2.2.2.tgz", 1778 + "integrity": "sha512-4PS0y1VxDnELGHGgBWlDksB2LJK8TG8lcvlWxIsgR+8vROI7Ms8h1P4FQUx+ftAX2QZv5g1CJCdhdRmQKyonyw==", 1770 1779 "dependencies": { 1771 1780 "tslib": "^2.5.0" 1772 1781 }, ··· 1775 1784 } 1776 1785 }, 1777 1786 "node_modules/@smithy/url-parser": { 1778 - "version": "2.0.4", 1779 - "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.0.4.tgz", 1780 - "integrity": "sha512-puIQ6+TJpI2AAPw7IGdGG6d2DEcVP5nJqa1VjrxzUcy2Jx7LtGn+gDHY2o9Pc9vQkmoicovTEKgvv7CdqP+0gg==", 1787 + "version": "2.0.5", 1788 + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.0.5.tgz", 1789 + "integrity": "sha512-OdMBvZhpckQSkugCXNJQCvqJ71wE7Ftxce92UOQLQ9pwF6hoS5PLL7wEfpnuEXtStzBqJYkzu1C1ZfjuFGOXAA==", 1781 1790 "dependencies": { 1782 - "@smithy/querystring-parser": "^2.0.4", 1783 - "@smithy/types": "^2.2.1", 1791 + "@smithy/querystring-parser": "^2.0.5", 1792 + "@smithy/types": "^2.2.2", 1784 1793 "tslib": "^2.5.0" 1785 1794 } 1786 1795 }, ··· 1805 1814 } 1806 1815 }, 1807 1816 "node_modules/@smithy/util-body-length-node": { 1808 - "version": "2.0.0", 1809 - "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-2.0.0.tgz", 1810 - "integrity": "sha512-ZV7Z/WHTMxHJe/xL/56qZwSUcl63/5aaPAGjkfynJm4poILjdD4GmFI+V+YWabh2WJIjwTKZ5PNsuvPQKt93Mg==", 1817 + "version": "2.1.0", 1818 + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-2.1.0.tgz", 1819 + "integrity": "sha512-/li0/kj/y3fQ3vyzn36NTLGmUwAICb7Jbe/CsWCktW363gh1MOcpEcSO3mJ344Gv2dqz8YJCLQpb6hju/0qOWw==", 1811 1820 "dependencies": { 1812 1821 "tslib": "^2.5.0" 1813 1822 }, ··· 1839 1848 } 1840 1849 }, 1841 1850 "node_modules/@smithy/util-defaults-mode-browser": { 1842 - "version": "2.0.4", 1843 - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.4.tgz", 1844 - "integrity": "sha512-wGdnPt4Ng72duUd97HrlqVkq6DKVB/yjaGkSg5n3uuQKzzHjoi3OdjXGumD/VYPHz0dYd7wpLNG2CnMm/nfDrg==", 1851 + "version": "2.0.5", 1852 + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.5.tgz", 1853 + "integrity": "sha512-yciP6TPttLsj731aHTvekgyuCGXQrEAJibEwEWAh3kzaDsfGAVCuZSBlyvC2Dl3TZmHKCOQwHV8mIE7KQCTPuQ==", 1845 1854 "dependencies": { 1846 - "@smithy/property-provider": "^2.0.4", 1847 - "@smithy/types": "^2.2.1", 1855 + "@smithy/property-provider": "^2.0.5", 1856 + "@smithy/types": "^2.2.2", 1848 1857 "bowser": "^2.11.0", 1849 1858 "tslib": "^2.5.0" 1850 1859 }, ··· 1853 1862 } 1854 1863 }, 1855 1864 "node_modules/@smithy/util-defaults-mode-node": { 1856 - "version": "2.0.4", 1857 - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.4.tgz", 1858 - "integrity": "sha512-QMkNcV6x52BeeeIvhvow6UmOu7nP7DXQljY6DKOP/aAokrli53IWTP/kUTd9B0Mp9tbW3WC10O6zaM69xiMNYw==", 1865 + "version": "2.0.5", 1866 + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.5.tgz", 1867 + "integrity": "sha512-M07t99rWasXt+IaDZDyP3BkcoEm/mgIE1RIMASrE49LKSNxaVN7PVcgGc77+4uu2kzBAyqJKy79pgtezuknyjQ==", 1859 1868 "dependencies": { 1860 - "@smithy/config-resolver": "^2.0.4", 1861 - "@smithy/credential-provider-imds": "^2.0.4", 1862 - "@smithy/node-config-provider": "^2.0.4", 1863 - "@smithy/property-provider": "^2.0.4", 1864 - "@smithy/types": "^2.2.1", 1869 + "@smithy/config-resolver": "^2.0.5", 1870 + "@smithy/credential-provider-imds": "^2.0.5", 1871 + "@smithy/node-config-provider": "^2.0.5", 1872 + "@smithy/property-provider": "^2.0.5", 1873 + "@smithy/types": "^2.2.2", 1865 1874 "tslib": "^2.5.0" 1866 1875 }, 1867 1876 "engines": { ··· 1903 1912 } 1904 1913 }, 1905 1914 "node_modules/@smithy/util-stream": { 1906 - "version": "2.0.4", 1907 - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.0.4.tgz", 1908 - "integrity": "sha512-ZVje79afuv3DB1Ma/g5m/5v9Zda8nA0xNgvE1pOD3EnoTp/Ekch1z20AN6gfVsf7JYWK2VSMVDiqI9N8Ua4wbg==", 1915 + "version": "2.0.5", 1916 + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.0.5.tgz", 1917 + "integrity": "sha512-ylx27GwI05xLpYQ4hDIfS15vm+wYjNN0Sc2P0FxuzgRe8v0BOLHppGIQ+Bezcynk8C9nUzsUue3TmtRhjut43g==", 1909 1918 "dependencies": { 1910 - "@smithy/fetch-http-handler": "^2.0.4", 1911 - "@smithy/node-http-handler": "^2.0.4", 1912 - "@smithy/types": "^2.2.1", 1919 + "@smithy/fetch-http-handler": "^2.0.5", 1920 + "@smithy/node-http-handler": "^2.0.5", 1921 + "@smithy/types": "^2.2.2", 1913 1922 "@smithy/util-base64": "^2.0.0", 1914 1923 "@smithy/util-buffer-from": "^2.0.0", 1915 1924 "@smithy/util-hex-encoding": "^2.0.0", ··· 1986 1995 "integrity": "sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==" 1987 1996 }, 1988 1997 "node_modules/@types/node": { 1989 - "version": "20.5.0", 1990 - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.0.tgz", 1991 - "integrity": "sha512-Mgq7eCtoTjT89FqNoTzzXg2XvCi5VMhRV6+I2aYanc6kQCBImeNaAYRs/DyoVqk1YEUJK5gN9VO7HRIdz4Wo3Q==" 1998 + "version": "20.5.6", 1999 + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.6.tgz", 2000 + "integrity": "sha512-Gi5wRGPbbyOTX+4Y2iULQ27oUPrefaB0PxGQJnfyWN3kvEDGM3mIB5M/gQLmitZf7A9FmLeaqxD3L1CXpm3VKQ==" 1992 2001 }, 1993 2002 "node_modules/@types/sinon": { 1994 2003 "version": "10.0.16", ··· 2459 2468 } 2460 2469 }, 2461 2470 "node_modules/caniuse-lite": { 2462 - "version": "1.0.30001521", 2463 - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001521.tgz", 2464 - "integrity": "sha512-fnx1grfpEOvDGH+V17eccmNjucGUnCbP6KL+l5KqBIerp26WK/+RQ7CIDE37KGJjaPyqWXXlFUyKiWmvdNNKmQ==", 2471 + "version": "1.0.30001523", 2472 + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001523.tgz", 2473 + "integrity": "sha512-I5q5cisATTPZ1mc588Z//pj/Ox80ERYDfR71YnvY7raS/NOk8xXlZcB0sF7JdqaV//kOaa6aus7lRfpdnt1eBA==", 2465 2474 "funding": [ 2466 2475 { 2467 2476 "type": "opencollective", ··· 2751 2760 "peer": true 2752 2761 }, 2753 2762 "node_modules/electron-to-chromium": { 2754 - "version": "1.4.494", 2755 - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.494.tgz", 2756 - "integrity": "sha512-KF7wtsFFDu4ws1ZsSOt4pdmO1yWVNWCFtijVYZPUeW4SV7/hy/AESjLn/+qIWgq7mHscNOKAwN5AIM1+YAy+Ww==" 2763 + "version": "1.4.502", 2764 + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.502.tgz", 2765 + "integrity": "sha512-xqeGw3Gr6o3uyHy/yKjdnDQHY2RQvXcGC2cfHjccK1IGkH6cX1WQBN8EeC/YpwPhGkBaikDTecJ8+ssxSVRQlw==" 2757 2766 }, 2758 2767 "node_modules/emphasize": { 2759 2768 "version": "4.2.0", ··· 3786 3795 "optional": true 3787 3796 }, 3788 3797 "node_modules/mongodb": { 3789 - "version": "5.7.0", 3790 - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.7.0.tgz", 3791 - "integrity": "sha512-zm82Bq33QbqtxDf58fLWBwTjARK3NSvKYjyz997KSy6hpat0prjeX/kxjbPVyZY60XYPDNETaHkHJI2UCzSLuw==", 3798 + "version": "5.8.1", 3799 + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.8.1.tgz", 3800 + "integrity": "sha512-wKyh4kZvm6NrCPH8AxyzXm3JBoEf4Xulo0aUWh3hCgwgYJxyQ1KLST86ZZaSWdj6/kxYUA3+YZuyADCE61CMSg==", 3792 3801 "dependencies": { 3793 3802 "bson": "^5.4.0", 3794 3803 "mongodb-connection-string-url": "^2.6.0", ··· 3798 3807 "node": ">=14.20.1" 3799 3808 }, 3800 3809 "optionalDependencies": { 3801 - "saslprep": "^1.0.3" 3810 + "@mongodb-js/saslprep": "^1.1.0" 3802 3811 }, 3803 3812 "peerDependencies": { 3804 - "@aws-sdk/credential-providers": "^3.201.0", 3805 - "@mongodb-js/zstd": "^1.1.0", 3806 - "kerberos": "^2.0.1", 3813 + "@aws-sdk/credential-providers": "^3.188.0", 3814 + "@mongodb-js/zstd": "^1.0.0", 3815 + "kerberos": "^1.0.0 || ^2.0.0", 3807 3816 "mongodb-client-encryption": ">=2.3.0 <3", 3808 3817 "snappy": "^7.2.2" 3809 3818 }, ··· 3954 3963 "optional": true 3955 3964 }, 3956 3965 "node_modules/node-fetch": { 3957 - "version": "2.6.12", 3958 - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", 3959 - "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", 3966 + "version": "2.7.0", 3967 + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 3968 + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 3960 3969 "dependencies": { 3961 3970 "whatwg-url": "^5.0.0" 3962 3971 }, ··· 4895 4904 } 4896 4905 }, 4897 4906 "node_modules/tslib": { 4898 - "version": "2.6.1", 4899 - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz", 4900 - "integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==" 4907 + "version": "2.6.2", 4908 + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", 4909 + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" 4901 4910 }, 4902 4911 "node_modules/tunnel-agent": { 4903 4912 "version": "0.6.0", ··· 4925 4934 } 4926 4935 }, 4927 4936 "node_modules/typescript": { 4928 - "version": "5.1.6", 4929 - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", 4930 - "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", 4937 + "version": "5.2.2", 4938 + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", 4939 + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", 4931 4940 "bin": { 4932 4941 "tsc": "bin/tsc", 4933 4942 "tsserver": "bin/tsserver"
+4 -4
pkgs/development/tools/mongosh/source.json
··· 1 1 { 2 - "version": "1.10.5", 3 - "integrity": "sha512-OAaUQv9dw/2p7Q8qIlUm8Ckv0UGFIPKHD09ApNcGU1bI3E6rGGhIMcpG8rcmdyV59mbtzoV4IeGkHbqX0KhGaw==", 4 - "filename": "mongosh-1.10.5.tgz", 5 - "deps": "sha256-P4JT4j2JiCIpHBODpXHcyLWd5VnOK0wXBkxtcAh2g4w=" 2 + "version": "1.10.6", 3 + "integrity": "sha512-rReUz89EF5eERhPZo29nYpKAux1u5iK3ug74wtsr7kE9SOJs5XGWS2gh8LKSMK9uieeDKRYX8+nFIa4bl1Ls2Q==", 4 + "filename": "mongosh-1.10.6.tgz", 5 + "deps": "sha256-j1l6PVPkp5Ju0uBB6dKfQP8fbwttWpPR3VPviu4a/Zg=" 6 6 }
+28
pkgs/development/tools/rust/cargo-run-bin/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchCrate 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "cargo-run-bin"; 8 + version = "1.1.5"; 9 + 10 + src = fetchCrate { 11 + inherit pname version; 12 + sha256 = "sha256-YCWjdY8feiqU4/bOn19qbY8YiKa3SvFImvH0wDKXOhI="; 13 + }; 14 + 15 + cargoSha256 = "sha256-mNJZjEkuUwo/aqyotqjNj+P50dFFGaJnLQ2CyCYg/1Y="; 16 + 17 + # multiple impurities in tests 18 + doCheck = false; 19 + 20 + meta = with lib; { 21 + description = "Build, cache, and run binaries scoped in Cargo.toml rather than installing globally. This acts similarly to npm run and gomodrun, and allows your teams to always be running the same tooling versions"; 22 + homepage = "https://github.com/dustinblackman/cargo-run-bin"; 23 + changelog = "https://github.com/dustinblackman/cargo-run-bin/blob/v${version}/CHANGELOG.md"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ mightyiam matthiasbeyer ]; 26 + }; 27 + } 28 +
+3 -3
pkgs/development/tools/rust/cbindgen/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "rust-cbindgen"; 12 - version = "0.24.6"; 12 + version = "0.25.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "mozilla"; 16 16 repo = "cbindgen"; 17 17 rev = "v${version}"; 18 - hash = "sha256-RHh97hwWmjV6hw+fX+fOtixX/DGedTf9cx+PYPW6/wI="; 18 + hash = "sha256-gljICr0abKEXxJfLCJN3L2OIwUvw/QoIC6T5C7pieEA="; 19 19 }; 20 20 21 - cargoSha256 = "sha256-7G/16arXYwt7Nrs1isWyrPubm8GMi8NsjLjWAD8x6aM="; 21 + cargoSha256 = "sha256-agBzn2MibM7158/QlLXI2HBBcYIe0p50rYSF1jBDF8U="; 22 22 23 23 buildInputs = lib.optional stdenv.isDarwin Security; 24 24
+1 -1
pkgs/games/heroic/default.nix
··· 93 93 --inherit-argv0 \ 94 94 --add-flags --disable-gpu-compositing \ 95 95 --add-flags $out/share/${appName} \ 96 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 96 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime}}" 97 97 98 98 substituteInPlace "$out/share/${appName}/flatpak/com.heroicgameslauncher.hgl.desktop" \ 99 99 --replace "Exec=heroic-run" "Exec=heroic"
+3
pkgs/games/heroic/fhsenv.nix
··· 12 12 # Many Wine and native games need 32-bit libraries. 13 13 multiArch = true; 14 14 15 + # required by Electron 16 + unshareIpc = false; 17 + 15 18 targetPkgs = pkgs: with pkgs; [ 16 19 heroic-unwrapped 17 20 gamemode
+2 -2
pkgs/games/path-of-building/default.nix
··· 2 2 let 3 3 data = stdenv.mkDerivation(finalAttrs: { 4 4 pname = "path-of-building-data"; 5 - version = "2.33.1"; 5 + version = "2.33.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "PathOfBuildingCommunity"; 9 9 repo = "PathOfBuilding"; 10 10 rev = "v${finalAttrs.version}"; 11 - hash = "sha256-nnASvWApp3BjUPa+i7cvMJnTiD8oXtZTU6OjryFxaBM="; 11 + hash = "sha256-mRF8bXDBTfMGB8SAhF4rrwkBZq1XyGA9Wkb1ZpvTCv0="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ unzip ];
+1
pkgs/misc/logging/beats/7.x.nix
··· 24 24 } // extraArgs); 25 25 in 26 26 rec { 27 + auditbeat7 = beat "auditbeat" { meta.description = "Lightweight shipper for audit data"; }; 27 28 filebeat7 = beat "filebeat" { 28 29 meta.description = "Lightweight shipper for logfiles"; 29 30 buildInputs = [ systemd ];
+7 -7
pkgs/servers/nextcloud/packages/25.json
··· 3 3 "sha256": "1kdpma5f3rb9g29j364lqv6bkar5qgwlvcxmhpmzllwlkmjpc9w8", 4 4 "url": "https://github.com/nextcloud/bookmarks/releases/download/v12.1.0/bookmarks-12.1.0.tar.gz", 5 5 "version": "12.1.0", 6 - "description": "- 📂 Sort bookmarks into folders\n- 🏷 Add tags and personal notes\n- 🔍 Full-text search\n- 📲 Synchronize with all your browsers and devices\n- 👪 Share bookmarks with other users and publicly\n- ☠ Find broken links\n- ⚛ Generate RSS feeds of your collections\n- 📔 Read archived versions of your links in case they are depublished\n- 💬 Create new bookmarks directly from within Nextcloud Talk\n- 💼 Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP v7.4+\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", 6 + "description": "- 📂 Sort bookmarks into folders\n- 🏷 Add tags and personal notes\n- 🔍 Full-text search\n- 📲 Synchronize with all your browsers and devices\n- 👪 Share bookmarks with other users and publicly\n- ☠ Find broken links\n- ⚛ Generate RSS feeds of your collections\n- 📔 Read archived versions of your links in case they are depublished\n- 💬 Create new bookmarks directly from within Nextcloud Talk\n- 💼 Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", 7 7 "homepage": "https://github.com/nextcloud/bookmarks", 8 8 "licenses": [ 9 9 "agpl" ··· 140 140 ] 141 141 }, 142 142 "news": { 143 - "sha256": "1z08k8xnyv71zj0djlv339faq9lx23mlqgjanf2jhv6jhh8cy5c6", 144 - "url": "https://github.com/nextcloud/news/releases/download/22.0.0/news.tar.gz", 145 - "version": "22.0.0", 143 + "sha256": "1j9dhqz5anwsmw3f8hbhvqc2h1fp15zmxzdbpnz1p3vwqf8f5cjs", 144 + "url": "https://github.com/nextcloud/news/releases/download/23.0.0/news.tar.gz", 145 + "version": "23.0.0", 146 146 "description": "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)", 147 147 "homepage": "https://github.com/nextcloud/news", 148 148 "licenses": [ ··· 170 170 ] 171 171 }, 172 172 "onlyoffice": { 173 - "sha256": "10axh9a4w8y3iw95xdjn4q8wjg5459dki42xb6cax5ikimyfv07j", 174 - "url": "https://github.com/ONLYOFFICE/onlyoffice-nextcloud/releases/download/v7.8.0/onlyoffice.tar.gz", 175 - "version": "7.8.0", 173 + "sha256": "12hzmngps86ha4lcfwaf62svfz41aywykq0z419r644g5i4v7raq", 174 + "url": "https://github.com/ONLYOFFICE/onlyoffice-nextcloud/releases/download/v7.9.0/onlyoffice.tar.gz", 175 + "version": "7.9.0", 176 176 "description": "ONLYOFFICE connector allows you to view, edit and collaborate on text documents, spreadsheets and presentations within Nextcloud using ONLYOFFICE Docs. This will create a new Edit in ONLYOFFICE action within the document library for Office documents. This allows multiple users to co-author documents in real time from the familiar web interface and save the changes back to your file storage.", 177 177 "homepage": "https://www.onlyoffice.com", 178 178 "licenses": [
+10 -10
pkgs/servers/nextcloud/packages/26.json
··· 1 1 { 2 2 "bookmarks": { 3 - "sha256": "0xx331bgly91y8ncxk36ha3ncrr2xlivblfi7rix6ffkrdx73yb9", 4 - "url": "https://github.com/nextcloud/bookmarks/releases/download/v13.0.1/bookmarks-13.0.1.tar.gz", 5 - "version": "13.0.1", 6 - "description": "- 📂 Sort bookmarks into folders\n- 🏷 Add tags and personal notes\n- 🔍 Full-text search\n- 📲 Synchronize with all your browsers and devices\n- 👪 Share bookmarks with other users and publicly\n- ☠ Find broken links\n- ⚛ Generate RSS feeds of your collections\n- 📔 Read archived versions of your links in case they are depublished\n- 💬 Create new bookmarks directly from within Nextcloud Talk\n- 💼 Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP v7.4+\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", 3 + "sha256": "16j10gj5nghgji36jhng60291wl4h9c3vndjx9j8jij9qn6hz23f", 4 + "url": "https://github.com/nextcloud/bookmarks/releases/download/v13.1.0/bookmarks-13.1.0.tar.gz", 5 + "version": "13.1.0", 6 + "description": "- 📂 Sort bookmarks into folders\n- 🏷 Add tags and personal notes\n- 🔍 Full-text search\n- 📲 Synchronize with all your browsers and devices\n- 👪 Share bookmarks with other users and publicly\n- ☠ Find broken links\n- ⚛ Generate RSS feeds of your collections\n- 📔 Read archived versions of your links in case they are depublished\n- 💬 Create new bookmarks directly from within Nextcloud Talk\n- 💼 Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", 7 7 "homepage": "https://github.com/nextcloud/bookmarks", 8 8 "licenses": [ 9 9 "agpl" ··· 140 140 ] 141 141 }, 142 142 "news": { 143 - "sha256": "1z08k8xnyv71zj0djlv339faq9lx23mlqgjanf2jhv6jhh8cy5c6", 144 - "url": "https://github.com/nextcloud/news/releases/download/22.0.0/news.tar.gz", 145 - "version": "22.0.0", 143 + "sha256": "1j9dhqz5anwsmw3f8hbhvqc2h1fp15zmxzdbpnz1p3vwqf8f5cjs", 144 + "url": "https://github.com/nextcloud/news/releases/download/23.0.0/news.tar.gz", 145 + "version": "23.0.0", 146 146 "description": "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)", 147 147 "homepage": "https://github.com/nextcloud/news", 148 148 "licenses": [ ··· 170 170 ] 171 171 }, 172 172 "onlyoffice": { 173 - "sha256": "10axh9a4w8y3iw95xdjn4q8wjg5459dki42xb6cax5ikimyfv07j", 174 - "url": "https://github.com/ONLYOFFICE/onlyoffice-nextcloud/releases/download/v7.8.0/onlyoffice.tar.gz", 175 - "version": "7.8.0", 173 + "sha256": "12hzmngps86ha4lcfwaf62svfz41aywykq0z419r644g5i4v7raq", 174 + "url": "https://github.com/ONLYOFFICE/onlyoffice-nextcloud/releases/download/v7.9.0/onlyoffice.tar.gz", 175 + "version": "7.9.0", 176 176 "description": "ONLYOFFICE connector allows you to view, edit and collaborate on text documents, spreadsheets and presentations within Nextcloud using ONLYOFFICE Docs. This will create a new Edit in ONLYOFFICE action within the document library for Office documents. This allows multiple users to co-author documents in real time from the familiar web interface and save the changes back to your file storage.", 177 177 "homepage": "https://www.onlyoffice.com", 178 178 "licenses": [
+7 -7
pkgs/servers/nextcloud/packages/27.json
··· 1 1 { 2 2 "bookmarks": { 3 - "sha256": "0xx331bgly91y8ncxk36ha3ncrr2xlivblfi7rix6ffkrdx73yb9", 4 - "url": "https://github.com/nextcloud/bookmarks/releases/download/v13.0.1/bookmarks-13.0.1.tar.gz", 5 - "version": "13.0.1", 6 - "description": "- 📂 Sort bookmarks into folders\n- 🏷 Add tags and personal notes\n- 🔍 Full-text search\n- 📲 Synchronize with all your browsers and devices\n- 👪 Share bookmarks with other users and publicly\n- ☠ Find broken links\n- ⚛ Generate RSS feeds of your collections\n- 📔 Read archived versions of your links in case they are depublished\n- 💬 Create new bookmarks directly from within Nextcloud Talk\n- 💼 Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP v7.4+\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", 3 + "sha256": "16j10gj5nghgji36jhng60291wl4h9c3vndjx9j8jij9qn6hz23f", 4 + "url": "https://github.com/nextcloud/bookmarks/releases/download/v13.1.0/bookmarks-13.1.0.tar.gz", 5 + "version": "13.1.0", 6 + "description": "- 📂 Sort bookmarks into folders\n- 🏷 Add tags and personal notes\n- 🔍 Full-text search\n- 📲 Synchronize with all your browsers and devices\n- 👪 Share bookmarks with other users and publicly\n- ☠ Find broken links\n- ⚛ Generate RSS feeds of your collections\n- 📔 Read archived versions of your links in case they are depublished\n- 💬 Create new bookmarks directly from within Nextcloud Talk\n- 💼 Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", 7 7 "homepage": "https://github.com/nextcloud/bookmarks", 8 8 "licenses": [ 9 9 "agpl" ··· 140 140 ] 141 141 }, 142 142 "news": { 143 - "sha256": "1z08k8xnyv71zj0djlv339faq9lx23mlqgjanf2jhv6jhh8cy5c6", 144 - "url": "https://github.com/nextcloud/news/releases/download/22.0.0/news.tar.gz", 145 - "version": "22.0.0", 143 + "sha256": "1j9dhqz5anwsmw3f8hbhvqc2h1fp15zmxzdbpnz1p3vwqf8f5cjs", 144 + "url": "https://github.com/nextcloud/news/releases/download/23.0.0/news.tar.gz", 145 + "version": "23.0.0", 146 146 "description": "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)", 147 147 "homepage": "https://github.com/nextcloud/news", 148 148 "licenses": [
+9 -3
pkgs/servers/nextcloud/packages/default.nix
··· 9 9 generatedJson = { 10 10 inherit apps; 11 11 }; 12 + appBaseDefs = builtins.fromJSON (builtins.readFile ./nextcloud-apps.json); 12 13 13 14 in { 14 15 # Create a derivation from the official Nextcloud apps. 15 16 # This takes the data generated from the go tool. 16 - mkNextcloudDerivation = self.callPackage ({ }: { data }: 17 + mkNextcloudDerivation = self.callPackage ({ }: { pname, data }: 17 18 pkgs.fetchNextcloudApp { 18 - inherit (data) url sha256; 19 + appName = pname; 20 + appVersion = data.version; 21 + license = appBaseDefs.${pname}; 22 + inherit (data) url sha256 description homepage; 19 23 }) {}; 20 24 21 - } // lib.mapAttrs (type: pkgs: lib.makeExtensible (_: lib.mapAttrs (pname: data: self.mkNextcloudDerivation { inherit data; }) pkgs)) generatedJson; 25 + } // lib.mapAttrs (type: pkgs: 26 + lib.makeExtensible (_: lib.mapAttrs (pname: data: self.mkNextcloudDerivation { inherit pname; inherit data; }) pkgs)) 27 + generatedJson; 22 28 23 29 in (lib.makeExtensible (_: (lib.makeScope newScope packages))).extend (selfNC: superNC: {})
+1 -1
pkgs/servers/nextcloud/packages/generate.sh
··· 8 8 9 9 export NEXTCLOUD_VERSIONS=$(nix-instantiate --eval -E 'import ./nc-versions.nix {}' -A e) 10 10 11 - APPS=`cat nextcloud-apps.json | jq -r '.[]' | sed -z 's/\n/,/g;s/,$/\n/'` 11 + APPS=`cat nextcloud-apps.json | jq -r 'keys|.[]' | sed -z 's/\n/,/g;s/,$/\n/'` 12 12 13 13 nc4nix -apps $APPS 14 14 rm *.log
+31 -31
pkgs/servers/nextcloud/packages/nextcloud-apps.json
··· 1 - [ 2 - "bookmarks" 3 - , "calendar" 4 - , "contacts" 5 - , "cospend" 6 - , "deck" 7 - , "files_texteditor" 8 - , "files_markdown" 9 - , "forms" 10 - , "groupfolders" 11 - , "impersonate" 12 - , "keeweb" 13 - , "mail" 14 - , "maps" 15 - , "memories" 16 - , "news" 17 - , "notes" 18 - , "notify_push" 19 - , "onlyoffice" 20 - , "polls" 21 - , "previewgenerator" 22 - , "qownnotesapi" 23 - , "registration" 24 - , "spreed" 25 - , "tasks" 26 - , "twofactor_nextcloud_notification" 27 - , "twofactor_totp" 28 - , "twofactor_webauthn" 29 - , "unsplash" 30 - , "user_saml" 31 - ] 1 + { 2 + "bookmarks": "agpl3Plus" 3 + , "calendar": "agpl3Plus" 4 + , "contacts": "agpl3Plus" 5 + , "cospend": "agpl3Plus" 6 + , "deck": "agpl3Plus" 7 + , "files_texteditor": "agpl3Plus" 8 + , "files_markdown": "agpl3Plus" 9 + , "forms": "agpl3Plus" 10 + , "groupfolders": "agpl3Plus" 11 + , "impersonate": "agpl3Plus" 12 + , "keeweb": "agpl3Plus" 13 + , "mail": "agpl3Plus" 14 + , "maps": "agpl3Plus" 15 + , "memories": "agpl3Plus" 16 + , "news": "agpl3Plus" 17 + , "notes": "agpl3Plus" 18 + , "notify_push": "agpl3Plus" 19 + , "onlyoffice": "asl20" 20 + , "polls": "agpl3Plus" 21 + , "previewgenerator": "agpl3Plus" 22 + , "qownnotesapi": "agpl3Plus" 23 + , "registration": "agpl3Plus" 24 + , "spreed": "agpl3Plus" 25 + , "tasks": "agpl3Plus" 26 + , "twofactor_nextcloud_notification": "agpl3Only" 27 + , "twofactor_totp": "agpl3Plus" 28 + , "twofactor_webauthn": "agpl3Plus" 29 + , "unsplash": "agpl3Only" 30 + , "user_saml": "agpl3Plus" 31 + }
+3 -3
pkgs/servers/tidb/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tidb"; 5 - version = "7.2.0"; 5 + version = "7.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pingcap"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-7iz82H3H22GCLvy8VD+t1BkEEoNQ0+6ZLBOUwWTlNfI="; 11 + sha256 = "sha256-zpAduymFC17iL9eEssFoHxK+J4EP1QyamchfLetFN/k="; 12 12 }; 13 13 14 - vendorHash = "sha256-9vgxdX8CPUbyJZNSkwTZK02ORIXACjad/yPef8zB7FU="; 14 + vendorHash = "sha256-GbAZK2TQKc3bziZm202Q2QLLK0TDJ/AplSGKBSLSoqQ="; 15 15 16 16 ldflags = [ 17 17 "-s"
+2 -2
pkgs/tools/admin/qovery-cli/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "qovery-cli"; 11 - version = "0.65.1"; 11 + version = "0.66.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Qovery"; 15 15 repo = pname; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-0Wg6E89+k7YKx+DpIcO76NJ+VzGPQc07PoR0FvmYeKg="; 17 + hash = "sha256-vWfwoOxs8scIJchQ+dDfyHZvU88YKaMH/wCWwVTwtyU="; 18 18 }; 19 19 20 20 vendorHash = "sha256-Fcm/f54zGgA742yhIVJxjv7Y2T8DblC71+hw5HTmOf0=";
+29
pkgs/tools/audio/bark/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , alsa-lib 6 + , speexdsp 7 + }: 8 + rustPlatform.buildRustPackage { 9 + pname = "bark"; 10 + version = "unstable-2023-08-22"; 11 + src = fetchFromGitHub { 12 + owner = "haileys"; 13 + repo = "bark"; 14 + rev = "2586b9fb58b496f8ef06f516c9cd3aace77521f7"; 15 + hash = "sha256-sGroae6uJhB9UIpFmvt520Zs9k0ir7H8pGkhKJmVWek="; 16 + }; 17 + cargoHash = "sha256-OjlVn4fvKPm3UfqhKkv7cDuvK4mcLcQXPNPK+WScrMc="; 18 + buildInputs = [ alsa-lib speexdsp ]; 19 + nativeBuildInputs = [ pkg-config ]; 20 + 21 + meta = { 22 + description = "Live sync audio streaming for local networks"; 23 + homepage = "https://github.com/haileys/bark"; 24 + license = lib.licenses.agpl3Only; 25 + maintainers = with lib.maintainers; [ samw ]; 26 + platforms = lib.platforms.linux; 27 + }; 28 + } 29 +
+27
pkgs/tools/misc/slingshot/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "slingshot"; 8 + version = "0.2.3"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "caio-ishikawa"; 12 + repo = "slingshot"; 13 + rev = "v${version}"; 14 + hash = "sha256-PbcpvSBYoRs8TMkbbQjG284BWr+PSaTStPOg4a1GIrw="; 15 + }; 16 + 17 + cargoHash = "sha256-Y0H88paBe2yyUyTdwxXO58YFDdH04kK+nHvi1qyYVF0="; 18 + 19 + meta = with lib; { 20 + description = "Lightweight command line tool to quickly navigate across folders"; 21 + homepage = "https://github.com/caio-ishikawa/slingshot"; 22 + changelog = "https://github.com/caio-ishikawa/slingshot/releases/tag/${src.rev}"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ figsoda ]; 25 + mainProgram = "slingshot"; 26 + }; 27 + }
+4 -3
pkgs/tools/misc/vrc-get/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "vrc-get"; 5 - version = "1.1.2"; 5 + version = "1.1.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "anatawa12"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "03p3y6q6md2m6fj9v01419cy1wa13dhasd2izs7j9gl9jh69w9xm"; 11 + hash = "sha256-CJBwW2QsLNLyNubawBPD+Cy74JrrdSUHe7JBSdbMnjY="; 12 + fetchSubmodules = true; 12 13 }; 13 14 14 15 nativeBuildInputs = [ pkg-config ]; ··· 18 19 # Make openssl-sys use pkg-config. 19 20 OPENSSL_NO_VENDOR = 1; 20 21 21 - cargoSha256 = "03lv72gw39q7hibg2rzibvc1y0az30691jdf2fwn1m5ng0r7lqvp"; 22 + cargoHash = "sha256-PnNo+MmBo/Ke7pL6KwRKXz3gycJmbYefTRMWOvlCQaQ="; 22 23 23 24 meta = with lib; { 24 25 description = "Command line client of VRChat Package Manager, the main feature of VRChat Creator Companion (VCC)";
+321 -344
pkgs/tools/networking/zerotierone/Cargo.lock
··· 3 3 version = 3 4 4 5 5 [[package]] 6 + name = "addr2line" 7 + version = "0.20.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 15 + name = "adler" 16 + version = "1.0.2" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 + 20 + [[package]] 21 + name = "android-tzdata" 22 + version = "0.1.1" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 25 + 26 + [[package]] 6 27 name = "android_system_properties" 7 28 version = "0.1.5" 8 29 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 38 59 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 39 60 40 61 [[package]] 62 + name = "backtrace" 63 + version = "0.3.68" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" 66 + dependencies = [ 67 + "addr2line", 68 + "cc", 69 + "cfg-if", 70 + "libc", 71 + "miniz_oxide", 72 + "object", 73 + "rustc-demangle", 74 + ] 75 + 76 + [[package]] 41 77 name = "base64" 42 78 version = "0.13.1" 43 79 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 45 81 46 82 [[package]] 47 83 name = "base64" 48 - version = "0.21.0" 84 + version = "0.21.2" 49 85 source = "registry+https://github.com/rust-lang/crates.io-index" 50 - checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 86 + checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 51 87 52 88 [[package]] 53 89 name = "bitflags" ··· 56 92 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 57 93 58 94 [[package]] 95 + name = "bitflags" 96 + version = "2.4.0" 97 + source = "registry+https://github.com/rust-lang/crates.io-index" 98 + checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 99 + 100 + [[package]] 59 101 name = "block-buffer" 60 - version = "0.10.3" 102 + version = "0.10.4" 61 103 source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 104 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 63 105 dependencies = [ 64 106 "generic-array", 65 107 ] 66 108 67 109 [[package]] 68 110 name = "bumpalo" 69 - version = "3.12.0" 111 + version = "3.13.0" 70 112 source = "registry+https://github.com/rust-lang/crates.io-index" 71 - checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 113 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 72 114 73 115 [[package]] 74 116 name = "bytes" ··· 90 132 "quote", 91 133 "serde", 92 134 "serde_json", 93 - "syn", 135 + "syn 1.0.109", 94 136 "tempfile", 95 137 "toml", 96 138 ] 97 139 98 140 [[package]] 99 141 name = "cc" 100 - version = "1.0.79" 142 + version = "1.0.82" 101 143 source = "registry+https://github.com/rust-lang/crates.io-index" 102 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 144 + checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" 145 + dependencies = [ 146 + "libc", 147 + ] 103 148 104 149 [[package]] 105 150 name = "cfg-if" ··· 109 154 110 155 [[package]] 111 156 name = "chrono" 112 - version = "0.4.23" 157 + version = "0.4.26" 113 158 source = "registry+https://github.com/rust-lang/crates.io-index" 114 - checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" 159 + checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 115 160 dependencies = [ 161 + "android-tzdata", 116 162 "iana-time-zone", 117 - "num-integer", 118 163 "num-traits", 119 164 "serde", 120 165 "winapi", ··· 128 173 dependencies = [ 129 174 "ansi_term", 130 175 "atty", 131 - "bitflags", 176 + "bitflags 1.3.2", 132 177 "strsim 0.8.0", 133 178 "textwrap", 134 179 "unicode-width", ··· 136 181 ] 137 182 138 183 [[package]] 139 - name = "codespan-reporting" 140 - version = "0.11.1" 141 - source = "registry+https://github.com/rust-lang/crates.io-index" 142 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 143 - dependencies = [ 144 - "termcolor", 145 - "unicode-width", 146 - ] 147 - 148 - [[package]] 149 184 name = "core-foundation" 150 185 version = "0.9.3" 151 186 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 157 192 158 193 [[package]] 159 194 name = "core-foundation-sys" 160 - version = "0.8.3" 195 + version = "0.8.4" 161 196 source = "registry+https://github.com/rust-lang/crates.io-index" 162 - checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 197 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 163 198 164 199 [[package]] 165 200 name = "cpufeatures" 166 - version = "0.2.5" 201 + version = "0.2.9" 167 202 source = "registry+https://github.com/rust-lang/crates.io-index" 168 - checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 203 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 169 204 dependencies = [ 170 205 "libc", 171 206 ] ··· 181 216 ] 182 217 183 218 [[package]] 184 - name = "cxx" 185 - version = "1.0.91" 186 - source = "registry+https://github.com/rust-lang/crates.io-index" 187 - checksum = "86d3488e7665a7a483b57e25bdd90d0aeb2bc7608c8d0346acf2ad3f1caf1d62" 188 - dependencies = [ 189 - "cc", 190 - "cxxbridge-flags", 191 - "cxxbridge-macro", 192 - "link-cplusplus", 193 - ] 194 - 195 - [[package]] 196 - name = "cxx-build" 197 - version = "1.0.91" 198 - source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "48fcaf066a053a41a81dfb14d57d99738b767febb8b735c3016e469fac5da690" 200 - dependencies = [ 201 - "cc", 202 - "codespan-reporting", 203 - "once_cell", 204 - "proc-macro2", 205 - "quote", 206 - "scratch", 207 - "syn", 208 - ] 209 - 210 - [[package]] 211 - name = "cxxbridge-flags" 212 - version = "1.0.91" 213 - source = "registry+https://github.com/rust-lang/crates.io-index" 214 - checksum = "a2ef98b8b717a829ca5603af80e1f9e2e48013ab227b68ef37872ef84ee479bf" 215 - 216 - [[package]] 217 - name = "cxxbridge-macro" 218 - version = "1.0.91" 219 - source = "registry+https://github.com/rust-lang/crates.io-index" 220 - checksum = "086c685979a698443656e5cf7856c95c642295a38599f12fb1ff76fb28d19892" 221 - dependencies = [ 222 - "proc-macro2", 223 - "quote", 224 - "syn", 225 - ] 226 - 227 - [[package]] 228 219 name = "darling" 229 220 version = "0.13.4" 230 221 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 245 236 "proc-macro2", 246 237 "quote", 247 238 "strsim 0.10.0", 248 - "syn", 239 + "syn 1.0.109", 249 240 ] 250 241 251 242 [[package]] ··· 256 247 dependencies = [ 257 248 "darling_core", 258 249 "quote", 259 - "syn", 250 + "syn 1.0.109", 260 251 ] 261 252 262 253 [[package]] 254 + name = "deranged" 255 + version = "0.3.7" 256 + source = "registry+https://github.com/rust-lang/crates.io-index" 257 + checksum = "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929" 258 + 259 + [[package]] 263 260 name = "digest" 264 - version = "0.10.6" 261 + version = "0.10.7" 265 262 source = "registry+https://github.com/rust-lang/crates.io-index" 266 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 263 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 267 264 dependencies = [ 268 265 "block-buffer", 269 266 "crypto-common", ··· 272 269 273 270 [[package]] 274 271 name = "either" 275 - version = "1.8.1" 272 + version = "1.9.0" 276 273 source = "registry+https://github.com/rust-lang/crates.io-index" 277 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 274 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 278 275 279 276 [[package]] 280 277 name = "encoding_rs" ··· 287 284 288 285 [[package]] 289 286 name = "errno" 290 - version = "0.2.8" 287 + version = "0.3.2" 291 288 source = "registry+https://github.com/rust-lang/crates.io-index" 292 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 289 + checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 293 290 dependencies = [ 294 291 "errno-dragonfly", 295 292 "libc", 296 - "winapi", 293 + "windows-sys", 297 294 ] 298 295 299 296 [[package]] ··· 308 305 309 306 [[package]] 310 307 name = "fastrand" 311 - version = "1.9.0" 308 + version = "2.0.0" 312 309 source = "registry+https://github.com/rust-lang/crates.io-index" 313 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 314 - dependencies = [ 315 - "instant", 316 - ] 310 + checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 317 311 318 312 [[package]] 319 313 name = "fnv" ··· 338 332 339 333 [[package]] 340 334 name = "form_urlencoded" 341 - version = "1.1.0" 335 + version = "1.2.0" 342 336 source = "registry+https://github.com/rust-lang/crates.io-index" 343 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 337 + checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 344 338 dependencies = [ 345 339 "percent-encoding", 346 340 ] 347 341 348 342 [[package]] 349 343 name = "futures-channel" 350 - version = "0.3.26" 344 + version = "0.3.28" 351 345 source = "registry+https://github.com/rust-lang/crates.io-index" 352 - checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" 346 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 353 347 dependencies = [ 354 348 "futures-core", 355 349 ] 356 350 357 351 [[package]] 358 352 name = "futures-core" 359 - version = "0.3.26" 353 + version = "0.3.28" 360 354 source = "registry+https://github.com/rust-lang/crates.io-index" 361 - checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" 355 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 362 356 363 357 [[package]] 364 358 name = "futures-io" 365 - version = "0.3.26" 359 + version = "0.3.28" 366 360 source = "registry+https://github.com/rust-lang/crates.io-index" 367 - checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" 361 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 368 362 369 363 [[package]] 370 364 name = "futures-sink" 371 - version = "0.3.26" 365 + version = "0.3.28" 372 366 source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" 367 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 374 368 375 369 [[package]] 376 370 name = "futures-task" 377 - version = "0.3.26" 371 + version = "0.3.28" 378 372 source = "registry+https://github.com/rust-lang/crates.io-index" 379 - checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" 373 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 380 374 381 375 [[package]] 382 376 name = "futures-util" 383 - version = "0.3.26" 377 + version = "0.3.28" 384 378 source = "registry+https://github.com/rust-lang/crates.io-index" 385 - checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" 379 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 386 380 dependencies = [ 387 381 "futures-core", 388 382 "futures-io", ··· 395 389 396 390 [[package]] 397 391 name = "generic-array" 398 - version = "0.14.6" 392 + version = "0.14.7" 399 393 source = "registry+https://github.com/rust-lang/crates.io-index" 400 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 394 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 401 395 dependencies = [ 402 396 "typenum", 403 397 "version_check", ··· 405 399 406 400 [[package]] 407 401 name = "getrandom" 408 - version = "0.2.8" 402 + version = "0.2.10" 409 403 source = "registry+https://github.com/rust-lang/crates.io-index" 410 - checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 404 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 411 405 dependencies = [ 412 406 "cfg-if", 413 407 "js-sys", ··· 417 411 ] 418 412 419 413 [[package]] 414 + name = "gimli" 415 + version = "0.27.3" 416 + source = "registry+https://github.com/rust-lang/crates.io-index" 417 + checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" 418 + 419 + [[package]] 420 420 name = "h2" 421 - version = "0.3.16" 421 + version = "0.3.20" 422 422 source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" 423 + checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" 424 424 dependencies = [ 425 425 "bytes", 426 426 "fnv", ··· 461 461 462 462 [[package]] 463 463 name = "hermit-abi" 464 - version = "0.2.6" 464 + version = "0.3.2" 465 465 source = "registry+https://github.com/rust-lang/crates.io-index" 466 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 467 - dependencies = [ 468 - "libc", 469 - ] 466 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 470 467 471 468 [[package]] 472 469 name = "hmac" ··· 507 504 508 505 [[package]] 509 506 name = "httpdate" 510 - version = "1.0.2" 507 + version = "1.0.3" 511 508 source = "registry+https://github.com/rust-lang/crates.io-index" 512 - checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 509 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 513 510 514 511 [[package]] 515 512 name = "hyper" 516 - version = "0.14.24" 513 + version = "0.14.27" 517 514 source = "registry+https://github.com/rust-lang/crates.io-index" 518 - checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" 515 + checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 519 516 dependencies = [ 520 517 "bytes", 521 518 "futures-channel", ··· 528 525 "httpdate", 529 526 "itoa", 530 527 "pin-project-lite", 531 - "socket2", 528 + "socket2 0.4.9", 532 529 "tokio", 533 530 "tower-service", 534 531 "tracing", ··· 550 547 551 548 [[package]] 552 549 name = "iana-time-zone" 553 - version = "0.1.53" 550 + version = "0.1.57" 554 551 source = "registry+https://github.com/rust-lang/crates.io-index" 555 - checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 552 + checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 556 553 dependencies = [ 557 554 "android_system_properties", 558 555 "core-foundation-sys", 559 556 "iana-time-zone-haiku", 560 557 "js-sys", 561 558 "wasm-bindgen", 562 - "winapi", 559 + "windows", 563 560 ] 564 561 565 562 [[package]] 566 563 name = "iana-time-zone-haiku" 567 - version = "0.1.1" 564 + version = "0.1.2" 568 565 source = "registry+https://github.com/rust-lang/crates.io-index" 569 - checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 566 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 570 567 dependencies = [ 571 - "cxx", 572 - "cxx-build", 568 + "cc", 573 569 ] 574 570 575 571 [[package]] ··· 580 576 581 577 [[package]] 582 578 name = "idna" 583 - version = "0.3.0" 579 + version = "0.4.0" 584 580 source = "registry+https://github.com/rust-lang/crates.io-index" 585 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 581 + checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 586 582 dependencies = [ 587 583 "unicode-bidi", 588 584 "unicode-normalization", ··· 590 586 591 587 [[package]] 592 588 name = "indexmap" 593 - version = "1.9.2" 589 + version = "1.9.3" 594 590 source = "registry+https://github.com/rust-lang/crates.io-index" 595 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 591 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 596 592 dependencies = [ 597 593 "autocfg", 598 594 "hashbrown", 599 595 ] 600 596 601 597 [[package]] 602 - name = "instant" 603 - version = "0.1.12" 604 - source = "registry+https://github.com/rust-lang/crates.io-index" 605 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 606 - dependencies = [ 607 - "cfg-if", 608 - ] 609 - 610 - [[package]] 611 - name = "io-lifetimes" 612 - version = "1.0.5" 613 - source = "registry+https://github.com/rust-lang/crates.io-index" 614 - checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3" 615 - dependencies = [ 616 - "libc", 617 - "windows-sys 0.45.0", 618 - ] 619 - 620 - [[package]] 621 598 name = "ipnet" 622 - version = "2.7.1" 599 + version = "2.8.0" 623 600 source = "registry+https://github.com/rust-lang/crates.io-index" 624 - checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" 601 + checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 625 602 626 603 [[package]] 627 604 name = "itertools" ··· 634 611 635 612 [[package]] 636 613 name = "itoa" 637 - version = "1.0.5" 614 + version = "1.0.9" 638 615 source = "registry+https://github.com/rust-lang/crates.io-index" 639 - checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 616 + checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 640 617 641 618 [[package]] 642 619 name = "js-sys" 643 - version = "0.3.61" 620 + version = "0.3.64" 644 621 source = "registry+https://github.com/rust-lang/crates.io-index" 645 - checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 622 + checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 646 623 dependencies = [ 647 624 "wasm-bindgen", 648 625 ] ··· 669 646 670 647 [[package]] 671 648 name = "libc" 672 - version = "0.2.139" 649 + version = "0.2.147" 673 650 source = "registry+https://github.com/rust-lang/crates.io-index" 674 - checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 675 - 676 - [[package]] 677 - name = "link-cplusplus" 678 - version = "1.0.8" 679 - source = "registry+https://github.com/rust-lang/crates.io-index" 680 - checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" 681 - dependencies = [ 682 - "cc", 683 - ] 651 + checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 684 652 685 653 [[package]] 686 654 name = "linux-raw-sys" 687 - version = "0.1.4" 655 + version = "0.4.5" 688 656 source = "registry+https://github.com/rust-lang/crates.io-index" 689 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 657 + checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 690 658 691 659 [[package]] 692 660 name = "log" 693 - version = "0.4.17" 661 + version = "0.4.20" 694 662 source = "registry+https://github.com/rust-lang/crates.io-index" 695 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 696 - dependencies = [ 697 - "cfg-if", 698 - ] 663 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 699 664 700 665 [[package]] 701 666 name = "memchr" ··· 705 670 706 671 [[package]] 707 672 name = "mime" 708 - version = "0.3.16" 673 + version = "0.3.17" 709 674 source = "registry+https://github.com/rust-lang/crates.io-index" 710 - checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 675 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 676 + 677 + [[package]] 678 + name = "miniz_oxide" 679 + version = "0.7.1" 680 + source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 682 + dependencies = [ 683 + "adler", 684 + ] 711 685 712 686 [[package]] 713 687 name = "mio" 714 - version = "0.8.6" 688 + version = "0.8.8" 715 689 source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 690 + checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 717 691 dependencies = [ 718 692 "libc", 719 - "log", 720 693 "wasi", 721 - "windows-sys 0.45.0", 694 + "windows-sys", 722 695 ] 723 696 724 697 [[package]] ··· 762 735 763 736 [[package]] 764 737 name = "num-traits" 765 - version = "0.2.15" 738 + version = "0.2.16" 766 739 source = "registry+https://github.com/rust-lang/crates.io-index" 767 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 740 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 768 741 dependencies = [ 769 742 "autocfg", 770 743 ] 771 744 772 745 [[package]] 773 746 name = "num_cpus" 774 - version = "1.15.0" 747 + version = "1.16.0" 775 748 source = "registry+https://github.com/rust-lang/crates.io-index" 776 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 749 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 777 750 dependencies = [ 778 - "hermit-abi 0.2.6", 751 + "hermit-abi 0.3.2", 779 752 "libc", 780 753 ] 781 754 782 755 [[package]] 783 756 name = "oauth2" 784 - version = "4.3.0" 757 + version = "4.4.1" 785 758 source = "registry+https://github.com/rust-lang/crates.io-index" 786 - checksum = "eeaf26a72311c087f8c5ba617c96fac67a5c04f430e716ac8d8ab2de62e23368" 759 + checksum = "09a6e2a2b13a56ebeabba9142f911745be6456163fd6c3d361274ebcd891a80c" 787 760 dependencies = [ 788 761 "base64 0.13.1", 789 762 "chrono", ··· 800 773 ] 801 774 802 775 [[package]] 776 + name = "object" 777 + version = "0.31.1" 778 + source = "registry+https://github.com/rust-lang/crates.io-index" 779 + checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" 780 + dependencies = [ 781 + "memchr", 782 + ] 783 + 784 + [[package]] 803 785 name = "once_cell" 804 - version = "1.17.1" 786 + version = "1.18.0" 805 787 source = "registry+https://github.com/rust-lang/crates.io-index" 806 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 788 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 807 789 808 790 [[package]] 809 791 name = "openidconnect" 810 - version = "2.5.0" 792 + version = "2.5.1" 811 793 source = "registry+https://github.com/rust-lang/crates.io-index" 812 - checksum = "32a0f47b0f1499d08c4a8480c963d49c5ec77f4249c2b6869780979415f45809" 794 + checksum = "98dd5b7049bac4fdd2233b8c9767d42c05da8006fdb79cc903258556d2b18009" 813 795 dependencies = [ 814 796 "base64 0.13.1", 815 797 "chrono", ··· 834 816 835 817 [[package]] 836 818 name = "openssl" 837 - version = "0.10.45" 819 + version = "0.10.56" 838 820 source = "registry+https://github.com/rust-lang/crates.io-index" 839 - checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1" 821 + checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" 840 822 dependencies = [ 841 - "bitflags", 823 + "bitflags 1.3.2", 842 824 "cfg-if", 843 825 "foreign-types", 844 826 "libc", ··· 849 831 850 832 [[package]] 851 833 name = "openssl-macros" 852 - version = "0.1.0" 834 + version = "0.1.1" 853 835 source = "registry+https://github.com/rust-lang/crates.io-index" 854 - checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 836 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 855 837 dependencies = [ 856 838 "proc-macro2", 857 839 "quote", 858 - "syn", 840 + "syn 2.0.29", 859 841 ] 860 842 861 843 [[package]] ··· 866 848 867 849 [[package]] 868 850 name = "openssl-sys" 869 - version = "0.9.80" 851 + version = "0.9.91" 870 852 source = "registry+https://github.com/rust-lang/crates.io-index" 871 - checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7" 853 + checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac" 872 854 dependencies = [ 873 - "autocfg", 874 855 "cc", 875 856 "libc", 876 857 "pkg-config", ··· 888 869 889 870 [[package]] 890 871 name = "percent-encoding" 891 - version = "2.2.0" 872 + version = "2.3.0" 892 873 source = "registry+https://github.com/rust-lang/crates.io-index" 893 - checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 874 + checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 894 875 895 876 [[package]] 896 877 name = "pin-project-lite" 897 - version = "0.2.9" 878 + version = "0.2.12" 898 879 source = "registry+https://github.com/rust-lang/crates.io-index" 899 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 880 + checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 900 881 901 882 [[package]] 902 883 name = "pin-utils" ··· 906 887 907 888 [[package]] 908 889 name = "pkg-config" 909 - version = "0.3.26" 890 + version = "0.3.27" 910 891 source = "registry+https://github.com/rust-lang/crates.io-index" 911 - checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 892 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 912 893 913 894 [[package]] 914 895 name = "ppv-lite86" ··· 918 899 919 900 [[package]] 920 901 name = "proc-macro2" 921 - version = "1.0.51" 902 + version = "1.0.66" 922 903 source = "registry+https://github.com/rust-lang/crates.io-index" 923 - checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" 904 + checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 924 905 dependencies = [ 925 906 "unicode-ident", 926 907 ] 927 908 928 909 [[package]] 929 910 name = "quote" 930 - version = "1.0.23" 911 + version = "1.0.33" 931 912 source = "registry+https://github.com/rust-lang/crates.io-index" 932 - checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 913 + checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 933 914 dependencies = [ 934 915 "proc-macro2", 935 916 ] ··· 966 947 967 948 [[package]] 968 949 name = "redox_syscall" 969 - version = "0.2.16" 950 + version = "0.3.5" 970 951 source = "registry+https://github.com/rust-lang/crates.io-index" 971 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 952 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 972 953 dependencies = [ 973 - "bitflags", 954 + "bitflags 1.3.2", 974 955 ] 975 956 976 957 [[package]] 977 958 name = "reqwest" 978 - version = "0.11.14" 959 + version = "0.11.18" 979 960 source = "registry+https://github.com/rust-lang/crates.io-index" 980 - checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" 961 + checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 981 962 dependencies = [ 982 - "base64 0.21.0", 963 + "base64 0.21.2", 983 964 "bytes", 984 965 "encoding_rs", 985 966 "futures-core", ··· 1026 1007 ] 1027 1008 1028 1009 [[package]] 1010 + name = "rustc-demangle" 1011 + version = "0.1.23" 1012 + source = "registry+https://github.com/rust-lang/crates.io-index" 1013 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1014 + 1015 + [[package]] 1029 1016 name = "rustix" 1030 - version = "0.36.8" 1017 + version = "0.38.8" 1031 1018 source = "registry+https://github.com/rust-lang/crates.io-index" 1032 - checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644" 1019 + checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" 1033 1020 dependencies = [ 1034 - "bitflags", 1021 + "bitflags 2.4.0", 1035 1022 "errno", 1036 - "io-lifetimes", 1037 1023 "libc", 1038 1024 "linux-raw-sys", 1039 - "windows-sys 0.45.0", 1025 + "windows-sys", 1040 1026 ] 1041 1027 1042 1028 [[package]] 1043 1029 name = "ryu" 1044 - version = "1.0.12" 1030 + version = "1.0.15" 1045 1031 source = "registry+https://github.com/rust-lang/crates.io-index" 1046 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 1032 + checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 1047 1033 1048 1034 [[package]] 1049 1035 name = "schannel" 1050 - version = "0.1.21" 1036 + version = "0.1.22" 1051 1037 source = "registry+https://github.com/rust-lang/crates.io-index" 1052 - checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 1038 + checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 1053 1039 dependencies = [ 1054 - "windows-sys 0.42.0", 1040 + "windows-sys", 1055 1041 ] 1056 1042 1057 1043 [[package]] 1058 - name = "scratch" 1059 - version = "1.0.3" 1060 - source = "registry+https://github.com/rust-lang/crates.io-index" 1061 - checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" 1062 - 1063 - [[package]] 1064 1044 name = "security-framework" 1065 - version = "2.8.2" 1045 + version = "2.9.2" 1066 1046 source = "registry+https://github.com/rust-lang/crates.io-index" 1067 - checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 1047 + checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 1068 1048 dependencies = [ 1069 - "bitflags", 1049 + "bitflags 1.3.2", 1070 1050 "core-foundation", 1071 1051 "core-foundation-sys", 1072 1052 "libc", ··· 1075 1055 1076 1056 [[package]] 1077 1057 name = "security-framework-sys" 1078 - version = "2.8.0" 1058 + version = "2.9.1" 1079 1059 source = "registry+https://github.com/rust-lang/crates.io-index" 1080 - checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 1060 + checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 1081 1061 dependencies = [ 1082 1062 "core-foundation-sys", 1083 1063 "libc", ··· 1085 1065 1086 1066 [[package]] 1087 1067 name = "serde" 1088 - version = "1.0.152" 1068 + version = "1.0.183" 1089 1069 source = "registry+https://github.com/rust-lang/crates.io-index" 1090 - checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 1070 + checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" 1091 1071 dependencies = [ 1092 1072 "serde_derive", 1093 1073 ] ··· 1104 1084 1105 1085 [[package]] 1106 1086 name = "serde_derive" 1107 - version = "1.0.152" 1087 + version = "1.0.183" 1108 1088 source = "registry+https://github.com/rust-lang/crates.io-index" 1109 - checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 1089 + checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" 1110 1090 dependencies = [ 1111 1091 "proc-macro2", 1112 1092 "quote", 1113 - "syn", 1093 + "syn 2.0.29", 1114 1094 ] 1115 1095 1116 1096 [[package]] 1117 1097 name = "serde_json" 1118 - version = "1.0.93" 1098 + version = "1.0.105" 1119 1099 source = "registry+https://github.com/rust-lang/crates.io-index" 1120 - checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" 1100 + checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" 1121 1101 dependencies = [ 1122 1102 "itoa", 1123 1103 "ryu", ··· 1126 1106 1127 1107 [[package]] 1128 1108 name = "serde_path_to_error" 1129 - version = "0.1.9" 1109 + version = "0.1.14" 1130 1110 source = "registry+https://github.com/rust-lang/crates.io-index" 1131 - checksum = "26b04f22b563c91331a10074bda3dd5492e3cc39d56bd557e91c0af42b6c7341" 1111 + checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" 1132 1112 dependencies = [ 1113 + "itoa", 1133 1114 "serde", 1134 1115 ] 1135 1116 ··· 1173 1154 "darling", 1174 1155 "proc-macro2", 1175 1156 "quote", 1176 - "syn", 1157 + "syn 1.0.109", 1177 1158 ] 1178 1159 1179 1160 [[package]] 1180 1161 name = "sha2" 1181 - version = "0.10.6" 1162 + version = "0.10.7" 1182 1163 source = "registry+https://github.com/rust-lang/crates.io-index" 1183 - checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 1164 + checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 1184 1165 dependencies = [ 1185 1166 "cfg-if", 1186 1167 "cpufeatures", ··· 1198 1179 1199 1180 [[package]] 1200 1181 name = "socket2" 1201 - version = "0.4.7" 1182 + version = "0.4.9" 1202 1183 source = "registry+https://github.com/rust-lang/crates.io-index" 1203 - checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 1184 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 1204 1185 dependencies = [ 1205 1186 "libc", 1206 1187 "winapi", 1207 1188 ] 1208 1189 1209 1190 [[package]] 1191 + name = "socket2" 1192 + version = "0.5.3" 1193 + source = "registry+https://github.com/rust-lang/crates.io-index" 1194 + checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" 1195 + dependencies = [ 1196 + "libc", 1197 + "windows-sys", 1198 + ] 1199 + 1200 + [[package]] 1210 1201 name = "spin" 1211 1202 version = "0.5.2" 1212 1203 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1226 1217 1227 1218 [[package]] 1228 1219 name = "subtle" 1229 - version = "2.4.1" 1220 + version = "2.5.0" 1230 1221 source = "registry+https://github.com/rust-lang/crates.io-index" 1231 - checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 1222 + checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 1232 1223 1233 1224 [[package]] 1234 1225 name = "syn" ··· 1242 1233 ] 1243 1234 1244 1235 [[package]] 1245 - name = "tempfile" 1246 - version = "3.4.0" 1236 + name = "syn" 1237 + version = "2.0.29" 1247 1238 source = "registry+https://github.com/rust-lang/crates.io-index" 1248 - checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" 1239 + checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 1249 1240 dependencies = [ 1250 - "cfg-if", 1251 - "fastrand", 1252 - "redox_syscall", 1253 - "rustix", 1254 - "windows-sys 0.42.0", 1241 + "proc-macro2", 1242 + "quote", 1243 + "unicode-ident", 1255 1244 ] 1256 1245 1257 1246 [[package]] 1258 - name = "termcolor" 1259 - version = "1.2.0" 1247 + name = "tempfile" 1248 + version = "3.7.1" 1260 1249 source = "registry+https://github.com/rust-lang/crates.io-index" 1261 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 1250 + checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" 1262 1251 dependencies = [ 1263 - "winapi-util", 1252 + "cfg-if", 1253 + "fastrand", 1254 + "redox_syscall", 1255 + "rustix", 1256 + "windows-sys", 1264 1257 ] 1265 1258 1266 1259 [[package]] ··· 1274 1267 1275 1268 [[package]] 1276 1269 name = "thiserror" 1277 - version = "1.0.38" 1270 + version = "1.0.47" 1278 1271 source = "registry+https://github.com/rust-lang/crates.io-index" 1279 - checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 1272 + checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" 1280 1273 dependencies = [ 1281 1274 "thiserror-impl", 1282 1275 ] 1283 1276 1284 1277 [[package]] 1285 1278 name = "thiserror-impl" 1286 - version = "1.0.38" 1279 + version = "1.0.47" 1287 1280 source = "registry+https://github.com/rust-lang/crates.io-index" 1288 - checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 1281 + checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" 1289 1282 dependencies = [ 1290 1283 "proc-macro2", 1291 1284 "quote", 1292 - "syn", 1285 + "syn 2.0.29", 1293 1286 ] 1294 1287 1295 1288 [[package]] 1296 1289 name = "time" 1297 - version = "0.3.20" 1290 + version = "0.3.25" 1298 1291 source = "registry+https://github.com/rust-lang/crates.io-index" 1299 - checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 1292 + checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" 1300 1293 dependencies = [ 1294 + "deranged", 1301 1295 "itoa", 1302 1296 "serde", 1303 1297 "time-core", ··· 1306 1300 1307 1301 [[package]] 1308 1302 name = "time-core" 1309 - version = "0.1.0" 1303 + version = "0.1.1" 1310 1304 source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 1305 + checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 1312 1306 1313 1307 [[package]] 1314 1308 name = "time-macros" 1315 - version = "0.2.8" 1309 + version = "0.2.11" 1316 1310 source = "registry+https://github.com/rust-lang/crates.io-index" 1317 - checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" 1311 + checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd" 1318 1312 dependencies = [ 1319 1313 "time-core", 1320 1314 ] ··· 1336 1330 1337 1331 [[package]] 1338 1332 name = "tokio" 1339 - version = "1.26.0" 1333 + version = "1.32.0" 1340 1334 source = "registry+https://github.com/rust-lang/crates.io-index" 1341 - checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" 1335 + checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 1342 1336 dependencies = [ 1343 - "autocfg", 1337 + "backtrace", 1344 1338 "bytes", 1345 1339 "libc", 1346 - "memchr", 1347 1340 "mio", 1348 1341 "num_cpus", 1349 1342 "pin-project-lite", 1350 - "socket2", 1351 - "windows-sys 0.45.0", 1343 + "socket2 0.5.3", 1344 + "windows-sys", 1352 1345 ] 1353 1346 1354 1347 [[package]] ··· 1363 1356 1364 1357 [[package]] 1365 1358 name = "tokio-util" 1366 - version = "0.7.7" 1359 + version = "0.7.8" 1367 1360 source = "registry+https://github.com/rust-lang/crates.io-index" 1368 - checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" 1361 + checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 1369 1362 dependencies = [ 1370 1363 "bytes", 1371 1364 "futures-core", ··· 1403 1396 1404 1397 [[package]] 1405 1398 name = "tracing-core" 1406 - version = "0.1.30" 1399 + version = "0.1.31" 1407 1400 source = "registry+https://github.com/rust-lang/crates.io-index" 1408 - checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 1401 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 1409 1402 dependencies = [ 1410 1403 "once_cell", 1411 1404 ] ··· 1424 1417 1425 1418 [[package]] 1426 1419 name = "unicode-bidi" 1427 - version = "0.3.10" 1420 + version = "0.3.13" 1428 1421 source = "registry+https://github.com/rust-lang/crates.io-index" 1429 - checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" 1422 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 1430 1423 1431 1424 [[package]] 1432 1425 name = "unicode-ident" 1433 - version = "1.0.6" 1426 + version = "1.0.11" 1434 1427 source = "registry+https://github.com/rust-lang/crates.io-index" 1435 - checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 1428 + checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 1436 1429 1437 1430 [[package]] 1438 1431 name = "unicode-normalization" ··· 1463 1456 1464 1457 [[package]] 1465 1458 name = "url" 1466 - version = "2.3.1" 1459 + version = "2.4.0" 1467 1460 source = "registry+https://github.com/rust-lang/crates.io-index" 1468 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 1461 + checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 1469 1462 dependencies = [ 1470 1463 "form_urlencoded", 1471 1464 "idna", ··· 1493 1486 1494 1487 [[package]] 1495 1488 name = "want" 1496 - version = "0.3.0" 1489 + version = "0.3.1" 1497 1490 source = "registry+https://github.com/rust-lang/crates.io-index" 1498 - checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 1491 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1499 1492 dependencies = [ 1500 - "log", 1501 1493 "try-lock", 1502 1494 ] 1503 1495 ··· 1509 1501 1510 1502 [[package]] 1511 1503 name = "wasm-bindgen" 1512 - version = "0.2.84" 1504 + version = "0.2.87" 1513 1505 source = "registry+https://github.com/rust-lang/crates.io-index" 1514 - checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 1506 + checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 1515 1507 dependencies = [ 1516 1508 "cfg-if", 1517 1509 "wasm-bindgen-macro", ··· 1519 1511 1520 1512 [[package]] 1521 1513 name = "wasm-bindgen-backend" 1522 - version = "0.2.84" 1514 + version = "0.2.87" 1523 1515 source = "registry+https://github.com/rust-lang/crates.io-index" 1524 - checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 1516 + checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 1525 1517 dependencies = [ 1526 1518 "bumpalo", 1527 1519 "log", 1528 1520 "once_cell", 1529 1521 "proc-macro2", 1530 1522 "quote", 1531 - "syn", 1523 + "syn 2.0.29", 1532 1524 "wasm-bindgen-shared", 1533 1525 ] 1534 1526 1535 1527 [[package]] 1536 1528 name = "wasm-bindgen-futures" 1537 - version = "0.4.34" 1529 + version = "0.4.37" 1538 1530 source = "registry+https://github.com/rust-lang/crates.io-index" 1539 - checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 1531 + checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 1540 1532 dependencies = [ 1541 1533 "cfg-if", 1542 1534 "js-sys", ··· 1546 1538 1547 1539 [[package]] 1548 1540 name = "wasm-bindgen-macro" 1549 - version = "0.2.84" 1541 + version = "0.2.87" 1550 1542 source = "registry+https://github.com/rust-lang/crates.io-index" 1551 - checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 1543 + checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 1552 1544 dependencies = [ 1553 1545 "quote", 1554 1546 "wasm-bindgen-macro-support", ··· 1556 1548 1557 1549 [[package]] 1558 1550 name = "wasm-bindgen-macro-support" 1559 - version = "0.2.84" 1551 + version = "0.2.87" 1560 1552 source = "registry+https://github.com/rust-lang/crates.io-index" 1561 - checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 1553 + checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 1562 1554 dependencies = [ 1563 1555 "proc-macro2", 1564 1556 "quote", 1565 - "syn", 1557 + "syn 2.0.29", 1566 1558 "wasm-bindgen-backend", 1567 1559 "wasm-bindgen-shared", 1568 1560 ] 1569 1561 1570 1562 [[package]] 1571 1563 name = "wasm-bindgen-shared" 1572 - version = "0.2.84" 1564 + version = "0.2.87" 1573 1565 source = "registry+https://github.com/rust-lang/crates.io-index" 1574 - checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 1566 + checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 1575 1567 1576 1568 [[package]] 1577 1569 name = "web-sys" 1578 - version = "0.3.61" 1570 + version = "0.3.64" 1579 1571 source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 1572 + checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 1581 1573 dependencies = [ 1582 1574 "js-sys", 1583 1575 "wasm-bindgen", ··· 1600 1592 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1601 1593 1602 1594 [[package]] 1603 - name = "winapi-util" 1604 - version = "0.1.5" 1605 - source = "registry+https://github.com/rust-lang/crates.io-index" 1606 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1607 - dependencies = [ 1608 - "winapi", 1609 - ] 1610 - 1611 - [[package]] 1612 1595 name = "winapi-x86_64-pc-windows-gnu" 1613 1596 version = "0.4.0" 1614 1597 source = "registry+https://github.com/rust-lang/crates.io-index" 1615 1598 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1616 1599 1617 1600 [[package]] 1618 - name = "windows-sys" 1619 - version = "0.42.0" 1601 + name = "windows" 1602 + version = "0.48.0" 1620 1603 source = "registry+https://github.com/rust-lang/crates.io-index" 1621 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1604 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 1622 1605 dependencies = [ 1623 - "windows_aarch64_gnullvm", 1624 - "windows_aarch64_msvc", 1625 - "windows_i686_gnu", 1626 - "windows_i686_msvc", 1627 - "windows_x86_64_gnu", 1628 - "windows_x86_64_gnullvm", 1629 - "windows_x86_64_msvc", 1606 + "windows-targets", 1630 1607 ] 1631 1608 1632 1609 [[package]] 1633 1610 name = "windows-sys" 1634 - version = "0.45.0" 1611 + version = "0.48.0" 1635 1612 source = "registry+https://github.com/rust-lang/crates.io-index" 1636 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1613 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1637 1614 dependencies = [ 1638 1615 "windows-targets", 1639 1616 ] 1640 1617 1641 1618 [[package]] 1642 1619 name = "windows-targets" 1643 - version = "0.42.1" 1620 + version = "0.48.5" 1644 1621 source = "registry+https://github.com/rust-lang/crates.io-index" 1645 - checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 1622 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1646 1623 dependencies = [ 1647 1624 "windows_aarch64_gnullvm", 1648 1625 "windows_aarch64_msvc", ··· 1655 1632 1656 1633 [[package]] 1657 1634 name = "windows_aarch64_gnullvm" 1658 - version = "0.42.1" 1635 + version = "0.48.5" 1659 1636 source = "registry+https://github.com/rust-lang/crates.io-index" 1660 - checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 1637 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1661 1638 1662 1639 [[package]] 1663 1640 name = "windows_aarch64_msvc" 1664 - version = "0.42.1" 1641 + version = "0.48.5" 1665 1642 source = "registry+https://github.com/rust-lang/crates.io-index" 1666 - checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 1643 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1667 1644 1668 1645 [[package]] 1669 1646 name = "windows_i686_gnu" 1670 - version = "0.42.1" 1647 + version = "0.48.5" 1671 1648 source = "registry+https://github.com/rust-lang/crates.io-index" 1672 - checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 1649 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1673 1650 1674 1651 [[package]] 1675 1652 name = "windows_i686_msvc" 1676 - version = "0.42.1" 1653 + version = "0.48.5" 1677 1654 source = "registry+https://github.com/rust-lang/crates.io-index" 1678 - checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 1655 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1679 1656 1680 1657 [[package]] 1681 1658 name = "windows_x86_64_gnu" 1682 - version = "0.42.1" 1659 + version = "0.48.5" 1683 1660 source = "registry+https://github.com/rust-lang/crates.io-index" 1684 - checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 1661 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1685 1662 1686 1663 [[package]] 1687 1664 name = "windows_x86_64_gnullvm" 1688 - version = "0.42.1" 1665 + version = "0.48.5" 1689 1666 source = "registry+https://github.com/rust-lang/crates.io-index" 1690 - checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 1667 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1691 1668 1692 1669 [[package]] 1693 1670 name = "windows_x86_64_msvc" 1694 - version = "0.42.1" 1671 + version = "0.48.5" 1695 1672 source = "registry+https://github.com/rust-lang/crates.io-index" 1696 - checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 1673 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1697 1674 1698 1675 [[package]] 1699 1676 name = "winreg" ··· 1708 1685 name = "zeroidc" 1709 1686 version = "0.1.0" 1710 1687 dependencies = [ 1711 - "base64 0.21.0", 1688 + "base64 0.21.2", 1712 1689 "bytes", 1713 1690 "cbindgen", 1714 1691 "jwt",
+2 -6
pkgs/tools/networking/zerotierone/default.nix
··· 2 2 , stdenv 3 3 , rustPlatform 4 4 , fetchFromGitHub 5 - 6 5 , buildPackages 7 6 , cargo 8 - , iproute2 9 7 , lzo 10 8 , openssl 11 9 , pkg-config ··· 16 14 17 15 let 18 16 pname = "zerotierone"; 19 - version = "1.10.6"; 17 + version = "1.12.1"; 20 18 21 19 src = fetchFromGitHub { 22 20 owner = "zerotier"; 23 21 repo = "ZeroTierOne"; 24 22 rev = version; 25 - sha256 = "sha256-mapFKeF+8jMGkxSuHaw5oUdTdSQgAdxEwF/S6iyVLbY="; 23 + sha256 = "sha256-430wdPrSNohM3sXewusjsW3tbE7EFGISGxABZF21yRc="; 26 24 }; 27 25 28 26 in stdenv.mkDerivation { ··· 62 60 lzo 63 61 openssl 64 62 zlib 65 - ] ++ lib.optional stdenv.isLinux [ 66 - iproute2 67 63 ]; 68 64 69 65 enableParallelBuilding = true;
+10
pkgs/top-level/all-packages.nix
··· 3330 3330 3331 3331 azure-storage-azcopy = callPackage ../development/tools/azcopy { }; 3332 3332 3333 + bark = callPackage ../tools/audio/bark { }; 3334 + 3333 3335 bashblog = callPackage ../tools/text/bashblog { }; 3334 3336 3335 3337 berglas = callPackage ../tools/admin/berglas { }; ··· 4241 4243 bchunk = callPackage ../tools/cd-dvd/bchunk { }; 4242 4244 4243 4245 inherit (callPackages ../misc/logging/beats/7.x.nix { }) 4246 + auditbeat7 4244 4247 filebeat7 4245 4248 heartbeat7 4246 4249 metricbeat7 4247 4250 packetbeat7; 4248 4251 4252 + auditbeat = auditbeat7; 4249 4253 filebeat = filebeat7; 4250 4254 heartbeat = heartbeat7; 4251 4255 metricbeat = metricbeat7; ··· 12321 12325 outils = callPackage ../tools/misc/outils { }; 12322 12326 12323 12327 mpi = openmpi; # this attribute should used to build MPI applications 12328 + mpiCheckPhaseHook = callPackage ../build-support/setup-hooks/mpi-check-hook { }; 12324 12329 12325 12330 ucc = callPackage ../development/libraries/ucc { }; 12326 12331 ··· 17223 17228 }; 17224 17229 cargo-readme = callPackage ../development/tools/rust/cargo-readme { }; 17225 17230 cargo-risczero = callPackage ../development/tools/rust/cargo-risczero { }; 17231 + cargo-run-bin = callPackage ../development/tools/rust/cargo-run-bin {}; 17226 17232 cargo-semver-checks = callPackage ../development/tools/rust/cargo-semver-checks { }; 17227 17233 17228 17234 cargo-show-asm = callPackage ../development/tools/rust/cargo-show-asm { }; ··· 30279 30285 30280 30286 whitesur-icon-theme = callPackage ../data/icons/whitesur-icon-theme { }; 30281 30287 30288 + whitesur-kde = callPackage ../data/themes/whitesur-kde { }; 30289 + 30282 30290 wireless-regdb = callPackage ../data/misc/wireless-regdb { }; 30283 30291 30284 30292 work-sans = callPackage ../data/fonts/work-sans { }; ··· 35377 35385 skypeforlinux = callPackage ../applications/networking/instant-messengers/skypeforlinux { }; 35378 35386 35379 35387 SkypeExport = callPackage ../applications/networking/instant-messengers/SkypeExport { }; 35388 + 35389 + slingshot = callPackage ../tools/misc/slingshot { }; 35380 35390 35381 35391 slop = callPackage ../tools/misc/slop { }; 35382 35392
+4
pkgs/top-level/python-packages.nix
··· 1537 1537 1538 1538 botocore = callPackage ../development/python-modules/botocore { }; 1539 1539 1540 + botocore-stubs = callPackage ../development/python-modules/botocore-stubs { }; 1541 + 1540 1542 botorch = callPackage ../development/python-modules/botorch { }; 1541 1543 1542 1544 bottle = callPackage ../development/python-modules/bottle { }; ··· 13133 13135 typer = callPackage ../development/python-modules/typer { }; 13134 13136 13135 13137 types-appdirs = callPackage ../development/python-modules/types-appdirs { }; 13138 + 13139 + types-awscrt = callPackage ../development/python-modules/types-awscrt { }; 13136 13140 13137 13141 types-beautifulsoup4 = callPackage ../development/python-modules/types-beautifulsoup4 { }; 13138 13142
+4
pkgs/top-level/python2-packages.nix
··· 37 37 38 38 more-itertools = callPackage ../development/python2-modules/more-itertools { }; 39 39 40 + # ninja python stub was created to help simplify python builds using PyPA's 41 + # build tool in Python 3, but it does not yet support Python 2 42 + ninja = pkgs.buildPackages.ninja; 43 + 40 44 packaging = callPackage ../development/python2-modules/packaging { }; 41 45 42 46 pip = callPackage ../development/python2-modules/pip { };