Merge master into staging-next

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

+2461 -1788
+1
doc/hooks/index.md
··· 17 libiconv.section.md 18 libxml2.section.md 19 meson.section.md 20 ninja.section.md 21 patch-rc-path-hooks.section.md 22 perl.section.md
··· 17 libiconv.section.md 18 libxml2.section.md 19 meson.section.md 20 + mpi-check-hook.section.md 21 ninja.section.md 22 patch-rc-path-hooks.section.md 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 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) ··· 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)
··· 39 ENDIF(_qsci_metadata) 40 41 IF(QSCI_MOD_VERSION_STR) 42 + - SET(QSCI_SIP_DIR "${PYQT_SIP_DIR}") 43 + SET(QSCI_SIP_DIR "@qsciPackageDir@/PyQt5/bindings") 44 SET(QSCI_FOUND TRUE) 45 ENDIF(QSCI_MOD_VERSION_STR) ··· 48 index 4cd19c3af4..668cc6a5e6 100644 49 --- a/python/CMakeLists.txt 50 +++ b/python/CMakeLists.txt 51 + @@ -212,7 +212,7 @@ if (WITH_GUI) 52 install(FILES ${QGIS_PYTHON_OUTPUT_DIRECTORY}/_gui.pyi DESTINATION ${QGIS_PYTHON_DIR}) 53 endif() 54 if(QSCI_SIP_DIR)
+1 -1
pkgs/applications/gis/qgis/unwrapped-ltr.nix
··· 124 125 patches = [ 126 (substituteAll { 127 - src = ./set-pyqt-package-dirs.patch; 128 pyQt5PackageDir = "${py.pkgs.pyqt5}/${py.pkgs.python.sitePackages}"; 129 qsciPackageDir = "${py.pkgs.qscintilla-qt5}/${py.pkgs.python.sitePackages}"; 130 })
··· 124 125 patches = [ 126 (substituteAll { 127 + src = ./set-pyqt-package-dirs-ltr.patch; 128 pyQt5PackageDir = "${py.pkgs.pyqt5}/${py.pkgs.python.sitePackages}"; 129 qsciPackageDir = "${py.pkgs.qscintilla-qt5}/${py.pkgs.python.sitePackages}"; 130 })
+80 -57
pkgs/applications/gis/qgis/unwrapped.nix
··· 1 { lib 2 , mkDerivation 3 - , fetchFromGitHub 4 , cmake 5 - , ninja 6 , flex 7 - , bison 8 - , proj 9 , geos 10 - , sqlite 11 , gsl 12 - , qwt 13 - , fcgi 14 - , python3 15 , libspatialindex 16 , libspatialite 17 - , postgresql 18 - , txt2tags 19 - , openssl 20 , libzip 21 - , hdf5 22 , netcdf 23 - , exiv2 24 , protobuf 25 , qtbase 26 - , qtsensors 27 - , qca-qt5 28 , qtkeychain 29 - , qt3d 30 - , qscintilla 31 , qtlocation 32 , qtserialport 33 , qtxmlpatterns 34 - , withGrass ? true 35 - , grass 36 - , withWebKit ? false 37 - , qtwebkit 38 - , pdal 39 , zstd 40 - , makeWrapper 41 - , wrapGAppsHook 42 - , substituteAll 43 }: 44 45 let 46 - 47 py = python3.override { 48 packageOverrides = self: super: { 49 pyqt5 = super.pyqt5.override { ··· 53 }; 54 55 pythonBuildInputs = with py.pkgs; [ 56 - qscintilla-qt5 57 gdal 58 jinja2 59 numpy 60 psycopg2 61 - chardet 62 python-dateutil 63 - pyyaml 64 pytz 65 requests 66 - urllib3 67 - pygments 68 - pyqt5 69 - pyqt-builder 70 sip 71 - setuptools 72 - owslib 73 six 74 ]; 75 in mkDerivation rec { 76 - version = "3.28.3"; 77 pname = "qgis-unwrapped"; 78 79 src = fetchFromGitHub { 80 owner = "qgis"; 81 repo = "QGIS"; 82 rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}"; 83 - hash = "sha256-nXauZSC78BX1fcx0SXniwQpRmdSLfoqZ5jlbXeHgRGI="; 84 }; 85 86 passthru = { ··· 88 inherit py; 89 }; 90 91 buildInputs = [ 92 - openssl 93 - proj 94 geos 95 - sqlite 96 gsl 97 - qwt 98 - exiv2 99 - protobuf 100 - fcgi 101 libspatialindex 102 libspatialite 103 - postgresql 104 - txt2tags 105 libzip 106 - hdf5 107 netcdf 108 - qtbase 109 - qtsensors 110 qca-qt5 111 - qtkeychain 112 qscintilla 113 qtlocation 114 qtserialport 115 qtxmlpatterns 116 - qt3d 117 - pdal 118 zstd 119 ] ++ lib.optional withGrass grass 120 ++ lib.optional withWebKit qtwebkit 121 ++ pythonBuildInputs; 122 123 - nativeBuildInputs = [ makeWrapper wrapGAppsHook cmake flex bison ninja ]; 124 - 125 patches = [ 126 (substituteAll { 127 src = ./set-pyqt-package-dirs.patch; ··· 130 }) 131 ]; 132 133 cmakeFlags = [ 134 "-DWITH_3D=True" 135 "-DWITH_PDAL=TRUE" ··· 140 in "-DGRASS_PREFIX${gmajor}=${grass}/grass${gmajor}${gminor}" 141 ); 142 143 dontWrapGApps = true; # wrapper params passed below 144 145 postFixup = lib.optionalString withGrass '' 146 - # grass has to be availble on the command line even though we baked in 147 # the path at build time using GRASS_PREFIX. 148 - # using wrapGAppsHook also prevents file dialogs from crashing the program 149 - # on non-NixOS 150 wrapProgram $out/bin/qgis \ 151 "''${gappsWrapperArgs[@]}" \ 152 --prefix PATH : ${lib.makeBinPath [ grass ]}
··· 1 { lib 2 + , fetchFromGitHub 3 + , makeWrapper 4 , mkDerivation 5 + , substituteAll 6 + , wrapGAppsHook 7 + , wrapQtAppsHook 8 + 9 + , withGrass ? true 10 + , withWebKit ? false 11 + 12 + , bison 13 , cmake 14 + , exiv2 15 + , fcgi 16 , flex 17 , geos 18 + , grass 19 , gsl 20 + , hdf5 21 , libspatialindex 22 , libspatialite 23 , libzip 24 , netcdf 25 + , ninja 26 + , openssl 27 + , pdal 28 + , postgresql 29 + , proj 30 , protobuf 31 + , python3 32 + , qca-qt5 33 + , qscintilla 34 + , qt3d 35 , qtbase 36 , qtkeychain 37 , qtlocation 38 + , qtmultimedia 39 + , qtsensors 40 , qtserialport 41 + , qtwebkit 42 , qtxmlpatterns 43 + , qwt 44 + , sqlite 45 + , txt2tags 46 , zstd 47 }: 48 49 let 50 py = python3.override { 51 packageOverrides = self: super: { 52 pyqt5 = super.pyqt5.override { ··· 56 }; 57 58 pythonBuildInputs = with py.pkgs; [ 59 + chardet 60 gdal 61 jinja2 62 numpy 63 + owslib 64 psycopg2 65 + pygments 66 + pyqt-builder 67 + pyqt5 68 python-dateutil 69 pytz 70 + pyyaml 71 + qscintilla-qt5 72 requests 73 + setuptools 74 sip 75 six 76 + urllib3 77 ]; 78 in mkDerivation rec { 79 + version = "3.32.2"; 80 pname = "qgis-unwrapped"; 81 82 src = fetchFromGitHub { 83 owner = "qgis"; 84 repo = "QGIS"; 85 rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}"; 86 + hash = "sha256-4Hcppzgst6v7SR/06ZICSujC4Gfckd/X5Mj40fh9OOU="; 87 }; 88 89 passthru = { ··· 91 inherit py; 92 }; 93 94 + nativeBuildInputs = [ 95 + makeWrapper 96 + wrapGAppsHook 97 + wrapQtAppsHook 98 + 99 + cmake 100 + flex 101 + bison 102 + ninja 103 + ]; 104 + 105 buildInputs = [ 106 + exiv2 107 + fcgi 108 geos 109 gsl 110 + hdf5 111 libspatialindex 112 libspatialite 113 libzip 114 netcdf 115 + openssl 116 + pdal 117 + postgresql 118 + proj 119 + protobuf 120 qca-qt5 121 qscintilla 122 + qt3d 123 + qtbase 124 + qtkeychain 125 qtlocation 126 + qtmultimedia 127 + qtsensors 128 qtserialport 129 qtxmlpatterns 130 + qwt 131 + sqlite 132 + txt2tags 133 zstd 134 ] ++ lib.optional withGrass grass 135 ++ lib.optional withWebKit qtwebkit 136 ++ pythonBuildInputs; 137 138 patches = [ 139 (substituteAll { 140 src = ./set-pyqt-package-dirs.patch; ··· 143 }) 144 ]; 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 + 152 cmakeFlags = [ 153 "-DWITH_3D=True" 154 "-DWITH_PDAL=TRUE" ··· 159 in "-DGRASS_PREFIX${gmajor}=${grass}/grass${gmajor}${gminor}" 160 ); 161 162 + qtWrapperArgs = [ 163 + "--set QT_QPA_PLATFORM_PLUGIN_PATH ${qtbase.bin}/lib/qt-${qtbase.version}/plugins/platforms" 164 + ]; 165 + 166 dontWrapGApps = true; # wrapper params passed below 167 168 postFixup = lib.optionalString withGrass '' 169 + # GRASS has to be availble on the command line even though we baked in 170 # the path at build time using GRASS_PREFIX. 171 + # Using wrapGAppsHook also prevents file dialogs from crashing the program 172 + # on non-NixOS. 173 wrapProgram $out/bin/qgis \ 174 "''${gappsWrapperArgs[@]}" \ 175 --prefix PATH : ${lib.makeBinPath [ grass ]}
+71 -98
pkgs/applications/graphics/flaca/Cargo.lock
··· 38 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 39 40 [[package]] 41 name = "bitvec" 42 version = "1.0.1" 43 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 69 70 [[package]] 71 name = "cc" 72 - version = "1.0.79" 73 source = "registry+https://github.com/rust-lang/crates.io-index" 74 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 75 dependencies = [ 76 "jobserver", 77 ] 78 79 [[package]] ··· 152 153 [[package]] 154 name = "dactyl" 155 - version = "0.5.0" 156 source = "registry+https://github.com/rust-lang/crates.io-index" 157 - checksum = "6ee53db074fe946dcfb43408f19964425827d2967f74c5f4509c48a91bd2899f" 158 dependencies = [ 159 "num-traits", 160 ] ··· 177 178 [[package]] 179 name = "either" 180 - version = "1.8.1" 181 source = "registry+https://github.com/rust-lang/crates.io-index" 182 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 183 184 [[package]] 185 name = "errno" 186 - version = "0.3.1" 187 source = "registry+https://github.com/rust-lang/crates.io-index" 188 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 189 dependencies = [ 190 "errno-dragonfly", 191 "libc", ··· 204 205 [[package]] 206 name = "fastrand" 207 - version = "1.9.0" 208 source = "registry+https://github.com/rust-lang/crates.io-index" 209 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 210 - dependencies = [ 211 - "instant", 212 - ] 213 214 [[package]] 215 name = "fdeflate" ··· 222 223 [[package]] 224 name = "flaca" 225 - version = "2.2.1" 226 dependencies = [ 227 "argyle", 228 "cc", ··· 239 240 [[package]] 241 name = "flate2" 242 - version = "1.0.26" 243 source = "registry+https://github.com/rust-lang/crates.io-index" 244 - checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 245 dependencies = [ 246 "crc32fast", 247 "miniz_oxide", ··· 255 256 [[package]] 257 name = "fyi_msg" 258 - version = "0.11.0" 259 source = "registry+https://github.com/rust-lang/crates.io-index" 260 - checksum = "34a6cc16a2874d6da616ed0766edc29ed01f51ed4121f6d8c723d622433f4298" 261 dependencies = [ 262 "ahash", 263 "bytecount", ··· 274 275 [[package]] 276 name = "hermit-abi" 277 - version = "0.2.6" 278 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" 289 290 [[package]] 291 name = "image" 292 - version = "0.24.6" 293 source = "registry+https://github.com/rust-lang/crates.io-index" 294 - checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" 295 dependencies = [ 296 "bytemuck", 297 "byteorder", ··· 312 ] 313 314 [[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 name = "itertools" 336 version = "0.10.5" 337 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 351 352 [[package]] 353 name = "libc" 354 - version = "0.2.146" 355 source = "registry+https://github.com/rust-lang/crates.io-index" 356 - checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" 357 358 [[package]] 359 name = "libdeflate-sys" ··· 375 376 [[package]] 377 name = "linux-raw-sys" 378 - version = "0.3.8" 379 source = "registry+https://github.com/rust-lang/crates.io-index" 380 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 381 382 [[package]] 383 name = "log" 384 - version = "0.4.19" 385 source = "registry+https://github.com/rust-lang/crates.io-index" 386 - checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 387 388 [[package]] 389 name = "memoffset" ··· 431 source = "registry+https://github.com/rust-lang/crates.io-index" 432 checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 433 dependencies = [ 434 - "bitflags", 435 "cfg-if", 436 "libc", 437 "static_assertions", ··· 460 461 [[package]] 462 name = "num-traits" 463 - version = "0.2.15" 464 source = "registry+https://github.com/rust-lang/crates.io-index" 465 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 466 dependencies = [ 467 "autocfg", 468 ] 469 470 [[package]] 471 name = "num_cpus" 472 - version = "1.15.0" 473 source = "registry+https://github.com/rust-lang/crates.io-index" 474 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 475 dependencies = [ 476 - "hermit-abi 0.2.6", 477 "libc", 478 ] 479 ··· 503 504 [[package]] 505 name = "png" 506 - version = "0.17.9" 507 source = "registry+https://github.com/rust-lang/crates.io-index" 508 - checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11" 509 dependencies = [ 510 - "bitflags", 511 "crc32fast", 512 "fdeflate", 513 "flate2", ··· 548 source = "registry+https://github.com/rust-lang/crates.io-index" 549 checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 550 dependencies = [ 551 - "bitflags", 552 ] 553 554 [[package]] ··· 577 578 [[package]] 579 name = "rustix" 580 - version = "0.37.20" 581 source = "registry+https://github.com/rust-lang/crates.io-index" 582 - checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0" 583 dependencies = [ 584 - "bitflags", 585 "errno", 586 - "io-lifetimes", 587 "libc", 588 "linux-raw-sys", 589 "windows-sys", ··· 591 592 [[package]] 593 name = "scopeguard" 594 - version = "1.1.0" 595 source = "registry+https://github.com/rust-lang/crates.io-index" 596 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 597 598 [[package]] 599 name = "semver" 600 - version = "1.0.17" 601 source = "registry+https://github.com/rust-lang/crates.io-index" 602 - checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 603 604 [[package]] 605 name = "simd-adler32" 606 - version = "0.3.5" 607 source = "registry+https://github.com/rust-lang/crates.io-index" 608 - checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f" 609 610 [[package]] 611 name = "static_assertions" ··· 621 622 [[package]] 623 name = "tempfile" 624 - version = "3.6.0" 625 source = "registry+https://github.com/rust-lang/crates.io-index" 626 - checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6" 627 dependencies = [ 628 - "autocfg", 629 "cfg-if", 630 "fastrand", 631 "redox_syscall", ··· 688 689 [[package]] 690 name = "windows-targets" 691 - version = "0.48.0" 692 source = "registry+https://github.com/rust-lang/crates.io-index" 693 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 694 dependencies = [ 695 "windows_aarch64_gnullvm", 696 "windows_aarch64_msvc", ··· 703 704 [[package]] 705 name = "windows_aarch64_gnullvm" 706 - version = "0.48.0" 707 source = "registry+https://github.com/rust-lang/crates.io-index" 708 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 709 710 [[package]] 711 name = "windows_aarch64_msvc" 712 - version = "0.48.0" 713 source = "registry+https://github.com/rust-lang/crates.io-index" 714 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 715 716 [[package]] 717 name = "windows_i686_gnu" 718 - version = "0.48.0" 719 source = "registry+https://github.com/rust-lang/crates.io-index" 720 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 721 722 [[package]] 723 name = "windows_i686_msvc" 724 - version = "0.48.0" 725 source = "registry+https://github.com/rust-lang/crates.io-index" 726 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 727 728 [[package]] 729 name = "windows_x86_64_gnu" 730 - version = "0.48.0" 731 source = "registry+https://github.com/rust-lang/crates.io-index" 732 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 733 734 [[package]] 735 name = "windows_x86_64_gnullvm" 736 - version = "0.48.0" 737 source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 739 740 [[package]] 741 name = "windows_x86_64_msvc" 742 - version = "0.48.0" 743 source = "registry+https://github.com/rust-lang/crates.io-index" 744 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 745 746 [[package]] 747 name = "write_atomic" 748 - version = "0.3.2" 749 source = "registry+https://github.com/rust-lang/crates.io-index" 750 - checksum = "12c8ddcf39a6adf57b643d28dd93e9e04c9f3df6af8aaf924c4c4622172cc103" 751 dependencies = [ 752 "rustix", 753 "tempfile",
··· 38 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 39 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]] 47 name = "bitvec" 48 version = "1.0.1" 49 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 75 76 [[package]] 77 name = "cc" 78 + version = "1.0.83" 79 source = "registry+https://github.com/rust-lang/crates.io-index" 80 + checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 81 dependencies = [ 82 "jobserver", 83 + "libc", 84 ] 85 86 [[package]] ··· 159 160 [[package]] 161 name = "dactyl" 162 + version = "0.5.1" 163 source = "registry+https://github.com/rust-lang/crates.io-index" 164 + checksum = "72f762271c6826d426c3fd2e37aa827fa039596bc7050e9289cb713265be3d7f" 165 dependencies = [ 166 "num-traits", 167 ] ··· 184 185 [[package]] 186 name = "either" 187 + version = "1.9.0" 188 source = "registry+https://github.com/rust-lang/crates.io-index" 189 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 190 191 [[package]] 192 name = "errno" 193 + version = "0.3.2" 194 source = "registry+https://github.com/rust-lang/crates.io-index" 195 + checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 196 dependencies = [ 197 "errno-dragonfly", 198 "libc", ··· 211 212 [[package]] 213 name = "fastrand" 214 + version = "2.0.0" 215 source = "registry+https://github.com/rust-lang/crates.io-index" 216 + checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 217 218 [[package]] 219 name = "fdeflate" ··· 226 227 [[package]] 228 name = "flaca" 229 + version = "2.2.2" 230 dependencies = [ 231 "argyle", 232 "cc", ··· 243 244 [[package]] 245 name = "flate2" 246 + version = "1.0.27" 247 source = "registry+https://github.com/rust-lang/crates.io-index" 248 + checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" 249 dependencies = [ 250 "crc32fast", 251 "miniz_oxide", ··· 259 260 [[package]] 261 name = "fyi_msg" 262 + version = "0.11.2" 263 source = "registry+https://github.com/rust-lang/crates.io-index" 264 + checksum = "64175e76ad270dcde1566c16eb7d0f6cc2cbb575e5721dbd899e7f3a86b92718" 265 dependencies = [ 266 "ahash", 267 "bytecount", ··· 278 279 [[package]] 280 name = "hermit-abi" 281 + version = "0.3.2" 282 source = "registry+https://github.com/rust-lang/crates.io-index" 283 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 284 285 [[package]] 286 name = "image" 287 + version = "0.24.7" 288 source = "registry+https://github.com/rust-lang/crates.io-index" 289 + checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 290 dependencies = [ 291 "bytemuck", 292 "byteorder", ··· 307 ] 308 309 [[package]] 310 name = "itertools" 311 version = "0.10.5" 312 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 326 327 [[package]] 328 name = "libc" 329 + version = "0.2.147" 330 source = "registry+https://github.com/rust-lang/crates.io-index" 331 + checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 332 333 [[package]] 334 name = "libdeflate-sys" ··· 350 351 [[package]] 352 name = "linux-raw-sys" 353 + version = "0.4.5" 354 source = "registry+https://github.com/rust-lang/crates.io-index" 355 + checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 356 357 [[package]] 358 name = "log" 359 + version = "0.4.20" 360 source = "registry+https://github.com/rust-lang/crates.io-index" 361 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 362 363 [[package]] 364 name = "memoffset" ··· 406 source = "registry+https://github.com/rust-lang/crates.io-index" 407 checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 408 dependencies = [ 409 + "bitflags 1.3.2", 410 "cfg-if", 411 "libc", 412 "static_assertions", ··· 435 436 [[package]] 437 name = "num-traits" 438 + version = "0.2.16" 439 source = "registry+https://github.com/rust-lang/crates.io-index" 440 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 441 dependencies = [ 442 "autocfg", 443 ] 444 445 [[package]] 446 name = "num_cpus" 447 + version = "1.16.0" 448 source = "registry+https://github.com/rust-lang/crates.io-index" 449 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 450 dependencies = [ 451 + "hermit-abi", 452 "libc", 453 ] 454 ··· 478 479 [[package]] 480 name = "png" 481 + version = "0.17.10" 482 source = "registry+https://github.com/rust-lang/crates.io-index" 483 + checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 484 dependencies = [ 485 + "bitflags 1.3.2", 486 "crc32fast", 487 "fdeflate", 488 "flate2", ··· 523 source = "registry+https://github.com/rust-lang/crates.io-index" 524 checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 525 dependencies = [ 526 + "bitflags 1.3.2", 527 ] 528 529 [[package]] ··· 552 553 [[package]] 554 name = "rustix" 555 + version = "0.38.9" 556 source = "registry+https://github.com/rust-lang/crates.io-index" 557 + checksum = "9bfe0f2582b4931a45d1fa608f8a8722e8b3c7ac54dd6d5f3b3212791fedef49" 558 dependencies = [ 559 + "bitflags 2.4.0", 560 "errno", 561 "libc", 562 "linux-raw-sys", 563 "windows-sys", ··· 565 566 [[package]] 567 name = "scopeguard" 568 + version = "1.2.0" 569 source = "registry+https://github.com/rust-lang/crates.io-index" 570 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 571 572 [[package]] 573 name = "semver" 574 + version = "1.0.18" 575 source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" 577 578 [[package]] 579 name = "simd-adler32" 580 + version = "0.3.7" 581 source = "registry+https://github.com/rust-lang/crates.io-index" 582 + checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 583 584 [[package]] 585 name = "static_assertions" ··· 595 596 [[package]] 597 name = "tempfile" 598 + version = "3.8.0" 599 source = "registry+https://github.com/rust-lang/crates.io-index" 600 + checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" 601 dependencies = [ 602 "cfg-if", 603 "fastrand", 604 "redox_syscall", ··· 661 662 [[package]] 663 name = "windows-targets" 664 + version = "0.48.5" 665 source = "registry+https://github.com/rust-lang/crates.io-index" 666 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 667 dependencies = [ 668 "windows_aarch64_gnullvm", 669 "windows_aarch64_msvc", ··· 676 677 [[package]] 678 name = "windows_aarch64_gnullvm" 679 + version = "0.48.5" 680 source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 682 683 [[package]] 684 name = "windows_aarch64_msvc" 685 + version = "0.48.5" 686 source = "registry+https://github.com/rust-lang/crates.io-index" 687 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 688 689 [[package]] 690 name = "windows_i686_gnu" 691 + version = "0.48.5" 692 source = "registry+https://github.com/rust-lang/crates.io-index" 693 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 694 695 [[package]] 696 name = "windows_i686_msvc" 697 + version = "0.48.5" 698 source = "registry+https://github.com/rust-lang/crates.io-index" 699 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 700 701 [[package]] 702 name = "windows_x86_64_gnu" 703 + version = "0.48.5" 704 source = "registry+https://github.com/rust-lang/crates.io-index" 705 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 706 707 [[package]] 708 name = "windows_x86_64_gnullvm" 709 + version = "0.48.5" 710 source = "registry+https://github.com/rust-lang/crates.io-index" 711 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 712 713 [[package]] 714 name = "windows_x86_64_msvc" 715 + version = "0.48.5" 716 source = "registry+https://github.com/rust-lang/crates.io-index" 717 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 718 719 [[package]] 720 name = "write_atomic" 721 + version = "0.4.0" 722 source = "registry+https://github.com/rust-lang/crates.io-index" 723 + checksum = "e0ccffd0975630df843ef6124fdfb5032f86b6110d4913b7c85cab7d597dd49f" 724 dependencies = [ 725 "rustix", 726 "tempfile",
+2 -2
pkgs/applications/graphics/flaca/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "flaca"; 5 - version = "2.2.1"; 6 7 src = fetchFromGitHub { 8 owner = "Blobfolio"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-RXMqPpQM2h6EtIIH8Ix31euC7zK3v2QohZqouNlK7rM="; 12 }; 13 14 # upstream does not provide a Cargo.lock
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "flaca"; 5 + version = "2.2.2"; 6 7 src = fetchFromGitHub { 8 owner = "Blobfolio"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-YLJ8jeJhpxmSfF0PObd7FSFdVbEVhHYIaUJusAIEIx4="; 12 }; 13 14 # upstream does not provide a Cargo.lock
+267 -7
pkgs/applications/misc/mission-center/Cargo.lock
··· 53 checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 54 55 [[package]] 56 name = "autocfg" 57 version = "1.1.0" 58 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 83 checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 84 dependencies = [ 85 "generic-array", 86 ] 87 88 [[package]] ··· 181 version = "1.1.0" 182 source = "registry+https://github.com/rust-lang/crates.io-index" 183 checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 184 185 [[package]] 186 name = "const-random" ··· 423 ] 424 425 [[package]] 426 name = "fallible-iterator" 427 version = "0.2.0" 428 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 435 checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 436 437 [[package]] 438 name = "field-offset" 439 version = "0.3.6" 440 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 475 version = "0.3.28" 476 source = "registry+https://github.com/rust-lang/crates.io-index" 477 checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 478 479 [[package]] 480 name = "futures-macro" ··· 956 ] 957 958 [[package]] 959 name = "io-lifetimes" 960 version = "1.0.11" 961 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1092 ] 1093 1094 [[package]] 1095 name = "log" 1096 version = "0.4.19" 1097 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1153 1154 [[package]] 1155 name = "missioncenter" 1156 - version = "0.2.5" 1157 dependencies = [ 1158 "drm", 1159 "egl", 1160 "errno-sys", ··· 1162 "gettext-rs", 1163 "gl", 1164 "gtk4", 1165 "lazy_static", 1166 "libadwaita", 1167 "libc 0.2.147", ··· 1182 "serde", 1183 "serde_json", 1184 "sha2", 1185 "sysinfo", 1186 "textdistance", 1187 ] 1188 1189 [[package]] ··· 1331 ] 1332 1333 [[package]] 1334 name = "pathfinder_canvas" 1335 version = "0.5.0" 1336 source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" ··· 1354 version = "0.5.0" 1355 source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1356 dependencies = [ 1357 - "arrayvec", 1358 "bitflags 1.3.2", 1359 "image", 1360 "log", ··· 1502 ] 1503 1504 [[package]] 1505 name = "proc-macro-crate" 1506 version = "1.3.1" 1507 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1569 ] 1570 1571 [[package]] 1572 name = "raw-cpuid" 1573 version = "11.0.1" 1574 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1764 ] 1765 1766 [[package]] 1767 name = "slab" 1768 version = "0.4.8" 1769 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1777 version = "1.11.0" 1778 source = "registry+https://github.com/rust-lang/crates.io-index" 1779 checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" 1780 1781 [[package]] 1782 name = "static_assertions" ··· 1879 dependencies = [ 1880 "crunchy", 1881 ] 1882 1883 [[package]] 1884 name = "toml" ··· 1957 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1958 1959 [[package]] 1960 name = "wasi" 1961 version = "0.11.0+wasi-snapshot-preview1" 1962 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2080 ] 2081 2082 [[package]] 2083 name = "winapi" 2084 version = "0.3.9" 2085 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2102 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2103 2104 [[package]] 2105 name = "windows-sys" 2106 version = "0.48.0" 2107 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2117 checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 2118 dependencies = [ 2119 "windows_aarch64_gnullvm", 2120 - "windows_aarch64_msvc", 2121 - "windows_i686_gnu", 2122 - "windows_i686_msvc", 2123 - "windows_x86_64_gnu", 2124 "windows_x86_64_gnullvm", 2125 - "windows_x86_64_msvc", 2126 ] 2127 2128 [[package]] ··· 2133 2134 [[package]] 2135 name = "windows_aarch64_msvc" 2136 version = "0.48.0" 2137 source = "registry+https://github.com/rust-lang/crates.io-index" 2138 checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2139 2140 [[package]] 2141 name = "windows_i686_gnu" 2142 version = "0.48.0" 2143 source = "registry+https://github.com/rust-lang/crates.io-index" 2144 checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2145 2146 [[package]] 2147 name = "windows_i686_msvc" 2148 version = "0.48.0" 2149 source = "registry+https://github.com/rust-lang/crates.io-index" 2150 checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2151 2152 [[package]] 2153 name = "windows_x86_64_gnu" 2154 version = "0.48.0" 2155 source = "registry+https://github.com/rust-lang/crates.io-index" 2156 checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" ··· 2160 version = "0.48.0" 2161 source = "registry+https://github.com/rust-lang/crates.io-index" 2162 checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2163 2164 [[package]] 2165 name = "windows_x86_64_msvc"
··· 53 checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 54 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]] 94 name = "autocfg" 95 version = "1.1.0" 96 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 121 checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 122 dependencies = [ 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", 139 ] 140 141 [[package]] ··· 234 version = "1.1.0" 235 source = "registry+https://github.com/rust-lang/crates.io-index" 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 + ] 246 247 [[package]] 248 name = "const-random" ··· 485 ] 486 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]] 494 name = "fallible-iterator" 495 version = "0.2.0" 496 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 503 checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 504 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]] 515 name = "field-offset" 516 version = "0.3.6" 517 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 552 version = "0.3.28" 553 source = "registry+https://github.com/rust-lang/crates.io-index" 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 + ] 570 571 [[package]] 572 name = "futures-macro" ··· 1048 ] 1049 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]] 1077 name = "io-lifetimes" 1078 version = "1.0.11" 1079 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1210 ] 1211 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]] 1223 name = "log" 1224 version = "0.4.19" 1225 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1281 1282 [[package]] 1283 name = "missioncenter" 1284 + version = "0.3.1" 1285 dependencies = [ 1286 + "arrayvec 0.7.4", 1287 "drm", 1288 "egl", 1289 "errno-sys", ··· 1291 "gettext-rs", 1292 "gl", 1293 "gtk4", 1294 + "interprocess", 1295 "lazy_static", 1296 "libadwaita", 1297 "libc 0.2.147", ··· 1312 "serde", 1313 "serde_json", 1314 "sha2", 1315 + "shared_memory_extended", 1316 "sysinfo", 1317 "textdistance", 1318 + "thiserror", 1319 ] 1320 1321 [[package]] ··· 1463 ] 1464 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]] 1472 name = "pathfinder_canvas" 1473 version = "0.5.0" 1474 source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" ··· 1492 version = "0.5.0" 1493 source = "git+https://github.com/servo/pathfinder?rev=21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062#21ec6fa933547636bc6c5ee8f0dd4a0ea3fcd062" 1494 dependencies = [ 1495 + "arrayvec 0.5.2", 1496 "bitflags 1.3.2", 1497 "image", 1498 "log", ··· 1640 ] 1641 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]] 1649 name = "proc-macro-crate" 1650 version = "1.3.1" 1651 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1713 ] 1714 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]] 1746 name = "raw-cpuid" 1747 version = "11.0.1" 1748 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1938 ] 1939 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]] 1954 name = "slab" 1955 version = "0.4.8" 1956 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1964 version = "1.11.0" 1965 source = "registry+https://github.com/rust-lang/crates.io-index" 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 + ] 1976 1977 [[package]] 1978 name = "static_assertions" ··· 2075 dependencies = [ 2076 "crunchy", 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" 2084 2085 [[package]] 2086 name = "toml" ··· 2159 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2160 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]] 2168 name = "wasi" 2169 version = "0.11.0+wasi-snapshot-preview1" 2170 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2288 ] 2289 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]] 2300 name = "winapi" 2301 version = "0.3.9" 2302 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2319 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2320 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]] 2335 name = "windows-sys" 2336 version = "0.48.0" 2337 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2347 checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 2348 dependencies = [ 2349 "windows_aarch64_gnullvm", 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", 2354 "windows_x86_64_gnullvm", 2355 + "windows_x86_64_msvc 0.48.0", 2356 ] 2357 2358 [[package]] ··· 2363 2364 [[package]] 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" 2372 version = "0.48.0" 2373 source = "registry+https://github.com/rust-lang/crates.io-index" 2374 checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2375 2376 [[package]] 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" 2384 version = "0.48.0" 2385 source = "registry+https://github.com/rust-lang/crates.io-index" 2386 checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2387 2388 [[package]] 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" 2396 version = "0.48.0" 2397 source = "registry+https://github.com/rust-lang/crates.io-index" 2398 checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2399 2400 [[package]] 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" 2408 version = "0.48.0" 2409 source = "registry+https://github.com/rust-lang/crates.io-index" 2410 checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" ··· 2414 version = "0.48.0" 2415 source = "registry+https://github.com/rust-lang/crates.io-index" 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" 2423 2424 [[package]] 2425 name = "windows_x86_64_msvc"
+9 -6
pkgs/applications/misc/mission-center/default.nix
··· 36 nvtop = fetchFromGitHub { 37 owner = "Syllo"; 38 repo = "nvtop"; 39 - rev = "9a8458b541a195a0c5cadafb66e240962c852b39"; 40 - hash = "sha256-iFBZbESRTuwgLSUuHnjcXwmpvdeQrd3oUJd7BRyxu84="; 41 }; 42 in 43 stdenv.mkDerivation rec { 44 pname = "mission-center"; 45 - version = "0.2.5"; 46 47 src = fetchFromGitLab { 48 owner = "mission-center-devs"; 49 repo = "mission-center"; 50 rev = "v${version}"; 51 - hash = "sha256-f6GkwF+3USl60pUxxTu90KzdsfxBiAkiqnBSTTmC2Lc="; 52 }; 53 54 cargoDeps = symlinkJoin { ··· 61 }; 62 }) 63 (rustPlatform.importCargoLock { 64 - lockFile = ./proxy-Cargo.lock; 65 }) 66 ]; 67 }; ··· 111 done 112 cd ../.. 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 115 ''; 116 117 meta = with lib; {
··· 36 nvtop = fetchFromGitHub { 37 owner = "Syllo"; 38 repo = "nvtop"; 39 + rev = "be47f8c560487efc6e6a419d59c69bfbdb819324"; 40 + hash = "sha256-MdaZYLxCuVX4LvbwBYNfHHoJWqZAy4J8NBK7Guh2whc="; 41 }; 42 in 43 stdenv.mkDerivation rec { 44 pname = "mission-center"; 45 + version = "0.3.1"; 46 47 src = fetchFromGitLab { 48 owner = "mission-center-devs"; 49 repo = "mission-center"; 50 rev = "v${version}"; 51 + hash = "sha256-fiUF1mvbnguySy2ZXTi4Z61t35FO6fljqm21dMGwQMI="; 52 }; 53 54 cargoDeps = symlinkJoin { ··· 61 }; 62 }) 63 (rustPlatform.importCargoLock { 64 + lockFile = ./gatherer-Cargo.lock; 65 }) 66 ]; 67 }; ··· 111 done 112 cd ../.. 113 patchShebangs data/hwdb/generate_hwdb.py 114 + ''; 115 + 116 + postInstall = '' 117 + wrapProgram $out/bin/missioncenter --prefix PATH : $out/bin:${dmidecode}/bin 118 ''; 119 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 { 2 - "packageVersion": "116.0.2-1", 3 "source": { 4 - "rev": "116.0.2-1", 5 - "sha256": "08q50yjb8q168zb2y4iajjqd9ygbpywwr9i4vfn67wchqlsc1mrp" 6 }, 7 "firefox": { 8 - "version": "116.0.2", 9 - "sha512": "2c0ae18672fe22c75002744831130e13da764f83726951e5b58cfe74f7f473e22634ce08ebc11a98bac5baec0a4ac099a3a350a8b756af9c5bea6d5f4432da6d" 10 } 11 }
··· 1 { 2 + "packageVersion": "116.0.3-1", 3 "source": { 4 + "rev": "116.0.3-1", 5 + "sha256": "19l5nny96p89xm8c9f5m1435sglshn7izmjnj338c8qh217zxiyq" 6 }, 7 "firefox": { 8 + "version": "116.0.3", 9 + "sha512": "194c50e9ba5a918c37fbef8cd72ffb98e5e9f51955d8172b6666a758b5f20777ca0a7f79dff0328305fb6dafefb102ab002e326f47d0965a4dc6d3e9287c42b9" 10 } 11 }
+9 -5
pkgs/applications/science/chemistry/cp2k/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python3, gfortran, blas, lapack 2 , fftw, libint, libvori, libxc, mpi, gsl, scalapack, openssh, makeWrapper 3 , libxsmm, spglib, which, pkg-config, plumed, zlib 4 , enableElpa ? false ··· 88 EOF 89 ''; 90 91 checkPhase = '' 92 - export OMP_NUM_THREADS=1 93 94 - export HYDRA_IFACE=lo # Fix to make mpich run in a sandbox 95 - export OMPI_MCA_rmaps_base_oversubscribe=1 96 export CP2K_DATA_DIR=data 97 98 - mpirun -np 2 exe/${arch}/libcp2k_unittest.${cp2kVersion} 99 ''; 100 101 installPhase = ''
··· 1 + { lib, stdenv, fetchFromGitHub, mpiCheckPhaseHook, python3, gfortran, blas, lapack 2 , fftw, libint, libvori, libxc, mpi, gsl, scalapack, openssh, makeWrapper 3 , libxsmm, spglib, which, pkg-config, plumed, zlib 4 , enableElpa ? false ··· 88 EOF 89 ''; 90 91 + nativeCheckInputs = [ 92 + mpiCheckPhaseHook 93 + openssh 94 + ]; 95 + 96 checkPhase = '' 97 + runHook preCheck 98 99 export CP2K_DATA_DIR=data 100 + mpirun -np 2 exe/${arch}/libcp2k_unittest.${cp2kVersion} 101 102 + runHook postCheck 103 ''; 104 105 installPhase = ''
+5 -5
pkgs/applications/science/chemistry/nwchem/default.nix
··· 3 , pkgs 4 , fetchFromGitHub 5 , fetchurl 6 , which 7 , openssh 8 , gcc ··· 190 doCheck = false; 191 192 doInstallCheck = true; 193 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 199 200 # run a simple water test 201 mpirun -np 2 $out/bin/nwchem $out/share/nwchem/QA/tests/h2o/h2o.nw > h2o.out 202 grep "Total SCF energy" h2o.out | grep 76.010538 203 ''; 204 205 passthru = { inherit mpi; };
··· 3 , pkgs 4 , fetchFromGitHub 5 , fetchurl 6 + , mpiCheckPhaseHook 7 , which 8 , openssh 9 , gcc ··· 191 doCheck = false; 192 193 doInstallCheck = true; 194 + nativeCheckInputs = [ mpiCheckPhaseHook ]; 195 installCheckPhase = '' 196 + runHook preInstallCheck 197 198 # run a simple water test 199 mpirun -np 2 $out/bin/nwchem $out/share/nwchem/QA/tests/h2o/h2o.nw > h2o.out 200 grep "Total SCF energy" h2o.out | grep 76.010538 201 + 202 + runHook postInstallCheck 203 ''; 204 205 passthru = { inherit mpi; };
+2 -2
pkgs/applications/video/haruna/default.nix
··· 26 27 mkDerivation rec { 28 pname = "haruna"; 29 - version = "0.11.1"; 30 31 src = fetchFromGitLab { 32 owner = "multimedia"; 33 repo = "haruna"; 34 rev = "v${version}"; 35 - hash = "sha256-quCkQN1IxKoGr+VzeDXs2UChJgxfgI+z56SDYc6eZDc="; 36 domain = "invent.kde.org"; 37 }; 38
··· 26 27 mkDerivation rec { 28 pname = "haruna"; 29 + version = "0.12.0"; 30 31 src = fetchFromGitLab { 32 owner = "multimedia"; 33 repo = "haruna"; 34 rev = "v${version}"; 35 + hash = "sha256-NWV3DSQkgH4cqNnHipg4S3Nf5aEVdRzD0oT8a2OyCu4="; 36 domain = "invent.kde.org"; 37 }; 38
+19 -11
pkgs/build-support/fetchnextcloudapp/default.nix
··· 1 - { stdenv, fetchzip, applyPatches, ... }: 2 { url 3 , sha256 4 , patches ? [ ] 5 - , name ? null 6 - , version ? null 7 }: 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 { 15 inherit patches; 16 src = fetchzip { 17 inherit url sha256; ··· 23 fi 24 popd &>/dev/null 25 ''; 26 }; 27 - }
··· 1 + { stdenv, fetchzip, applyPatches, lib, ... }: 2 { url 3 , sha256 4 + , appName ? null 5 + , appVersion ? null 6 + , license 7 , patches ? [ ] 8 + , description ? null 9 + , homepage ? null 10 }: 11 + applyPatches ({ 12 inherit patches; 13 src = fetchzip { 14 inherit url sha256; ··· 20 fi 21 popd &>/dev/null 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 + }; 32 }; 33 + } // lib.optionalAttrs (appName != null && appVersion != null) { 34 + name = "nextcloud-app-${appName}-${appVersion}"; 35 + })
+6
pkgs/build-support/rust/default-crate-overrides.nix
··· 40 , autoconf 41 , automake 42 , libtool 43 , ... 44 }: 45 ··· 170 LIBGIT2_SYS_USE_PKG_CONFIG = true; 171 nativeBuildInputs = [ pkg-config ]; 172 buildInputs = [ openssl zlib libgit2 ]; 173 }; 174 175 libsqlite3-sys = attrs: {
··· 40 , autoconf 41 , automake 42 , libtool 43 + , seatd # =libseat 44 , ... 45 }: 46 ··· 171 LIBGIT2_SYS_USE_PKG_CONFIG = true; 172 nativeBuildInputs = [ pkg-config ]; 173 buildInputs = [ openssl zlib libgit2 ]; 174 + }; 175 + 176 + libseat-sys = attrs: { 177 + nativeBuildInputs = [ pkg-config ]; 178 + buildInputs = [ seatd ]; 179 }; 180 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 ) + "-patched" 906 , patches ? [] 907 , postPatch ? "" 908 - }: stdenvNoCC.mkDerivation { 909 inherit name src patches postPatch; 910 preferLocalBuild = true; 911 allowSubstitutes = false; 912 phases = "unpackPhase patchPhase installPhase"; 913 installPhase = "cp -R ./ $out"; 914 - }; 915 916 /* An immutable file in the store with a length of 0 bytes. */ 917 emptyFile = runCommand "empty-file" {
··· 905 ) + "-patched" 906 , patches ? [] 907 , postPatch ? "" 908 + , ... 909 + }@args: stdenvNoCC.mkDerivation { 910 inherit name src patches postPatch; 911 preferLocalBuild = true; 912 allowSubstitutes = false; 913 phases = "unpackPhase patchPhase installPhase"; 914 installPhase = "cp -R ./ $out"; 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" ]); 919 920 /* An immutable file in the store with a length of 0 bytes. */ 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 47 stdenv.mkDerivation (finalAttrs: { 48 pname = "magpie"; 49 - version = "0.9.2"; 50 51 outputs = [ "out" "dev" "devdoc" ]; 52 ··· 54 owner = "BuddiesOfBudgie"; 55 repo = "magpie"; 56 rev = "v${finalAttrs.version}"; 57 - hash = "sha256-GoilHdESFgpwt8+Uqzrnf8jBpeaSak1uHTlkNcQdgtk="; 58 }; 59 60 patches = [ ··· 124 125 postPatch = '' 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" 129 ''; 130 131 postFixup = ''
··· 46 47 stdenv.mkDerivation (finalAttrs: { 48 pname = "magpie"; 49 + version = "0.9.3"; 50 51 outputs = [ "out" "dev" "devdoc" ]; 52 ··· 54 owner = "BuddiesOfBudgie"; 55 repo = "magpie"; 56 rev = "v${finalAttrs.version}"; 57 + hash = "sha256-A8FmW2o2p5B5pxTZ6twwufyhfppuMXjnMKopZRD+XdE="; 58 }; 59 60 patches = [ ··· 124 125 postPatch = '' 126 patchShebangs src/backends/native/gen-default-modes.py 127 + # Magpie does not install any .desktop files 128 + substituteInPlace scripts/mesonPostInstall.sh --replace "update-desktop-database" "# update-desktop-database" 129 ''; 130 131 postFixup = ''
+3 -3
pkgs/development/compilers/typescript/default.nix
··· 2 3 buildNpmPackage rec { 4 pname = "typescript"; 5 - version = "5.1.6"; 6 7 src = fetchFromGitHub { 8 owner = "microsoft"; 9 repo = "TypeScript"; 10 rev = "v${version}"; 11 - hash = "sha256-YBAAiO7MBJ41VK6A9zeExB7ZSbbrQ23sVTHAqo+/H/w="; 12 }; 13 14 - npmDepsHash = "sha256-RHiUhhkzkr2Ra3wc1d13gE2WIZL49w7IEFEAZuBDTDI="; 15 16 meta = with lib; { 17 description = "A superset of JavaScript that compiles to clean JavaScript output";
··· 2 3 buildNpmPackage rec { 4 pname = "typescript"; 5 + version = "5.2.2"; 6 7 src = fetchFromGitHub { 8 owner = "microsoft"; 9 repo = "TypeScript"; 10 rev = "v${version}"; 11 + hash = "sha256-wjoqDmCudN5+9C3GrP1viiXBvsWgU0UIYWaFeK/TJEY="; 12 }; 13 14 + npmDepsHash = "sha256-7Wm6nlpqZRNqBU0mYFZRVWQkO4uqvrKrp2h2aEmZtow="; 15 16 meta = with lib; { 17 description = "A superset of JavaScript that compiles to clean JavaScript output";
+4 -6
pkgs/development/interpreters/risor/default.nix
··· 7 8 buildGoModule rec { 9 pname = "risor"; 10 - version = "0.14.0"; 11 12 src = fetchFromGitHub { 13 owner = "risor-io"; 14 repo = "risor"; 15 rev = "v${version}"; 16 - hash = "sha256-QhXIwFrApSkWY2YYYGlojKsByNA2xpyVTm0SpYWB/Ds="; 17 }; 18 19 - vendorHash = "sha256-diAbQwnlhMm43ZlLKq3llMl9mO3sIkc80aCI5UDn7F4="; 20 21 - subPackages = [ 22 - "cmd/..." 23 - ]; 24 25 ldflags = [ 26 "-s"
··· 7 8 buildGoModule rec { 9 pname = "risor"; 10 + version = "0.15.0"; 11 12 src = fetchFromGitHub { 13 owner = "risor-io"; 14 repo = "risor"; 15 rev = "v${version}"; 16 + hash = "sha256-aBUM/+mAuQ+JUOqeMtRYpOwdKbD6An9/Nc2Q6YDnUmE="; 17 }; 18 19 + sourceRoot = "${src.name}/cmd/risor"; 20 21 + vendorHash = "sha256-vlrYmY70nEAI8FSsMzZtuLMt8+aVi0jDX7PGKRMw4r8="; 22 23 ldflags = [ 24 "-s"
+4 -9
pkgs/development/libraries/elpa/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook, gfortran, perl 2 - , mpi, blas, lapack, scalapack, openssh 3 # CPU optimizations 4 , avxSupport ? stdenv.hostPlatform.avxSupport 5 , avx2Support ? stdenv.hostPlatform.avx2Support ··· 41 substituteInPlace Makefile.am --replace '#!/bin/bash' '#!${stdenv.shell}' 42 ''; 43 44 - nativeBuildInputs = [ autoreconfHook perl openssh ]; 45 46 buildInputs = [ mpi blas lapack scalapack ] 47 ++ lib.optional enableCuda cudatoolkit; ··· 76 77 doCheck = true; 78 79 preCheck = '' 80 #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 88 # Run dual threaded 89 export OMP_NUM_THREADS=2
··· 1 + { lib, stdenv, fetchurl, autoreconfHook, mpiCheckPhaseHook 2 + , gfortran, perl, mpi, blas, lapack, scalapack, openssh 3 # CPU optimizations 4 , avxSupport ? stdenv.hostPlatform.avxSupport 5 , avx2Support ? stdenv.hostPlatform.avx2Support ··· 41 substituteInPlace Makefile.am --replace '#!/bin/bash' '#!${stdenv.shell}' 42 ''; 43 44 + nativeBuildInputs = [ autoreconfHook perl ]; 45 46 buildInputs = [ mpi blas lapack scalapack ] 47 ++ lib.optional enableCuda cudatoolkit; ··· 76 77 doCheck = true; 78 79 + nativeCheckInputs = [ mpiCheckPhaseHook openssh ]; 80 preCheck = '' 81 #patchShebangs ./ 82 83 # Run dual threaded 84 export OMP_NUM_THREADS=2
+5 -5
pkgs/development/libraries/science/math/dbcsr/default.nix
··· 2 , lib 3 , fetchFromGitHub 4 , cmake 5 , pkg-config 6 , fypp 7 , gfortran ··· 64 "-DUSE_MPI=ON" 65 ]; 66 67 - checkInputs = [ openssh ]; 68 69 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 75 meta = with lib; { 76 description = "Distributed Block Compressed Sparse Row matrix library";
··· 2 , lib 3 , fetchFromGitHub 4 , cmake 5 + , mpiCheckPhaseHook 6 , pkg-config 7 , fypp 8 , gfortran ··· 65 "-DUSE_MPI=ON" 66 ]; 67 68 + checkInputs = [ 69 + openssh 70 + mpiCheckPhaseHook 71 + ]; 72 73 doCheck = true; 74 75 meta = with lib; { 76 description = "Distributed Block Compressed Sparse Row matrix library";
+5 -5
pkgs/development/libraries/science/math/p4est-sc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub 2 , autoreconfHook, pkg-config 3 , p4est-sc-debugEnable ? true, p4est-sc-mpiSupport ? true 4 , mpi, openssh, zlib ··· 47 enableParallelBuilding = true; 48 makeFlags = [ "V=0" ]; 49 50 - preCheck = '' 51 - export OMPI_MCA_rmaps_base_oversubscribe=1 52 - export HYDRA_IFACE=lo 53 - ''; 54 55 # disallow Darwin checks due to prototype incompatibility of qsort_r 56 # to be fixed in a future version of the source code
··· 1 + { lib, stdenv, fetchFromGitHub, mpiCheckPhaseHook 2 , autoreconfHook, pkg-config 3 , p4est-sc-debugEnable ? true, p4est-sc-mpiSupport ? true 4 , mpi, openssh, zlib ··· 47 enableParallelBuilding = true; 48 makeFlags = [ "V=0" ]; 49 50 + nativeCheckInputs = lib.optionals mpiSupport [ 51 + mpiCheckPhaseHook 52 + openssh 53 + ]; 54 55 # disallow Darwin checks due to prototype incompatibility of qsort_r 56 # to be fixed in a future version of the source code
+1 -1
pkgs/development/libraries/science/math/p4est/default.nix
··· 46 ++ lib.optional withMetis "--with-metis" 47 ; 48 49 - inherit (p4est-sc) makeFlags dontDisableStatic enableParallelBuilding preCheck doCheck; 50 51 meta = { 52 branch = "prev3-develop";
··· 46 ++ lib.optional withMetis "--with-metis" 47 ; 48 49 + inherit (p4est-sc) makeFlags dontDisableStatic enableParallelBuilding doCheck; 50 51 meta = { 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 3 } : 4 5 assert blas.isILP64 == lapack.isILP64; ··· 35 ''; 36 37 nativeBuildInputs = [ cmake ]; 38 - nativeCheckInputs = [ openssh ]; 39 buildInputs = [ blas lapack ]; 40 propagatedBuildInputs = [ mpi ]; 41 hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ]; ··· 60 # Increase individual test timeout from 1500s to 10000s because hydra's builds 61 # sometimes fail due to this 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 75 meta = with lib; { 76 homepage = "http://www.netlib.org/scalapack/";
··· 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, cmake 2 + , openssh, mpiCheckPhaseHook, mpi, blas, lapack 3 } : 4 5 assert blas.isILP64 == lapack.isILP64; ··· 35 ''; 36 37 nativeBuildInputs = [ cmake ]; 38 + nativeCheckInputs = [ openssh mpiCheckPhaseHook ]; 39 buildInputs = [ blas lapack ]; 40 propagatedBuildInputs = [ mpi ]; 41 hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ]; ··· 60 # Increase individual test timeout from 1500s to 10000s because hydra's builds 61 # sometimes fail due to this 62 checkFlagsArray = [ "ARGS=--timeout 10000" ]; 63 64 meta = with lib; { 65 homepage = "http://www.netlib.org/scalapack/";
+14 -14
pkgs/development/python-modules/approvaltests/default.nix
··· 1 { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , pythonOlder 5 - 6 - # propagates 7 , allpairspy 8 , approval-utilities 9 , beautifulsoup4 10 , empty-files 11 , mrjob 12 , pyperclip 13 , pytest 14 - , typing-extensions 15 - 16 - # tests 17 - , numpy 18 , pytestCheckHook 19 }: 20 21 buildPythonPackage rec { 22 - version = "8.3.1"; 23 pname = "approvaltests"; 24 format = "setuptools"; 25 26 disabled = pythonOlder "3.7"; 27 28 - # no tests included in PyPI tarball 29 src = fetchFromGitHub { 30 owner = "approvals"; 31 repo = "ApprovalTests.Python"; 32 rev = "refs/tags/v${version}"; 33 - hash = "sha256-FyYT+w4CX+CdUg0uGwyjw98H8Z+HMVecgMBW/ytrtFU="; 34 }; 35 36 propagatedBuildInputs = [ ··· 41 mrjob 42 pyperclip 43 pytest 44 typing-extensions 45 ]; 46 47 nativeCheckInputs = [ 48 numpy 49 pytestCheckHook 50 ]; 51 52 disabledTests = [ 53 - # tests expects paths below ApprovalTests.Python directory 54 "test_received_filename" 55 "test_pytest_namer" 56 ]; ··· 63 meta = with lib; { 64 description = "Assertion/verification library to aid testing"; 65 homepage = "https://github.com/approvals/ApprovalTests.Python"; 66 license = licenses.asl20; 67 - maintainers = [ maintainers.marsam ]; 68 }; 69 }
··· 1 { lib 2 , allpairspy 3 , approval-utilities 4 , beautifulsoup4 5 + , buildPythonPackage 6 , empty-files 7 + , fetchFromGitHub 8 + , mock 9 , mrjob 10 + , numpy 11 , pyperclip 12 , pytest 13 , pytestCheckHook 14 + , pythonOlder 15 + , testfixtures 16 + , typing-extensions 17 }: 18 19 buildPythonPackage rec { 20 pname = "approvaltests"; 21 + version = "8.4.1"; 22 format = "setuptools"; 23 24 disabled = pythonOlder "3.7"; 25 26 src = fetchFromGitHub { 27 owner = "approvals"; 28 repo = "ApprovalTests.Python"; 29 rev = "refs/tags/v${version}"; 30 + hash = "sha256-BuFiNZZ7228CKJ97mVK2S8Siqe040EYV5pElVtwuVf4="; 31 }; 32 33 propagatedBuildInputs = [ ··· 38 mrjob 39 pyperclip 40 pytest 41 + testfixtures 42 typing-extensions 43 ]; 44 45 nativeCheckInputs = [ 46 + mock 47 numpy 48 pytestCheckHook 49 ]; 50 51 disabledTests = [ 52 + # Tests expects paths below ApprovalTests.Python directory 53 "test_received_filename" 54 "test_pytest_namer" 55 ]; ··· 62 meta = with lib; { 63 description = "Assertion/verification library to aid testing"; 64 homepage = "https://github.com/approvals/ApprovalTests.Python"; 65 + changelog = "https://github.com/approvals/ApprovalTests.Python/releases/tag/v${version}"; 66 license = licenses.asl20; 67 + maintainers = with maintainers; [ marsam ]; 68 }; 69 }
+2 -2
pkgs/development/python-modules/appthreat-vulnerability-db/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "appthreat-vulnerability-db"; 20 - version = "5.2.0"; 21 format = "pyproject"; 22 23 disabled = pythonOlder "3.7"; ··· 26 owner = "AppThreat"; 27 repo = "vulnerability-db"; 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-OtaoyqYRsZVoWezrTAy3zROyNeRLbZmCT+z7YCwf9Ow="; 30 }; 31 32 postPatch = ''
··· 17 18 buildPythonPackage rec { 19 pname = "appthreat-vulnerability-db"; 20 + version = "5.2.1"; 21 format = "pyproject"; 22 23 disabled = pythonOlder "3.7"; ··· 26 owner = "AppThreat"; 27 repo = "vulnerability-db"; 28 rev = "refs/tags/v${version}"; 29 + hash = "sha256-FSi9fMp9SLnoIVo+Clca6oglroeIb6RbohiSSc6fqxo="; 30 }; 31 32 postPatch = ''
+3 -22
pkgs/development/python-modules/apptools/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , configobj 4 - , fetchpatch 5 , fetchPypi 6 , importlib-resources 7 , pandas 8 , pytestCheckHook 9 - , pythonAtLeast 10 , pythonOlder 11 , tables 12 , traits ··· 15 16 buildPythonPackage rec { 17 pname = "apptools"; 18 - version = "5.1.0"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.7"; 22 23 src = fetchPypi { 24 inherit pname version; 25 - sha256 = "12x5lcs1cllpybz7f0i1lcwvmqsaa5n818wb2165lj049wqxx4yh"; 26 }; 27 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 propagatedBuildInputs = [ 47 configobj 48 traits ··· 68 meta = with lib; { 69 description = "Set of packages that Enthought has found useful in creating a number of applications"; 70 homepage = "https://github.com/enthought/apptools"; 71 license = licenses.bsdOriginal; 72 maintainers = with maintainers; [ knedlsepp ]; 73 };
··· 1 { lib 2 , buildPythonPackage 3 , configobj 4 , fetchPypi 5 , importlib-resources 6 , pandas 7 , pytestCheckHook 8 , pythonOlder 9 , tables 10 , traits ··· 13 14 buildPythonPackage rec { 15 pname = "apptools"; 16 + version = "5.2.1"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.7"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-xiaPXfzzCIvK92oAA+ULd3TQG1JY1xmbQQtIUv8iRuM="; 24 }; 25 26 propagatedBuildInputs = [ 27 configobj 28 traits ··· 48 meta = with lib; { 49 description = "Set of packages that Enthought has found useful in creating a number of applications"; 50 homepage = "https://github.com/enthought/apptools"; 51 + changelog = "https://github.com/enthought/apptools/releases/tag/${version}"; 52 license = licenses.bsdOriginal; 53 maintainers = with maintainers; [ knedlsepp ]; 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 11 buildPythonPackage rec { 12 pname = "fountains"; 13 - version = "2.1.0"; 14 format = "pyproject"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - hash = "sha256-gYVguXMVrXxra/xy+R4RXVk9yDGKiKE8u3qWUk8sjt4="; 21 }; 22 23 patches = [
··· 10 11 buildPythonPackage rec { 12 pname = "fountains"; 13 + version = "2.2.0"; 14 format = "pyproject"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + hash = "sha256-MhOQ4pemxmjfp7Uy5hLA8i8BBI5QbvD4EjEcKMM/u3I="; 21 }; 22 23 patches = [
+2 -2
pkgs/development/python-modules/hass-nabucasa/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "hass-nabucasa"; 20 - version = "0.69.0"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.8"; ··· 26 owner = "nabucasa"; 27 repo = pname; 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-7FO/z5AseP80y74e4ivLXlwB9t5jJf2bCaNp6HfqZ1c="; 30 }; 31 32 postPatch = ''
··· 17 18 buildPythonPackage rec { 19 pname = "hass-nabucasa"; 20 + version = "0.70.0"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.8"; ··· 26 owner = "nabucasa"; 27 repo = pname; 28 rev = "refs/tags/${version}"; 29 + hash = "sha256-lELb39N5pAZFeANgzg5TBmC+gmY/wgXbE7wlvdlJe2A="; 30 }; 31 32 postPatch = ''
+13 -12
pkgs/development/python-modules/keyrings-alt/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 , pythonOlder 5 - , isPy27 6 - , six 7 - 8 - , pytestCheckHook 9 - , keyring 10 , setuptools-scm 11 }: 12 13 buildPythonPackage rec { 14 - pname = "keyrings.alt"; 15 - version = "4.2.0"; 16 format = "pyproject"; 17 - disabled = isPy27; 18 19 src = fetchPypi { 20 - inherit pname version; 21 - hash = "sha256-K6PVZEG6Bjf1+cCWBo9nAQrART+dC2Jt4qowGTU7ZDE="; 22 }; 23 24 nativeBuildInputs = [ ··· 26 ]; 27 28 propagatedBuildInputs = [ 29 - six 30 ]; 31 32 nativeCheckInputs = [ ··· 39 ]; 40 41 meta = with lib; { 42 - license = licenses.mit; 43 description = "Alternate keyring implementations"; 44 homepage = "https://github.com/jaraco/keyrings.alt"; 45 maintainers = with maintainers; [ nyarly ]; 46 }; 47 }
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 + , jaraco-classes 5 + , keyring 6 + , pytestCheckHook 7 , pythonOlder 8 , setuptools-scm 9 }: 10 11 buildPythonPackage rec { 12 + pname = "keyrings-alt"; 13 + version = "5.0.0"; 14 format = "pyproject"; 15 + 16 + disabled = pythonOlder "3.8"; 17 18 src = fetchPypi { 19 + pname = "keyrings.alt"; 20 + inherit version; 21 + hash = "sha256-nURstHu86pD/ouzD6AA6z0FXP8IBv0S0vxO9DhFISCg="; 22 }; 23 24 nativeBuildInputs = [ ··· 26 ]; 27 28 propagatedBuildInputs = [ 29 + jaraco-classes 30 ]; 31 32 nativeCheckInputs = [ ··· 39 ]; 40 41 meta = with lib; { 42 description = "Alternate keyring implementations"; 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; 46 maintainers = with maintainers; [ nyarly ]; 47 }; 48 }
+3 -2
pkgs/development/python-modules/mdformat-mkdocs/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "mdformat-mkdocs"; 12 - version = "1.0.2"; 13 format = "flit"; 14 15 disabled = pythonOlder "3.7"; ··· 18 owner = "KyleKing"; 19 repo = pname; 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-H+wqgcXNrdrZ5aQvZ7XM8YpBpVZM6pFtsANC00UZ0jM="; 22 }; 23 24 buildInputs = [ ··· 34 meta = with lib; { 35 description = "mdformat plugin for MkDocs"; 36 homepage = "https://github.com/KyleKing/mdformat-mkdocs"; 37 license = licenses.mit; 38 maintainers = with maintainers; [ aldoborrero ]; 39 };
··· 9 10 buildPythonPackage rec { 11 pname = "mdformat-mkdocs"; 12 + version = "1.0.4"; 13 format = "flit"; 14 15 disabled = pythonOlder "3.7"; ··· 18 owner = "KyleKing"; 19 repo = pname; 20 rev = "refs/tags/v${version}"; 21 + hash = "sha256-mGWeG8clWJ7obsvO+gYaVzfAyDOh9HNdyWW5KgOgfmM="; 22 }; 23 24 buildInputs = [ ··· 34 meta = with lib; { 35 description = "mdformat plugin for MkDocs"; 36 homepage = "https://github.com/KyleKing/mdformat-mkdocs"; 37 + changelog = "https://github.com/KyleKing/mdformat-mkdocs/releases/tag/v${version}"; 38 license = licenses.mit; 39 maintainers = with maintainers; [ aldoborrero ]; 40 };
+6 -7
pkgs/development/python-modules/meep/default.nix
··· 4 , fetchFromGitHub 5 , autoreconfHook 6 , pkg-config 7 , gfortran 8 , mpi 9 , blas ··· 108 errors can be caught. 109 */ 110 doCheck = true; 111 checkPhase = '' 112 - export PATH=$PATH:${openssh}/bin 113 - export PYTHONPATH="$out/lib/${python.libPrefix}/site-packages:$PYTHONPATH" 114 - 115 - export OMP_NUM_THREADS=1 116 117 - # Fix to make mpich run in a sandbox 118 - export HYDRA_IFACE=lo 119 - export OMPI_MCA_rmaps_base_oversubscribe=1 120 121 # Generate a python test script 122 cat > test.py << EOF ··· 139 EOF 140 141 ${mpi}/bin/mpiexec -np 2 python3 test.py 142 ''; 143 144 meta = with lib; {
··· 4 , fetchFromGitHub 5 , autoreconfHook 6 , pkg-config 7 + , mpiCheckPhaseHook 8 , gfortran 9 , mpi 10 , blas ··· 109 errors can be caught. 110 */ 111 doCheck = true; 112 + nativeCheckInputs = [ mpiCheckPhaseHook openssh ]; 113 checkPhase = '' 114 + runHook preCheck 115 116 + export PYTHONPATH="$out/lib/${python.libPrefix}/site-packages:$PYTHONPATH" 117 118 # Generate a python test script 119 cat > test.py << EOF ··· 136 EOF 137 138 ${mpi}/bin/mpiexec -np 2 python3 test.py 139 + 140 + runHook postCheck 141 ''; 142 143 meta = with lib; {
+2 -2
pkgs/development/python-modules/meshtastic/default.nix
··· 20 21 buildPythonPackage rec { 22 pname = "meshtastic"; 23 - version = "2.2.1"; 24 format = "setuptools"; 25 26 disabled = pythonOlder "3.7"; ··· 29 owner = "meshtastic"; 30 repo = "Meshtastic-python"; 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-szeY3+84xAihGK9nLgMQf9oLRDlKlaPg6+I42TJkfVY="; 33 }; 34 35 propagatedBuildInputs = [
··· 20 21 buildPythonPackage rec { 22 pname = "meshtastic"; 23 + version = "2.2.2"; 24 format = "setuptools"; 25 26 disabled = pythonOlder "3.7"; ··· 29 owner = "meshtastic"; 30 repo = "Meshtastic-python"; 31 rev = "refs/tags/${version}"; 32 + hash = "sha256-7mQq0phe920t7aJxvP0cCpVNH9s7F+x1fBdzAVUgtKE="; 33 }; 34 35 propagatedBuildInputs = [
+4 -6
pkgs/development/python-modules/mpi4py/default.nix
··· 1 - { lib, fetchPypi, fetchpatch, python, buildPythonPackage, mpi, openssh }: 2 3 buildPythonPackage rec { 4 pname = "mpi4py"; ··· 33 # sometimes packages specify where files should be installed outside the usual 34 # python lib prefix, we override that back so all infrastructure (setup hooks) 35 # 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 ''; 41 42 setupPyBuildFlags = ["--mpicc=${mpi}/bin/mpicc"]; ··· 45 46 __darwinAllowLocalNetworking = true; 47 48 - nativeCheckInputs = [ openssh ]; 49 50 meta = with lib; { 51 description = "Python bindings for the Message Passing Interface standard";
··· 1 + { lib, fetchPypi, fetchpatch, python, buildPythonPackage 2 + , mpi, mpiCheckPhaseHook, openssh 3 + }: 4 5 buildPythonPackage rec { 6 pname = "mpi4py"; ··· 35 # sometimes packages specify where files should be installed outside the usual 36 # python lib prefix, we override that back so all infrastructure (setup hooks) 37 # work as expected 38 ''; 39 40 setupPyBuildFlags = ["--mpicc=${mpi}/bin/mpicc"]; ··· 43 44 __darwinAllowLocalNetworking = true; 45 46 + nativeCheckInputs = [ openssh mpiCheckPhaseHook ]; 47 48 meta = with lib; { 49 description = "Python bindings for the Message Passing Interface standard";
+2 -2
pkgs/development/python-modules/oauthenticator/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "oauthenticator"; 17 - version = "16.0.6"; 18 format = "setuptools"; 19 20 disabled = pythonOlder "3.7"; 21 22 src = fetchPypi { 23 inherit pname version; 24 - hash = "sha256-82I+ZmWRUUV+kxveHNDXTsbOeZcT0QJo/SJP3paxRcY="; 25 }; 26 27 postPatch = ''
··· 14 15 buildPythonPackage rec { 16 pname = "oauthenticator"; 17 + version = "16.0.7"; 18 format = "setuptools"; 19 20 disabled = pythonOlder "3.7"; 21 22 src = fetchPypi { 23 inherit pname version; 24 + hash = "sha256-opF7HdTJX4M7gTgB0VyWyyG/DO7lrVTvTcxMBX3a6UE="; 25 }; 26 27 postPatch = ''
+2 -2
pkgs/development/python-modules/publicsuffixlist/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "publicsuffixlist"; 12 - version = "0.10.0.20230814"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - hash = "sha256-GG6ilUUauVT2u/BuS4agzJVQdydEuGwpxJVznWDb46Q="; 20 }; 21 22 passthru.optional-dependencies = {
··· 9 10 buildPythonPackage rec { 11 pname = "publicsuffixlist"; 12 + version = "0.10.0.20230824"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + hash = "sha256-8Cln/fjc1ne1EPyvGJH55N4Xzs9FbvZOxaoaXiWY8Bw="; 20 }; 21 22 passthru.optional-dependencies = {
+6 -10
pkgs/development/python-modules/smbus2/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 - , nose 5 , pythonOlder 6 }: 7 8 buildPythonPackage rec { 9 pname = "smbus2"; 10 - version = "0.4.2"; 11 12 disabled = pythonOlder "3.6"; 13 ··· 15 owner = "kplindegaard"; 16 repo = pname; 17 rev = "refs/tags/${version}"; 18 - hash = "sha256-6JzFbhUq8XR1nYkadPeYqItcLZDIFAwTe3BriEW2nVI="; 19 }; 20 21 nativeCheckInputs = [ 22 - nose 23 ]; 24 - 25 - checkPhase = '' 26 - runHook preCheck 27 - nosetests 28 - runHook postCheck 29 - ''; 30 31 pythonImportsCheck = [ 32 "smbus2" ··· 35 meta = with lib; { 36 description = "Drop-in replacement for smbus-cffi/smbus-python"; 37 homepage = "https://smbus2.readthedocs.io/"; 38 license = licenses.mit; 39 maintainers = with maintainers; [ fab ]; 40 };
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 + , pytestCheckHook 5 , pythonOlder 6 }: 7 8 buildPythonPackage rec { 9 pname = "smbus2"; 10 + version = "0.4.3"; 11 + format = "setuptools"; 12 13 disabled = pythonOlder "3.6"; 14 ··· 16 owner = "kplindegaard"; 17 repo = pname; 18 rev = "refs/tags/${version}"; 19 + hash = "sha256-tjJurJzDn0ATiYY3Xo66lwUs98/7ZLG3d4+h1prVHAI="; 20 }; 21 22 nativeCheckInputs = [ 23 + pytestCheckHook 24 ]; 25 26 pythonImportsCheck = [ 27 "smbus2" ··· 30 meta = with lib; { 31 description = "Drop-in replacement for smbus-cffi/smbus-python"; 32 homepage = "https://smbus2.readthedocs.io/"; 33 + changelog = "https://github.com/kplindegaard/smbus2/blob/${version}/CHANGELOG.md"; 34 license = licenses.mit; 35 maintainers = with maintainers; [ fab ]; 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 23 buildPythonApplication rec { 24 pname = "checkov"; 25 - version = "2.4.7"; 26 format = "setuptools"; 27 28 src = fetchFromGitHub { 29 owner = "bridgecrewio"; 30 repo = pname; 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-NveRGWf0Aghu0fxVAVSukrH9zFl+QJ2rWNYm5JIHIjk="; 33 }; 34 35 patches = [
··· 22 23 buildPythonApplication rec { 24 pname = "checkov"; 25 + version = "2.4.10"; 26 format = "setuptools"; 27 28 src = fetchFromGitHub { 29 owner = "bridgecrewio"; 30 repo = pname; 31 rev = "refs/tags/${version}"; 32 + hash = "sha256-L5BRpwWAP4WyP3kyzp8ELVnXth84jRwP9wmj9kA+xcw="; 33 }; 34 35 patches = [
+511 -502
pkgs/development/tools/mongosh/package-lock.json
··· 1 { 2 "name": "mongosh", 3 - "version": "1.10.5", 4 "lockfileVersion": 3, 5 "requires": true, 6 "packages": { 7 "": { 8 "name": "mongosh", 9 - "version": "1.10.5", 10 "license": "Apache-2.0", 11 "dependencies": { 12 - "@mongosh/cli-repl": "1.10.5" 13 }, 14 "bin": { 15 "mongosh": "bin/mongosh.js" ··· 122 "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 123 }, 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==", 128 "dependencies": { 129 "@aws-crypto/sha256-browser": "3.0.0", 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", 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", 157 "@smithy/util-base64": "^2.0.0", 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", 162 "@smithy/util-retry": "^2.0.0", 163 "@smithy/util-utf8": "^2.0.0", 164 "tslib": "^2.5.0" ··· 168 } 169 }, 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==", 174 "dependencies": { 175 "@aws-crypto/sha256-browser": "3.0.0", 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", 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", 200 "@smithy/util-base64": "^2.0.0", 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", 205 "@smithy/util-retry": "^2.0.0", 206 "@smithy/util-utf8": "^2.0.0", 207 "tslib": "^2.5.0" ··· 211 } 212 }, 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==", 217 "dependencies": { 218 "@aws-crypto/sha256-browser": "3.0.0", 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", 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", 246 "@smithy/util-base64": "^2.0.0", 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", 251 "@smithy/util-retry": "^2.0.0", 252 "@smithy/util-utf8": "^2.0.0", 253 "fast-xml-parser": "4.2.5", ··· 258 } 259 }, 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==", 264 "dependencies": { 265 - "@aws-sdk/client-cognito-identity": "3.391.0", 266 - "@aws-sdk/types": "3.391.0", 267 "@smithy/property-provider": "^2.0.0", 268 - "@smithy/types": "^2.2.0", 269 "tslib": "^2.5.0" 270 }, 271 "engines": { ··· 273 } 274 }, 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==", 279 "dependencies": { 280 - "@aws-sdk/types": "3.391.0", 281 "@smithy/property-provider": "^2.0.0", 282 - "@smithy/types": "^2.2.0", 283 "tslib": "^2.5.0" 284 }, 285 "engines": { ··· 287 } 288 }, 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==", 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", 299 "@smithy/credential-provider-imds": "^2.0.0", 300 "@smithy/property-provider": "^2.0.0", 301 "@smithy/shared-ini-file-loader": "^2.0.0", 302 - "@smithy/types": "^2.2.0", 303 "tslib": "^2.5.0" 304 }, 305 "engines": { ··· 307 } 308 }, 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==", 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", 320 "@smithy/credential-provider-imds": "^2.0.0", 321 "@smithy/property-provider": "^2.0.0", 322 "@smithy/shared-ini-file-loader": "^2.0.0", 323 - "@smithy/types": "^2.2.0", 324 "tslib": "^2.5.0" 325 }, 326 "engines": { ··· 328 } 329 }, 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==", 334 "dependencies": { 335 - "@aws-sdk/types": "3.391.0", 336 "@smithy/property-provider": "^2.0.0", 337 "@smithy/shared-ini-file-loader": "^2.0.0", 338 - "@smithy/types": "^2.2.0", 339 "tslib": "^2.5.0" 340 }, 341 "engines": { ··· 343 } 344 }, 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==", 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", 353 "@smithy/property-provider": "^2.0.0", 354 "@smithy/shared-ini-file-loader": "^2.0.0", 355 - "@smithy/types": "^2.2.0", 356 "tslib": "^2.5.0" 357 }, 358 "engines": { ··· 360 } 361 }, 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==", 366 "dependencies": { 367 - "@aws-sdk/types": "3.391.0", 368 "@smithy/property-provider": "^2.0.0", 369 - "@smithy/types": "^2.2.0", 370 "tslib": "^2.5.0" 371 }, 372 "engines": { ··· 374 } 375 }, 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==", 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", 392 "@smithy/credential-provider-imds": "^2.0.0", 393 "@smithy/property-provider": "^2.0.0", 394 - "@smithy/types": "^2.2.0", 395 "tslib": "^2.5.0" 396 }, 397 "engines": { ··· 399 } 400 }, 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==", 405 "dependencies": { 406 - "@aws-sdk/types": "3.391.0", 407 - "@smithy/protocol-http": "^2.0.3", 408 - "@smithy/types": "^2.2.0", 409 "tslib": "^2.5.0" 410 }, 411 "engines": { ··· 413 } 414 }, 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==", 419 "dependencies": { 420 - "@aws-sdk/types": "3.391.0", 421 - "@smithy/types": "^2.2.0", 422 "tslib": "^2.5.0" 423 }, 424 "engines": { ··· 426 } 427 }, 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==", 432 "dependencies": { 433 - "@aws-sdk/types": "3.391.0", 434 - "@smithy/protocol-http": "^2.0.3", 435 - "@smithy/types": "^2.2.0", 436 "tslib": "^2.5.0" 437 }, 438 "engines": { ··· 440 } 441 }, 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==", 446 "dependencies": { 447 - "@aws-sdk/middleware-signing": "3.391.0", 448 - "@aws-sdk/types": "3.391.0", 449 - "@smithy/types": "^2.2.0", 450 "tslib": "^2.5.0" 451 }, 452 "engines": { ··· 454 } 455 }, 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==", 460 "dependencies": { 461 - "@aws-sdk/types": "3.391.0", 462 "@smithy/property-provider": "^2.0.0", 463 - "@smithy/protocol-http": "^2.0.3", 464 "@smithy/signature-v4": "^2.0.0", 465 - "@smithy/types": "^2.2.0", 466 "@smithy/util-middleware": "^2.0.0", 467 "tslib": "^2.5.0" 468 }, ··· 471 } 472 }, 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==", 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", 482 "tslib": "^2.5.0" 483 }, 484 "engines": { ··· 486 } 487 }, 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==", 492 "dependencies": { 493 "@aws-crypto/sha256-browser": "3.0.0", 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", 511 "@smithy/middleware-stack": "^2.0.0", 512 - "@smithy/node-config-provider": "^2.0.3", 513 - "@smithy/node-http-handler": "^2.0.3", 514 "@smithy/property-provider": "^2.0.0", 515 - "@smithy/protocol-http": "^2.0.3", 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", 520 "@smithy/util-base64": "^2.0.0", 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", 525 "@smithy/util-retry": "^2.0.0", 526 "@smithy/util-utf8": "^2.0.0", 527 "tslib": "^2.5.0" ··· 531 } 532 }, 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==", 537 "dependencies": { 538 - "@smithy/types": "^2.2.0", 539 "tslib": "^2.5.0" 540 }, 541 "engines": { ··· 543 } 544 }, 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==", 549 "dependencies": { 550 - "@aws-sdk/types": "3.391.0", 551 "tslib": "^2.5.0" 552 }, 553 "engines": { ··· 566 } 567 }, 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==", 572 "dependencies": { 573 - "@aws-sdk/types": "3.391.0", 574 - "@smithy/types": "^2.2.0", 575 "bowser": "^2.11.0", 576 "tslib": "^2.5.0" 577 } 578 }, 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==", 583 "dependencies": { 584 - "@aws-sdk/types": "3.391.0", 585 - "@smithy/node-config-provider": "^2.0.3", 586 - "@smithy/types": "^2.2.0", 587 "tslib": "^2.5.0" 588 }, 589 "engines": { ··· 691 } 692 }, 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==", 697 "dependencies": { 698 "@ampproject/remapping": "^2.2.0", 699 "@babel/code-frame": "^7.22.10", 700 "@babel/generator": "^7.22.10", 701 "@babel/helper-compilation-targets": "^7.22.10", 702 "@babel/helper-module-transforms": "^7.22.9", 703 - "@babel/helpers": "^7.22.10", 704 - "@babel/parser": "^7.22.10", 705 "@babel/template": "^7.22.5", 706 - "@babel/traverse": "^7.22.10", 707 - "@babel/types": "^7.22.10", 708 "convert-source-map": "^1.7.0", 709 "debug": "^4.1.0", 710 "gensync": "^1.0.0-beta.2", 711 - "json5": "^2.2.2", 712 "semver": "^6.3.1" 713 }, 714 "engines": { ··· 879 } 880 }, 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==", 885 "dependencies": { 886 "@babel/template": "^7.22.5", 887 - "@babel/traverse": "^7.22.10", 888 - "@babel/types": "^7.22.10" 889 }, 890 "engines": { 891 "node": ">=6.9.0" ··· 969 } 970 }, 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==", 975 "bin": { 976 "parser": "bin/babel-parser.js" 977 }, ··· 1035 } 1036 }, 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==", 1041 "dependencies": { 1042 "@babel/code-frame": "^7.22.10", 1043 "@babel/generator": "^7.22.10", ··· 1045 "@babel/helper-function-name": "^7.22.5", 1046 "@babel/helper-hoist-variables": "^7.22.5", 1047 "@babel/helper-split-export-declaration": "^7.22.6", 1048 - "@babel/parser": "^7.22.10", 1049 - "@babel/types": "^7.22.10", 1050 "debug": "^4.1.0", 1051 "globals": "^11.1.0" 1052 }, ··· 1055 } 1056 }, 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==", 1061 "dependencies": { 1062 "@babel/helper-string-parser": "^7.22.5", 1063 "@babel/helper-validator-identifier": "^7.22.5", ··· 1162 "node": ">= 14.18.0" 1163 } 1164 }, 1165 "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==", 1169 "dependencies": { 1170 - "@mongosh/errors": "1.10.5", 1171 - "@mongosh/i18n": "1.10.5", 1172 "mongodb-connection-string-url": "^2.6.0" 1173 }, 1174 "engines": { ··· 1176 } 1177 }, 1178 "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==", 1182 "dependencies": { 1183 "@babel/core": "^7.22.8", 1184 "@babel/plugin-transform-destructuring": "^7.22.5", ··· 1195 } 1196 }, 1197 "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==", 1201 "dependencies": { 1202 "@mongodb-js/mongodb-constants": "^0.2.2", 1203 - "@mongosh/shell-api": "1.10.5", 1204 "semver": "^7.5.4" 1205 }, 1206 "engines": { ··· 1208 } 1209 }, 1210 "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==", 1214 "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", 1229 "analytics-node": "^5.1.2", 1230 "ansi-escape-sequences": "^5.1.2", 1231 "askcharacter": "^1.0.0", ··· 1255 } 1256 }, 1257 "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==", 1261 "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", 1267 "js-beautify": "^1.14.0" 1268 }, 1269 "engines": { ··· 1271 } 1272 }, 1273 "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==", 1277 "dependencies": { 1278 "chalk": "^4.1.2", 1279 "handlebars": "^4.7.7", ··· 1284 } 1285 }, 1286 "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==", 1290 "dependencies": { 1291 "mongodb-connection-string-url": "^2.6.0", 1292 "mongodb-redact": "^0.2.2" ··· 1296 } 1297 }, 1298 "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==", 1302 "dependencies": { 1303 - "@mongosh/errors": "1.10.5", 1304 "mustache": "^4.0.0" 1305 }, 1306 "engines": { ··· 1308 } 1309 }, 1310 "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==", 1314 "dependencies": { 1315 "@babel/core": "^7.16.12", 1316 "@babel/types": "^7.21.2" ··· 1320 } 1321 }, 1322 "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==", 1326 "dependencies": { 1327 "@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", 1331 "mongodb-log-writer": "^1.3.0", 1332 "mongodb-redact": "^0.2.2" 1333 }, ··· 1336 } 1337 }, 1338 "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==", 1342 "dependencies": { 1343 "@aws-sdk/credential-providers": "^3.347.1", 1344 - "@mongosh/errors": "1.10.5", 1345 "bson": "^5.3.0", 1346 "mongodb": "^5.7.0", 1347 "mongodb-build-info": "^1.6.2" ··· 1354 } 1355 }, 1356 "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==", 1360 "dependencies": { 1361 "@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", 1365 "@types/sinon-chai": "^3.2.4", 1366 "aws4": "^1.11.0", 1367 "mongodb": "^5.7.0", ··· 1377 } 1378 }, 1379 "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==", 1383 "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", 1389 "mongodb-redact": "^0.2.2" 1390 }, 1391 "engines": { ··· 1393 } 1394 }, 1395 "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==", 1399 "dependencies": { 1400 - "@mongosh/async-rewriter2": "1.10.5", 1401 - "@mongosh/history": "1.10.5", 1402 - "@mongosh/shell-api": "1.10.5" 1403 }, 1404 "engines": { 1405 "node": ">=14.15.1" 1406 } 1407 }, 1408 "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==", 1412 "dependencies": { 1413 - "@mongosh/errors": "1.10.5", 1414 - "@mongosh/shell-api": "1.10.5", 1415 - "@mongosh/types": "1.10.5", 1416 "bson": "^5.3.0", 1417 "cross-spawn": "^7.0.3", 1418 "escape-string-regexp": "^4.0.0", ··· 1425 } 1426 }, 1427 "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==", 1431 "dependencies": { 1432 "@mongodb-js/devtools-connect": "^2.3.1" 1433 }, ··· 1468 "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" 1469 }, 1470 "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==", 1474 "dependencies": { 1475 - "@smithy/types": "^2.2.1", 1476 "tslib": "^2.5.0" 1477 }, 1478 "engines": { ··· 1480 } 1481 }, 1482 "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==", 1486 "dependencies": { 1487 - "@smithy/types": "^2.2.1", 1488 "@smithy/util-config-provider": "^2.0.0", 1489 "@smithy/util-middleware": "^2.0.0", 1490 "tslib": "^2.5.0" ··· 1494 } 1495 }, 1496 "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==", 1500 "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", 1505 "tslib": "^2.5.0" 1506 }, 1507 "engines": { ··· 1509 } 1510 }, 1511 "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==", 1515 "dependencies": { 1516 "@aws-crypto/crc32": "3.0.0", 1517 - "@smithy/types": "^2.2.1", 1518 "@smithy/util-hex-encoding": "^2.0.0", 1519 "tslib": "^2.5.0" 1520 } 1521 }, 1522 "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==", 1526 "dependencies": { 1527 - "@smithy/protocol-http": "^2.0.4", 1528 - "@smithy/querystring-builder": "^2.0.4", 1529 - "@smithy/types": "^2.2.1", 1530 "@smithy/util-base64": "^2.0.0", 1531 "tslib": "^2.5.0" 1532 } 1533 }, 1534 "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==", 1538 "dependencies": { 1539 - "@smithy/types": "^2.2.1", 1540 "@smithy/util-buffer-from": "^2.0.0", 1541 "@smithy/util-utf8": "^2.0.0", 1542 "tslib": "^2.5.0" ··· 1546 } 1547 }, 1548 "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==", 1552 "dependencies": { 1553 - "@smithy/types": "^2.2.1", 1554 "tslib": "^2.5.0" 1555 } 1556 }, ··· 1566 } 1567 }, 1568 "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==", 1572 "dependencies": { 1573 - "@smithy/protocol-http": "^2.0.4", 1574 - "@smithy/types": "^2.2.1", 1575 "tslib": "^2.5.0" 1576 }, 1577 "engines": { ··· 1579 } 1580 }, 1581 "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==", 1585 "dependencies": { 1586 - "@smithy/middleware-serde": "^2.0.4", 1587 - "@smithy/types": "^2.2.1", 1588 - "@smithy/url-parser": "^2.0.4", 1589 "@smithy/util-middleware": "^2.0.0", 1590 "tslib": "^2.5.0" 1591 }, ··· 1594 } 1595 }, 1596 "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==", 1600 "dependencies": { 1601 - "@smithy/protocol-http": "^2.0.4", 1602 "@smithy/service-error-classification": "^2.0.0", 1603 - "@smithy/types": "^2.2.1", 1604 "@smithy/util-middleware": "^2.0.0", 1605 "@smithy/util-retry": "^2.0.0", 1606 "tslib": "^2.5.0", ··· 1611 } 1612 }, 1613 "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==", 1617 "dependencies": { 1618 - "@smithy/types": "^2.2.1", 1619 "tslib": "^2.5.0" 1620 }, 1621 "engines": { ··· 1634 } 1635 }, 1636 "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==", 1640 "dependencies": { 1641 - "@smithy/property-provider": "^2.0.4", 1642 - "@smithy/shared-ini-file-loader": "^2.0.4", 1643 - "@smithy/types": "^2.2.1", 1644 "tslib": "^2.5.0" 1645 }, 1646 "engines": { ··· 1648 } 1649 }, 1650 "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==", 1654 "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", 1659 "tslib": "^2.5.0" 1660 }, 1661 "engines": { ··· 1663 } 1664 }, 1665 "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==", 1669 "dependencies": { 1670 - "@smithy/types": "^2.2.1", 1671 "tslib": "^2.5.0" 1672 }, 1673 "engines": { ··· 1675 } 1676 }, 1677 "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==", 1681 "dependencies": { 1682 - "@smithy/types": "^2.2.1", 1683 "tslib": "^2.5.0" 1684 }, 1685 "engines": { ··· 1687 } 1688 }, 1689 "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==", 1693 "dependencies": { 1694 - "@smithy/types": "^2.2.1", 1695 "@smithy/util-uri-escape": "^2.0.0", 1696 "tslib": "^2.5.0" 1697 }, ··· 1700 } 1701 }, 1702 "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==", 1706 "dependencies": { 1707 - "@smithy/types": "^2.2.1", 1708 "tslib": "^2.5.0" 1709 }, 1710 "engines": { ··· 1720 } 1721 }, 1722 "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==", 1726 "dependencies": { 1727 - "@smithy/types": "^2.2.1", 1728 "tslib": "^2.5.0" 1729 }, 1730 "engines": { ··· 1732 } 1733 }, 1734 "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==", 1738 "dependencies": { 1739 - "@smithy/eventstream-codec": "^2.0.4", 1740 "@smithy/is-array-buffer": "^2.0.0", 1741 - "@smithy/types": "^2.2.1", 1742 "@smithy/util-hex-encoding": "^2.0.0", 1743 "@smithy/util-middleware": "^2.0.0", 1744 "@smithy/util-uri-escape": "^2.0.0", ··· 1750 } 1751 }, 1752 "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==", 1756 "dependencies": { 1757 "@smithy/middleware-stack": "^2.0.0", 1758 - "@smithy/types": "^2.2.1", 1759 - "@smithy/util-stream": "^2.0.4", 1760 "tslib": "^2.5.0" 1761 }, 1762 "engines": { ··· 1764 } 1765 }, 1766 "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==", 1770 "dependencies": { 1771 "tslib": "^2.5.0" 1772 }, ··· 1775 } 1776 }, 1777 "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==", 1781 "dependencies": { 1782 - "@smithy/querystring-parser": "^2.0.4", 1783 - "@smithy/types": "^2.2.1", 1784 "tslib": "^2.5.0" 1785 } 1786 }, ··· 1805 } 1806 }, 1807 "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==", 1811 "dependencies": { 1812 "tslib": "^2.5.0" 1813 }, ··· 1839 } 1840 }, 1841 "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==", 1845 "dependencies": { 1846 - "@smithy/property-provider": "^2.0.4", 1847 - "@smithy/types": "^2.2.1", 1848 "bowser": "^2.11.0", 1849 "tslib": "^2.5.0" 1850 }, ··· 1853 } 1854 }, 1855 "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==", 1859 "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", 1865 "tslib": "^2.5.0" 1866 }, 1867 "engines": { ··· 1903 } 1904 }, 1905 "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==", 1909 "dependencies": { 1910 - "@smithy/fetch-http-handler": "^2.0.4", 1911 - "@smithy/node-http-handler": "^2.0.4", 1912 - "@smithy/types": "^2.2.1", 1913 "@smithy/util-base64": "^2.0.0", 1914 "@smithy/util-buffer-from": "^2.0.0", 1915 "@smithy/util-hex-encoding": "^2.0.0", ··· 1986 "integrity": "sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==" 1987 }, 1988 "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==" 1992 }, 1993 "node_modules/@types/sinon": { 1994 "version": "10.0.16", ··· 2459 } 2460 }, 2461 "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==", 2465 "funding": [ 2466 { 2467 "type": "opencollective", ··· 2751 "peer": true 2752 }, 2753 "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==" 2757 }, 2758 "node_modules/emphasize": { 2759 "version": "4.2.0", ··· 3786 "optional": true 3787 }, 3788 "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==", 3792 "dependencies": { 3793 "bson": "^5.4.0", 3794 "mongodb-connection-string-url": "^2.6.0", ··· 3798 "node": ">=14.20.1" 3799 }, 3800 "optionalDependencies": { 3801 - "saslprep": "^1.0.3" 3802 }, 3803 "peerDependencies": { 3804 - "@aws-sdk/credential-providers": "^3.201.0", 3805 - "@mongodb-js/zstd": "^1.1.0", 3806 - "kerberos": "^2.0.1", 3807 "mongodb-client-encryption": ">=2.3.0 <3", 3808 "snappy": "^7.2.2" 3809 }, ··· 3954 "optional": true 3955 }, 3956 "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==", 3960 "dependencies": { 3961 "whatwg-url": "^5.0.0" 3962 }, ··· 4895 } 4896 }, 4897 "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==" 4901 }, 4902 "node_modules/tunnel-agent": { 4903 "version": "0.6.0", ··· 4925 } 4926 }, 4927 "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==", 4931 "bin": { 4932 "tsc": "bin/tsc", 4933 "tsserver": "bin/tsserver"
··· 1 { 2 "name": "mongosh", 3 + "version": "1.10.6", 4 "lockfileVersion": 3, 5 "requires": true, 6 "packages": { 7 "": { 8 "name": "mongosh", 9 + "version": "1.10.6", 10 "license": "Apache-2.0", 11 "dependencies": { 12 + "@mongosh/cli-repl": "1.10.6" 13 }, 14 "bin": { 15 "mongosh": "bin/mongosh.js" ··· 122 "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 123 }, 124 "node_modules/@aws-sdk/client-cognito-identity": { 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 "dependencies": { 129 "@aws-crypto/sha256-browser": "3.0.0", 130 "@aws-crypto/sha256-js": "3.0.0", 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 "@smithy/middleware-stack": "^2.0.0", 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 "@smithy/util-base64": "^2.0.0", 158 "@smithy/util-body-length-browser": "^2.0.0", 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 "@smithy/util-retry": "^2.0.0", 163 "@smithy/util-utf8": "^2.0.0", 164 "tslib": "^2.5.0" ··· 168 } 169 }, 170 "node_modules/@aws-sdk/client-sso": { 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 "dependencies": { 175 "@aws-crypto/sha256-browser": "3.0.0", 176 "@aws-crypto/sha256-js": "3.0.0", 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 "@smithy/middleware-stack": "^2.0.0", 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 "@smithy/util-base64": "^2.0.0", 201 "@smithy/util-body-length-browser": "^2.0.0", 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 "@smithy/util-retry": "^2.0.0", 206 "@smithy/util-utf8": "^2.0.0", 207 "tslib": "^2.5.0" ··· 211 } 212 }, 213 "node_modules/@aws-sdk/client-sts": { 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 "dependencies": { 218 "@aws-crypto/sha256-browser": "3.0.0", 219 "@aws-crypto/sha256-js": "3.0.0", 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 "@smithy/middleware-stack": "^2.0.0", 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 "@smithy/util-base64": "^2.0.0", 247 "@smithy/util-body-length-browser": "^2.0.0", 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 "@smithy/util-retry": "^2.0.0", 252 "@smithy/util-utf8": "^2.0.0", 253 "fast-xml-parser": "4.2.5", ··· 258 } 259 }, 260 "node_modules/@aws-sdk/credential-provider-cognito-identity": { 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 "dependencies": { 265 + "@aws-sdk/client-cognito-identity": "3.398.0", 266 + "@aws-sdk/types": "3.398.0", 267 "@smithy/property-provider": "^2.0.0", 268 + "@smithy/types": "^2.2.2", 269 "tslib": "^2.5.0" 270 }, 271 "engines": { ··· 273 } 274 }, 275 "node_modules/@aws-sdk/credential-provider-env": { 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 "dependencies": { 280 + "@aws-sdk/types": "3.398.0", 281 "@smithy/property-provider": "^2.0.0", 282 + "@smithy/types": "^2.2.2", 283 "tslib": "^2.5.0" 284 }, 285 "engines": { ··· 287 } 288 }, 289 "node_modules/@aws-sdk/credential-provider-ini": { 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 "dependencies": { 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 "@smithy/credential-provider-imds": "^2.0.0", 300 "@smithy/property-provider": "^2.0.0", 301 "@smithy/shared-ini-file-loader": "^2.0.0", 302 + "@smithy/types": "^2.2.2", 303 "tslib": "^2.5.0" 304 }, 305 "engines": { ··· 307 } 308 }, 309 "node_modules/@aws-sdk/credential-provider-node": { 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 "dependencies": { 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 "@smithy/credential-provider-imds": "^2.0.0", 321 "@smithy/property-provider": "^2.0.0", 322 "@smithy/shared-ini-file-loader": "^2.0.0", 323 + "@smithy/types": "^2.2.2", 324 "tslib": "^2.5.0" 325 }, 326 "engines": { ··· 328 } 329 }, 330 "node_modules/@aws-sdk/credential-provider-process": { 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 "dependencies": { 335 + "@aws-sdk/types": "3.398.0", 336 "@smithy/property-provider": "^2.0.0", 337 "@smithy/shared-ini-file-loader": "^2.0.0", 338 + "@smithy/types": "^2.2.2", 339 "tslib": "^2.5.0" 340 }, 341 "engines": { ··· 343 } 344 }, 345 "node_modules/@aws-sdk/credential-provider-sso": { 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 "dependencies": { 350 + "@aws-sdk/client-sso": "3.398.0", 351 + "@aws-sdk/token-providers": "3.398.0", 352 + "@aws-sdk/types": "3.398.0", 353 "@smithy/property-provider": "^2.0.0", 354 "@smithy/shared-ini-file-loader": "^2.0.0", 355 + "@smithy/types": "^2.2.2", 356 "tslib": "^2.5.0" 357 }, 358 "engines": { ··· 360 } 361 }, 362 "node_modules/@aws-sdk/credential-provider-web-identity": { 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 "dependencies": { 367 + "@aws-sdk/types": "3.398.0", 368 "@smithy/property-provider": "^2.0.0", 369 + "@smithy/types": "^2.2.2", 370 "tslib": "^2.5.0" 371 }, 372 "engines": { ··· 374 } 375 }, 376 "node_modules/@aws-sdk/credential-providers": { 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 "dependencies": { 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 "@smithy/credential-provider-imds": "^2.0.0", 393 "@smithy/property-provider": "^2.0.0", 394 + "@smithy/types": "^2.2.2", 395 "tslib": "^2.5.0" 396 }, 397 "engines": { ··· 399 } 400 }, 401 "node_modules/@aws-sdk/middleware-host-header": { 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 "dependencies": { 406 + "@aws-sdk/types": "3.398.0", 407 + "@smithy/protocol-http": "^2.0.5", 408 + "@smithy/types": "^2.2.2", 409 "tslib": "^2.5.0" 410 }, 411 "engines": { ··· 413 } 414 }, 415 "node_modules/@aws-sdk/middleware-logger": { 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 "dependencies": { 420 + "@aws-sdk/types": "3.398.0", 421 + "@smithy/types": "^2.2.2", 422 "tslib": "^2.5.0" 423 }, 424 "engines": { ··· 426 } 427 }, 428 "node_modules/@aws-sdk/middleware-recursion-detection": { 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 "dependencies": { 433 + "@aws-sdk/types": "3.398.0", 434 + "@smithy/protocol-http": "^2.0.5", 435 + "@smithy/types": "^2.2.2", 436 "tslib": "^2.5.0" 437 }, 438 "engines": { ··· 440 } 441 }, 442 "node_modules/@aws-sdk/middleware-sdk-sts": { 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 "dependencies": { 447 + "@aws-sdk/middleware-signing": "3.398.0", 448 + "@aws-sdk/types": "3.398.0", 449 + "@smithy/types": "^2.2.2", 450 "tslib": "^2.5.0" 451 }, 452 "engines": { ··· 454 } 455 }, 456 "node_modules/@aws-sdk/middleware-signing": { 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 "dependencies": { 461 + "@aws-sdk/types": "3.398.0", 462 "@smithy/property-provider": "^2.0.0", 463 + "@smithy/protocol-http": "^2.0.5", 464 "@smithy/signature-v4": "^2.0.0", 465 + "@smithy/types": "^2.2.2", 466 "@smithy/util-middleware": "^2.0.0", 467 "tslib": "^2.5.0" 468 }, ··· 471 } 472 }, 473 "node_modules/@aws-sdk/middleware-user-agent": { 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 "dependencies": { 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 "tslib": "^2.5.0" 483 }, 484 "engines": { ··· 486 } 487 }, 488 "node_modules/@aws-sdk/token-providers": { 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 "dependencies": { 493 "@aws-crypto/sha256-browser": "3.0.0", 494 "@aws-crypto/sha256-js": "3.0.0", 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 "@smithy/middleware-stack": "^2.0.0", 512 + "@smithy/node-config-provider": "^2.0.5", 513 + "@smithy/node-http-handler": "^2.0.5", 514 "@smithy/property-provider": "^2.0.0", 515 + "@smithy/protocol-http": "^2.0.5", 516 "@smithy/shared-ini-file-loader": "^2.0.0", 517 + "@smithy/smithy-client": "^2.0.5", 518 + "@smithy/types": "^2.2.2", 519 + "@smithy/url-parser": "^2.0.5", 520 "@smithy/util-base64": "^2.0.0", 521 "@smithy/util-body-length-browser": "^2.0.0", 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 "@smithy/util-retry": "^2.0.0", 526 "@smithy/util-utf8": "^2.0.0", 527 "tslib": "^2.5.0" ··· 531 } 532 }, 533 "node_modules/@aws-sdk/types": { 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 "dependencies": { 538 + "@smithy/types": "^2.2.2", 539 "tslib": "^2.5.0" 540 }, 541 "engines": { ··· 543 } 544 }, 545 "node_modules/@aws-sdk/util-endpoints": { 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 "dependencies": { 550 + "@aws-sdk/types": "3.398.0", 551 "tslib": "^2.5.0" 552 }, 553 "engines": { ··· 566 } 567 }, 568 "node_modules/@aws-sdk/util-user-agent-browser": { 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 "dependencies": { 573 + "@aws-sdk/types": "3.398.0", 574 + "@smithy/types": "^2.2.2", 575 "bowser": "^2.11.0", 576 "tslib": "^2.5.0" 577 } 578 }, 579 "node_modules/@aws-sdk/util-user-agent-node": { 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 "dependencies": { 584 + "@aws-sdk/types": "3.398.0", 585 + "@smithy/node-config-provider": "^2.0.5", 586 + "@smithy/types": "^2.2.2", 587 "tslib": "^2.5.0" 588 }, 589 "engines": { ··· 691 } 692 }, 693 "node_modules/@babel/core": { 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 "dependencies": { 698 "@ampproject/remapping": "^2.2.0", 699 "@babel/code-frame": "^7.22.10", 700 "@babel/generator": "^7.22.10", 701 "@babel/helper-compilation-targets": "^7.22.10", 702 "@babel/helper-module-transforms": "^7.22.9", 703 + "@babel/helpers": "^7.22.11", 704 + "@babel/parser": "^7.22.11", 705 "@babel/template": "^7.22.5", 706 + "@babel/traverse": "^7.22.11", 707 + "@babel/types": "^7.22.11", 708 "convert-source-map": "^1.7.0", 709 "debug": "^4.1.0", 710 "gensync": "^1.0.0-beta.2", 711 + "json5": "^2.2.3", 712 "semver": "^6.3.1" 713 }, 714 "engines": { ··· 879 } 880 }, 881 "node_modules/@babel/helpers": { 882 + "version": "7.22.11", 883 + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz", 884 + "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==", 885 "dependencies": { 886 "@babel/template": "^7.22.5", 887 + "@babel/traverse": "^7.22.11", 888 + "@babel/types": "^7.22.11" 889 }, 890 "engines": { 891 "node": ">=6.9.0" ··· 969 } 970 }, 971 "node_modules/@babel/parser": { 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 "bin": { 976 "parser": "bin/babel-parser.js" 977 }, ··· 1035 } 1036 }, 1037 "node_modules/@babel/traverse": { 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 "dependencies": { 1042 "@babel/code-frame": "^7.22.10", 1043 "@babel/generator": "^7.22.10", ··· 1045 "@babel/helper-function-name": "^7.22.5", 1046 "@babel/helper-hoist-variables": "^7.22.5", 1047 "@babel/helper-split-export-declaration": "^7.22.6", 1048 + "@babel/parser": "^7.22.11", 1049 + "@babel/types": "^7.22.11", 1050 "debug": "^4.1.0", 1051 "globals": "^11.1.0" 1052 }, ··· 1055 } 1056 }, 1057 "node_modules/@babel/types": { 1058 + "version": "7.22.11", 1059 + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz", 1060 + "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==", 1061 "dependencies": { 1062 "@babel/helper-string-parser": "^7.22.5", 1063 "@babel/helper-validator-identifier": "^7.22.5", ··· 1162 "node": ">= 14.18.0" 1163 } 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 + }, 1174 "node_modules/@mongosh/arg-parser": { 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==", 1178 "dependencies": { 1179 + "@mongosh/errors": "1.10.6", 1180 + "@mongosh/i18n": "1.10.6", 1181 "mongodb-connection-string-url": "^2.6.0" 1182 }, 1183 "engines": { ··· 1185 } 1186 }, 1187 "node_modules/@mongosh/async-rewriter2": { 1188 + "version": "1.10.6", 1189 + "resolved": "https://registry.npmjs.org/@mongosh/async-rewriter2/-/async-rewriter2-1.10.6.tgz", 1190 + "integrity": "sha512-1cd08jGwxj5TWdOSaLHnh82aT3IAzE7SpdXNdPIS6x9f1bddljnW21HT7aqVyuaG5RtU9kckf8eqE0pbD65taQ==", 1191 "dependencies": { 1192 "@babel/core": "^7.22.8", 1193 "@babel/plugin-transform-destructuring": "^7.22.5", ··· 1204 } 1205 }, 1206 "node_modules/@mongosh/autocomplete": { 1207 + "version": "1.10.6", 1208 + "resolved": "https://registry.npmjs.org/@mongosh/autocomplete/-/autocomplete-1.10.6.tgz", 1209 + "integrity": "sha512-mb1KgTMyfFb/WrBvaKLuBI3GbnlEkxC4JNqWSHW91nwvsrBY0rr13lSI/ENJX3CsrjzIC1DyxcY6J2um2UC7dw==", 1210 "dependencies": { 1211 "@mongodb-js/mongodb-constants": "^0.2.2", 1212 + "@mongosh/shell-api": "1.10.6", 1213 "semver": "^7.5.4" 1214 }, 1215 "engines": { ··· 1217 } 1218 }, 1219 "node_modules/@mongosh/cli-repl": { 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==", 1223 "dependencies": { 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", 1238 "analytics-node": "^5.1.2", 1239 "ansi-escape-sequences": "^5.1.2", 1240 "askcharacter": "^1.0.0", ··· 1264 } 1265 }, 1266 "node_modules/@mongosh/editor": { 1267 + "version": "1.10.6", 1268 + "resolved": "https://registry.npmjs.org/@mongosh/editor/-/editor-1.10.6.tgz", 1269 + "integrity": "sha512-HcHGSuVB9Jh27fi27flMtVCj7K0hiTmA1Wauv3IRwLOm+5QsMahXRt8sDIb86kw0mYtDke/UD2lWbbg351skPQ==", 1270 "dependencies": { 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", 1276 "js-beautify": "^1.14.0" 1277 }, 1278 "engines": { ··· 1280 } 1281 }, 1282 "node_modules/@mongosh/errors": { 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==", 1286 "dependencies": { 1287 "chalk": "^4.1.2", 1288 "handlebars": "^4.7.7", ··· 1293 } 1294 }, 1295 "node_modules/@mongosh/history": { 1296 + "version": "1.10.6", 1297 + "resolved": "https://registry.npmjs.org/@mongosh/history/-/history-1.10.6.tgz", 1298 + "integrity": "sha512-lP6HauOMmmEr1TuHWbmBxFLT4ZHsEX3QxxvNU232LmH1XKNHOyr7G9oafAz/TnA49h+QNaRusKJwLEVMeI7Eaw==", 1299 "dependencies": { 1300 "mongodb-connection-string-url": "^2.6.0", 1301 "mongodb-redact": "^0.2.2" ··· 1305 } 1306 }, 1307 "node_modules/@mongosh/i18n": { 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==", 1311 "dependencies": { 1312 + "@mongosh/errors": "1.10.6", 1313 "mustache": "^4.0.0" 1314 }, 1315 "engines": { ··· 1317 } 1318 }, 1319 "node_modules/@mongosh/js-multiline-to-singleline": { 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==", 1323 "dependencies": { 1324 "@babel/core": "^7.16.12", 1325 "@babel/types": "^7.21.2" ··· 1329 } 1330 }, 1331 "node_modules/@mongosh/logging": { 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==", 1335 "dependencies": { 1336 "@mongodb-js/devtools-connect": "^2.3.1", 1337 + "@mongosh/errors": "1.10.6", 1338 + "@mongosh/history": "1.10.6", 1339 + "@mongosh/types": "1.10.6", 1340 "mongodb-log-writer": "^1.3.0", 1341 "mongodb-redact": "^0.2.2" 1342 }, ··· 1345 } 1346 }, 1347 "node_modules/@mongosh/service-provider-core": { 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==", 1351 "dependencies": { 1352 "@aws-sdk/credential-providers": "^3.347.1", 1353 + "@mongosh/errors": "1.10.6", 1354 "bson": "^5.3.0", 1355 "mongodb": "^5.7.0", 1356 "mongodb-build-info": "^1.6.2" ··· 1363 } 1364 }, 1365 "node_modules/@mongosh/service-provider-server": { 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==", 1369 "dependencies": { 1370 "@mongodb-js/devtools-connect": "^2.3.1", 1371 + "@mongosh/errors": "1.10.6", 1372 + "@mongosh/service-provider-core": "1.10.6", 1373 + "@mongosh/types": "1.10.6", 1374 "@types/sinon-chai": "^3.2.4", 1375 "aws4": "^1.11.0", 1376 "mongodb": "^5.7.0", ··· 1386 } 1387 }, 1388 "node_modules/@mongosh/shell-api": { 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==", 1392 "dependencies": { 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", 1398 "mongodb-redact": "^0.2.2" 1399 }, 1400 "engines": { ··· 1402 } 1403 }, 1404 "node_modules/@mongosh/shell-evaluator": { 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==", 1408 "dependencies": { 1409 + "@mongosh/async-rewriter2": "1.10.6", 1410 + "@mongosh/history": "1.10.6", 1411 + "@mongosh/shell-api": "1.10.6" 1412 }, 1413 "engines": { 1414 "node": ">=14.15.1" 1415 } 1416 }, 1417 "node_modules/@mongosh/snippet-manager": { 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==", 1421 "dependencies": { 1422 + "@mongosh/errors": "1.10.6", 1423 + "@mongosh/shell-api": "1.10.6", 1424 + "@mongosh/types": "1.10.6", 1425 "bson": "^5.3.0", 1426 "cross-spawn": "^7.0.3", 1427 "escape-string-regexp": "^4.0.0", ··· 1434 } 1435 }, 1436 "node_modules/@mongosh/types": { 1437 + "version": "1.10.6", 1438 + "resolved": "https://registry.npmjs.org/@mongosh/types/-/types-1.10.6.tgz", 1439 + "integrity": "sha512-v6gRl1ek8ioWhyo8tTs1EQwGdGKSUBmUXbPSRjqFqVITkJ8kFDu0+qRoms2m4VHvIv9ml//VqHHvBTj8Mjxx9A==", 1440 "dependencies": { 1441 "@mongodb-js/devtools-connect": "^2.3.1" 1442 }, ··· 1477 "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" 1478 }, 1479 "node_modules/@smithy/abort-controller": { 1480 + "version": "2.0.5", 1481 + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.0.5.tgz", 1482 + "integrity": "sha512-byVZ2KWLMPYAZGKjRpniAzLcygJO4ruClZKdJTuB0eCB76ONFTdptBHlviHpAZXknRz7skYWPfcgO9v30A1SyA==", 1483 "dependencies": { 1484 + "@smithy/types": "^2.2.2", 1485 "tslib": "^2.5.0" 1486 }, 1487 "engines": { ··· 1489 } 1490 }, 1491 "node_modules/@smithy/config-resolver": { 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==", 1495 "dependencies": { 1496 + "@smithy/types": "^2.2.2", 1497 "@smithy/util-config-provider": "^2.0.0", 1498 "@smithy/util-middleware": "^2.0.0", 1499 "tslib": "^2.5.0" ··· 1503 } 1504 }, 1505 "node_modules/@smithy/credential-provider-imds": { 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==", 1509 "dependencies": { 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", 1514 "tslib": "^2.5.0" 1515 }, 1516 "engines": { ··· 1518 } 1519 }, 1520 "node_modules/@smithy/eventstream-codec": { 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==", 1524 "dependencies": { 1525 "@aws-crypto/crc32": "3.0.0", 1526 + "@smithy/types": "^2.2.2", 1527 "@smithy/util-hex-encoding": "^2.0.0", 1528 "tslib": "^2.5.0" 1529 } 1530 }, 1531 "node_modules/@smithy/fetch-http-handler": { 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==", 1535 "dependencies": { 1536 + "@smithy/protocol-http": "^2.0.5", 1537 + "@smithy/querystring-builder": "^2.0.5", 1538 + "@smithy/types": "^2.2.2", 1539 "@smithy/util-base64": "^2.0.0", 1540 "tslib": "^2.5.0" 1541 } 1542 }, 1543 "node_modules/@smithy/hash-node": { 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==", 1547 "dependencies": { 1548 + "@smithy/types": "^2.2.2", 1549 "@smithy/util-buffer-from": "^2.0.0", 1550 "@smithy/util-utf8": "^2.0.0", 1551 "tslib": "^2.5.0" ··· 1555 } 1556 }, 1557 "node_modules/@smithy/invalid-dependency": { 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==", 1561 "dependencies": { 1562 + "@smithy/types": "^2.2.2", 1563 "tslib": "^2.5.0" 1564 } 1565 }, ··· 1575 } 1576 }, 1577 "node_modules/@smithy/middleware-content-length": { 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==", 1581 "dependencies": { 1582 + "@smithy/protocol-http": "^2.0.5", 1583 + "@smithy/types": "^2.2.2", 1584 "tslib": "^2.5.0" 1585 }, 1586 "engines": { ··· 1588 } 1589 }, 1590 "node_modules/@smithy/middleware-endpoint": { 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==", 1594 "dependencies": { 1595 + "@smithy/middleware-serde": "^2.0.5", 1596 + "@smithy/types": "^2.2.2", 1597 + "@smithy/url-parser": "^2.0.5", 1598 "@smithy/util-middleware": "^2.0.0", 1599 "tslib": "^2.5.0" 1600 }, ··· 1603 } 1604 }, 1605 "node_modules/@smithy/middleware-retry": { 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==", 1609 "dependencies": { 1610 + "@smithy/protocol-http": "^2.0.5", 1611 "@smithy/service-error-classification": "^2.0.0", 1612 + "@smithy/types": "^2.2.2", 1613 "@smithy/util-middleware": "^2.0.0", 1614 "@smithy/util-retry": "^2.0.0", 1615 "tslib": "^2.5.0", ··· 1620 } 1621 }, 1622 "node_modules/@smithy/middleware-serde": { 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==", 1626 "dependencies": { 1627 + "@smithy/types": "^2.2.2", 1628 "tslib": "^2.5.0" 1629 }, 1630 "engines": { ··· 1643 } 1644 }, 1645 "node_modules/@smithy/node-config-provider": { 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==", 1649 "dependencies": { 1650 + "@smithy/property-provider": "^2.0.5", 1651 + "@smithy/shared-ini-file-loader": "^2.0.5", 1652 + "@smithy/types": "^2.2.2", 1653 "tslib": "^2.5.0" 1654 }, 1655 "engines": { ··· 1657 } 1658 }, 1659 "node_modules/@smithy/node-http-handler": { 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==", 1663 "dependencies": { 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", 1668 "tslib": "^2.5.0" 1669 }, 1670 "engines": { ··· 1672 } 1673 }, 1674 "node_modules/@smithy/property-provider": { 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==", 1678 "dependencies": { 1679 + "@smithy/types": "^2.2.2", 1680 "tslib": "^2.5.0" 1681 }, 1682 "engines": { ··· 1684 } 1685 }, 1686 "node_modules/@smithy/protocol-http": { 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==", 1690 "dependencies": { 1691 + "@smithy/types": "^2.2.2", 1692 "tslib": "^2.5.0" 1693 }, 1694 "engines": { ··· 1696 } 1697 }, 1698 "node_modules/@smithy/querystring-builder": { 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==", 1702 "dependencies": { 1703 + "@smithy/types": "^2.2.2", 1704 "@smithy/util-uri-escape": "^2.0.0", 1705 "tslib": "^2.5.0" 1706 }, ··· 1709 } 1710 }, 1711 "node_modules/@smithy/querystring-parser": { 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==", 1715 "dependencies": { 1716 + "@smithy/types": "^2.2.2", 1717 "tslib": "^2.5.0" 1718 }, 1719 "engines": { ··· 1729 } 1730 }, 1731 "node_modules/@smithy/shared-ini-file-loader": { 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==", 1735 "dependencies": { 1736 + "@smithy/types": "^2.2.2", 1737 "tslib": "^2.5.0" 1738 }, 1739 "engines": { ··· 1741 } 1742 }, 1743 "node_modules/@smithy/signature-v4": { 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==", 1747 "dependencies": { 1748 + "@smithy/eventstream-codec": "^2.0.5", 1749 "@smithy/is-array-buffer": "^2.0.0", 1750 + "@smithy/types": "^2.2.2", 1751 "@smithy/util-hex-encoding": "^2.0.0", 1752 "@smithy/util-middleware": "^2.0.0", 1753 "@smithy/util-uri-escape": "^2.0.0", ··· 1759 } 1760 }, 1761 "node_modules/@smithy/smithy-client": { 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==", 1765 "dependencies": { 1766 "@smithy/middleware-stack": "^2.0.0", 1767 + "@smithy/types": "^2.2.2", 1768 + "@smithy/util-stream": "^2.0.5", 1769 "tslib": "^2.5.0" 1770 }, 1771 "engines": { ··· 1773 } 1774 }, 1775 "node_modules/@smithy/types": { 1776 + "version": "2.2.2", 1777 + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-2.2.2.tgz", 1778 + "integrity": "sha512-4PS0y1VxDnELGHGgBWlDksB2LJK8TG8lcvlWxIsgR+8vROI7Ms8h1P4FQUx+ftAX2QZv5g1CJCdhdRmQKyonyw==", 1779 "dependencies": { 1780 "tslib": "^2.5.0" 1781 }, ··· 1784 } 1785 }, 1786 "node_modules/@smithy/url-parser": { 1787 + "version": "2.0.5", 1788 + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.0.5.tgz", 1789 + "integrity": "sha512-OdMBvZhpckQSkugCXNJQCvqJ71wE7Ftxce92UOQLQ9pwF6hoS5PLL7wEfpnuEXtStzBqJYkzu1C1ZfjuFGOXAA==", 1790 "dependencies": { 1791 + "@smithy/querystring-parser": "^2.0.5", 1792 + "@smithy/types": "^2.2.2", 1793 "tslib": "^2.5.0" 1794 } 1795 }, ··· 1814 } 1815 }, 1816 "node_modules/@smithy/util-body-length-node": { 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==", 1820 "dependencies": { 1821 "tslib": "^2.5.0" 1822 }, ··· 1848 } 1849 }, 1850 "node_modules/@smithy/util-defaults-mode-browser": { 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==", 1854 "dependencies": { 1855 + "@smithy/property-provider": "^2.0.5", 1856 + "@smithy/types": "^2.2.2", 1857 "bowser": "^2.11.0", 1858 "tslib": "^2.5.0" 1859 }, ··· 1862 } 1863 }, 1864 "node_modules/@smithy/util-defaults-mode-node": { 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==", 1868 "dependencies": { 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", 1874 "tslib": "^2.5.0" 1875 }, 1876 "engines": { ··· 1912 } 1913 }, 1914 "node_modules/@smithy/util-stream": { 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==", 1918 "dependencies": { 1919 + "@smithy/fetch-http-handler": "^2.0.5", 1920 + "@smithy/node-http-handler": "^2.0.5", 1921 + "@smithy/types": "^2.2.2", 1922 "@smithy/util-base64": "^2.0.0", 1923 "@smithy/util-buffer-from": "^2.0.0", 1924 "@smithy/util-hex-encoding": "^2.0.0", ··· 1995 "integrity": "sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==" 1996 }, 1997 "node_modules/@types/node": { 1998 + "version": "20.5.6", 1999 + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.6.tgz", 2000 + "integrity": "sha512-Gi5wRGPbbyOTX+4Y2iULQ27oUPrefaB0PxGQJnfyWN3kvEDGM3mIB5M/gQLmitZf7A9FmLeaqxD3L1CXpm3VKQ==" 2001 }, 2002 "node_modules/@types/sinon": { 2003 "version": "10.0.16", ··· 2468 } 2469 }, 2470 "node_modules/caniuse-lite": { 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==", 2474 "funding": [ 2475 { 2476 "type": "opencollective", ··· 2760 "peer": true 2761 }, 2762 "node_modules/electron-to-chromium": { 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==" 2766 }, 2767 "node_modules/emphasize": { 2768 "version": "4.2.0", ··· 3795 "optional": true 3796 }, 3797 "node_modules/mongodb": { 3798 + "version": "5.8.1", 3799 + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.8.1.tgz", 3800 + "integrity": "sha512-wKyh4kZvm6NrCPH8AxyzXm3JBoEf4Xulo0aUWh3hCgwgYJxyQ1KLST86ZZaSWdj6/kxYUA3+YZuyADCE61CMSg==", 3801 "dependencies": { 3802 "bson": "^5.4.0", 3803 "mongodb-connection-string-url": "^2.6.0", ··· 3807 "node": ">=14.20.1" 3808 }, 3809 "optionalDependencies": { 3810 + "@mongodb-js/saslprep": "^1.1.0" 3811 }, 3812 "peerDependencies": { 3813 + "@aws-sdk/credential-providers": "^3.188.0", 3814 + "@mongodb-js/zstd": "^1.0.0", 3815 + "kerberos": "^1.0.0 || ^2.0.0", 3816 "mongodb-client-encryption": ">=2.3.0 <3", 3817 "snappy": "^7.2.2" 3818 }, ··· 3963 "optional": true 3964 }, 3965 "node_modules/node-fetch": { 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==", 3969 "dependencies": { 3970 "whatwg-url": "^5.0.0" 3971 }, ··· 4904 } 4905 }, 4906 "node_modules/tslib": { 4907 + "version": "2.6.2", 4908 + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", 4909 + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" 4910 }, 4911 "node_modules/tunnel-agent": { 4912 "version": "0.6.0", ··· 4934 } 4935 }, 4936 "node_modules/typescript": { 4937 + "version": "5.2.2", 4938 + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", 4939 + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", 4940 "bin": { 4941 "tsc": "bin/tsc", 4942 "tsserver": "bin/tsserver"
+4 -4
pkgs/development/tools/mongosh/source.json
··· 1 { 2 - "version": "1.10.5", 3 - "integrity": "sha512-OAaUQv9dw/2p7Q8qIlUm8Ckv0UGFIPKHD09ApNcGU1bI3E6rGGhIMcpG8rcmdyV59mbtzoV4IeGkHbqX0KhGaw==", 4 - "filename": "mongosh-1.10.5.tgz", 5 - "deps": "sha256-P4JT4j2JiCIpHBODpXHcyLWd5VnOK0wXBkxtcAh2g4w=" 6 }
··· 1 { 2 + "version": "1.10.6", 3 + "integrity": "sha512-rReUz89EF5eERhPZo29nYpKAux1u5iK3ug74wtsr7kE9SOJs5XGWS2gh8LKSMK9uieeDKRYX8+nFIa4bl1Ls2Q==", 4 + "filename": "mongosh-1.10.6.tgz", 5 + "deps": "sha256-j1l6PVPkp5Ju0uBB6dKfQP8fbwttWpPR3VPviu4a/Zg=" 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 10 rustPlatform.buildRustPackage rec { 11 pname = "rust-cbindgen"; 12 - version = "0.24.6"; 13 14 src = fetchFromGitHub { 15 owner = "mozilla"; 16 repo = "cbindgen"; 17 rev = "v${version}"; 18 - hash = "sha256-RHh97hwWmjV6hw+fX+fOtixX/DGedTf9cx+PYPW6/wI="; 19 }; 20 21 - cargoSha256 = "sha256-7G/16arXYwt7Nrs1isWyrPubm8GMi8NsjLjWAD8x6aM="; 22 23 buildInputs = lib.optional stdenv.isDarwin Security; 24
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "rust-cbindgen"; 12 + version = "0.25.0"; 13 14 src = fetchFromGitHub { 15 owner = "mozilla"; 16 repo = "cbindgen"; 17 rev = "v${version}"; 18 + hash = "sha256-gljICr0abKEXxJfLCJN3L2OIwUvw/QoIC6T5C7pieEA="; 19 }; 20 21 + cargoSha256 = "sha256-agBzn2MibM7158/QlLXI2HBBcYIe0p50rYSF1jBDF8U="; 22 23 buildInputs = lib.optional stdenv.isDarwin Security; 24
+1 -1
pkgs/games/heroic/default.nix
··· 93 --inherit-argv0 \ 94 --add-flags --disable-gpu-compositing \ 95 --add-flags $out/share/${appName} \ 96 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 97 98 substituteInPlace "$out/share/${appName}/flatpak/com.heroicgameslauncher.hgl.desktop" \ 99 --replace "Exec=heroic-run" "Exec=heroic"
··· 93 --inherit-argv0 \ 94 --add-flags --disable-gpu-compositing \ 95 --add-flags $out/share/${appName} \ 96 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime}}" 97 98 substituteInPlace "$out/share/${appName}/flatpak/com.heroicgameslauncher.hgl.desktop" \ 99 --replace "Exec=heroic-run" "Exec=heroic"
+3
pkgs/games/heroic/fhsenv.nix
··· 12 # Many Wine and native games need 32-bit libraries. 13 multiArch = true; 14 15 targetPkgs = pkgs: with pkgs; [ 16 heroic-unwrapped 17 gamemode
··· 12 # Many Wine and native games need 32-bit libraries. 13 multiArch = true; 14 15 + # required by Electron 16 + unshareIpc = false; 17 + 18 targetPkgs = pkgs: with pkgs; [ 19 heroic-unwrapped 20 gamemode
+2 -2
pkgs/games/path-of-building/default.nix
··· 2 let 3 data = stdenv.mkDerivation(finalAttrs: { 4 pname = "path-of-building-data"; 5 - version = "2.33.1"; 6 7 src = fetchFromGitHub { 8 owner = "PathOfBuildingCommunity"; 9 repo = "PathOfBuilding"; 10 rev = "v${finalAttrs.version}"; 11 - hash = "sha256-nnASvWApp3BjUPa+i7cvMJnTiD8oXtZTU6OjryFxaBM="; 12 }; 13 14 nativeBuildInputs = [ unzip ];
··· 2 let 3 data = stdenv.mkDerivation(finalAttrs: { 4 pname = "path-of-building-data"; 5 + version = "2.33.3"; 6 7 src = fetchFromGitHub { 8 owner = "PathOfBuildingCommunity"; 9 repo = "PathOfBuilding"; 10 rev = "v${finalAttrs.version}"; 11 + hash = "sha256-mRF8bXDBTfMGB8SAhF4rrwkBZq1XyGA9Wkb1ZpvTCv0="; 12 }; 13 14 nativeBuildInputs = [ unzip ];
+1
pkgs/misc/logging/beats/7.x.nix
··· 24 } // extraArgs); 25 in 26 rec { 27 filebeat7 = beat "filebeat" { 28 meta.description = "Lightweight shipper for logfiles"; 29 buildInputs = [ systemd ];
··· 24 } // extraArgs); 25 in 26 rec { 27 + auditbeat7 = beat "auditbeat" { meta.description = "Lightweight shipper for audit data"; }; 28 filebeat7 = beat "filebeat" { 29 meta.description = "Lightweight shipper for logfiles"; 30 buildInputs = [ systemd ];
+7 -7
pkgs/servers/nextcloud/packages/25.json
··· 3 "sha256": "1kdpma5f3rb9g29j364lqv6bkar5qgwlvcxmhpmzllwlkmjpc9w8", 4 "url": "https://github.com/nextcloud/bookmarks/releases/download/v12.1.0/bookmarks-12.1.0.tar.gz", 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", 7 "homepage": "https://github.com/nextcloud/bookmarks", 8 "licenses": [ 9 "agpl" ··· 140 ] 141 }, 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", 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 "homepage": "https://github.com/nextcloud/news", 148 "licenses": [ ··· 170 ] 171 }, 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", 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 "homepage": "https://www.onlyoffice.com", 178 "licenses": [
··· 3 "sha256": "1kdpma5f3rb9g29j364lqv6bkar5qgwlvcxmhpmzllwlkmjpc9w8", 4 "url": "https://github.com/nextcloud/bookmarks/releases/download/v12.1.0/bookmarks-12.1.0.tar.gz", 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 extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", 7 "homepage": "https://github.com/nextcloud/bookmarks", 8 "licenses": [ 9 "agpl" ··· 140 ] 141 }, 142 "news": { 143 + "sha256": "1j9dhqz5anwsmw3f8hbhvqc2h1fp15zmxzdbpnz1p3vwqf8f5cjs", 144 + "url": "https://github.com/nextcloud/news/releases/download/23.0.0/news.tar.gz", 145 + "version": "23.0.0", 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 "homepage": "https://github.com/nextcloud/news", 148 "licenses": [ ··· 170 ] 171 }, 172 "onlyoffice": { 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 "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 "homepage": "https://www.onlyoffice.com", 178 "licenses": [
+10 -10
pkgs/servers/nextcloud/packages/26.json
··· 1 { 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", 7 "homepage": "https://github.com/nextcloud/bookmarks", 8 "licenses": [ 9 "agpl" ··· 140 ] 141 }, 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", 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 "homepage": "https://github.com/nextcloud/news", 148 "licenses": [ ··· 170 ] 171 }, 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", 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 "homepage": "https://www.onlyoffice.com", 178 "licenses": [
··· 1 { 2 "bookmarks": { 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 "homepage": "https://github.com/nextcloud/bookmarks", 8 "licenses": [ 9 "agpl" ··· 140 ] 141 }, 142 "news": { 143 + "sha256": "1j9dhqz5anwsmw3f8hbhvqc2h1fp15zmxzdbpnz1p3vwqf8f5cjs", 144 + "url": "https://github.com/nextcloud/news/releases/download/23.0.0/news.tar.gz", 145 + "version": "23.0.0", 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 "homepage": "https://github.com/nextcloud/news", 148 "licenses": [ ··· 170 ] 171 }, 172 "onlyoffice": { 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 "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 "homepage": "https://www.onlyoffice.com", 178 "licenses": [
+7 -7
pkgs/servers/nextcloud/packages/27.json
··· 1 { 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", 7 "homepage": "https://github.com/nextcloud/bookmarks", 8 "licenses": [ 9 "agpl" ··· 140 ] 141 }, 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", 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 "homepage": "https://github.com/nextcloud/news", 148 "licenses": [
··· 1 { 2 "bookmarks": { 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 "homepage": "https://github.com/nextcloud/bookmarks", 8 "licenses": [ 9 "agpl" ··· 140 ] 141 }, 142 "news": { 143 + "sha256": "1j9dhqz5anwsmw3f8hbhvqc2h1fp15zmxzdbpnz1p3vwqf8f5cjs", 144 + "url": "https://github.com/nextcloud/news/releases/download/23.0.0/news.tar.gz", 145 + "version": "23.0.0", 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 "homepage": "https://github.com/nextcloud/news", 148 "licenses": [
+9 -3
pkgs/servers/nextcloud/packages/default.nix
··· 9 generatedJson = { 10 inherit apps; 11 }; 12 13 in { 14 # Create a derivation from the official Nextcloud apps. 15 # This takes the data generated from the go tool. 16 - mkNextcloudDerivation = self.callPackage ({ }: { data }: 17 pkgs.fetchNextcloudApp { 18 - inherit (data) url sha256; 19 }) {}; 20 21 - } // lib.mapAttrs (type: pkgs: lib.makeExtensible (_: lib.mapAttrs (pname: data: self.mkNextcloudDerivation { inherit data; }) pkgs)) generatedJson; 22 23 in (lib.makeExtensible (_: (lib.makeScope newScope packages))).extend (selfNC: superNC: {})
··· 9 generatedJson = { 10 inherit apps; 11 }; 12 + appBaseDefs = builtins.fromJSON (builtins.readFile ./nextcloud-apps.json); 13 14 in { 15 # Create a derivation from the official Nextcloud apps. 16 # This takes the data generated from the go tool. 17 + mkNextcloudDerivation = self.callPackage ({ }: { pname, data }: 18 pkgs.fetchNextcloudApp { 19 + appName = pname; 20 + appVersion = data.version; 21 + license = appBaseDefs.${pname}; 22 + inherit (data) url sha256 description homepage; 23 }) {}; 24 25 + } // lib.mapAttrs (type: pkgs: 26 + lib.makeExtensible (_: lib.mapAttrs (pname: data: self.mkNextcloudDerivation { inherit pname; inherit data; }) pkgs)) 27 + generatedJson; 28 29 in (lib.makeExtensible (_: (lib.makeScope newScope packages))).extend (selfNC: superNC: {})
+1 -1
pkgs/servers/nextcloud/packages/generate.sh
··· 8 9 export NEXTCLOUD_VERSIONS=$(nix-instantiate --eval -E 'import ./nc-versions.nix {}' -A e) 10 11 - APPS=`cat nextcloud-apps.json | jq -r '.[]' | sed -z 's/\n/,/g;s/,$/\n/'` 12 13 nc4nix -apps $APPS 14 rm *.log
··· 8 9 export NEXTCLOUD_VERSIONS=$(nix-instantiate --eval -E 'import ./nc-versions.nix {}' -A e) 10 11 + APPS=`cat nextcloud-apps.json | jq -r 'keys|.[]' | sed -z 's/\n/,/g;s/,$/\n/'` 12 13 nc4nix -apps $APPS 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 3 buildGoModule rec { 4 pname = "tidb"; 5 - version = "7.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "pingcap"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-7iz82H3H22GCLvy8VD+t1BkEEoNQ0+6ZLBOUwWTlNfI="; 12 }; 13 14 - vendorHash = "sha256-9vgxdX8CPUbyJZNSkwTZK02ORIXACjad/yPef8zB7FU="; 15 16 ldflags = [ 17 "-s"
··· 2 3 buildGoModule rec { 4 pname = "tidb"; 5 + version = "7.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "pingcap"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-zpAduymFC17iL9eEssFoHxK+J4EP1QyamchfLetFN/k="; 12 }; 13 14 + vendorHash = "sha256-GbAZK2TQKc3bziZm202Q2QLLK0TDJ/AplSGKBSLSoqQ="; 15 16 ldflags = [ 17 "-s"
+2 -2
pkgs/tools/admin/qovery-cli/default.nix
··· 8 9 buildGoModule rec { 10 pname = "qovery-cli"; 11 - version = "0.65.1"; 12 13 src = fetchFromGitHub { 14 owner = "Qovery"; 15 repo = pname; 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-0Wg6E89+k7YKx+DpIcO76NJ+VzGPQc07PoR0FvmYeKg="; 18 }; 19 20 vendorHash = "sha256-Fcm/f54zGgA742yhIVJxjv7Y2T8DblC71+hw5HTmOf0=";
··· 8 9 buildGoModule rec { 10 pname = "qovery-cli"; 11 + version = "0.66.1"; 12 13 src = fetchFromGitHub { 14 owner = "Qovery"; 15 repo = pname; 16 rev = "refs/tags/v${version}"; 17 + hash = "sha256-vWfwoOxs8scIJchQ+dDfyHZvU88YKaMH/wCWwVTwtyU="; 18 }; 19 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 3 rustPlatform.buildRustPackage rec { 4 pname = "vrc-get"; 5 - version = "1.1.2"; 6 7 src = fetchFromGitHub { 8 owner = "anatawa12"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "03p3y6q6md2m6fj9v01419cy1wa13dhasd2izs7j9gl9jh69w9xm"; 12 }; 13 14 nativeBuildInputs = [ pkg-config ]; ··· 18 # Make openssl-sys use pkg-config. 19 OPENSSL_NO_VENDOR = 1; 20 21 - cargoSha256 = "03lv72gw39q7hibg2rzibvc1y0az30691jdf2fwn1m5ng0r7lqvp"; 22 23 meta = with lib; { 24 description = "Command line client of VRChat Package Manager, the main feature of VRChat Creator Companion (VCC)";
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "vrc-get"; 5 + version = "1.1.3"; 6 7 src = fetchFromGitHub { 8 owner = "anatawa12"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-CJBwW2QsLNLyNubawBPD+Cy74JrrdSUHe7JBSdbMnjY="; 12 + fetchSubmodules = true; 13 }; 14 15 nativeBuildInputs = [ pkg-config ]; ··· 19 # Make openssl-sys use pkg-config. 20 OPENSSL_NO_VENDOR = 1; 21 22 + cargoHash = "sha256-PnNo+MmBo/Ke7pL6KwRKXz3gycJmbYefTRMWOvlCQaQ="; 23 24 meta = with lib; { 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 version = 3 4 5 [[package]] 6 name = "android_system_properties" 7 version = "0.1.5" 8 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 38 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 39 40 [[package]] 41 name = "base64" 42 version = "0.13.1" 43 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 45 46 [[package]] 47 name = "base64" 48 - version = "0.21.0" 49 source = "registry+https://github.com/rust-lang/crates.io-index" 50 - checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 51 52 [[package]] 53 name = "bitflags" ··· 56 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 57 58 [[package]] 59 name = "block-buffer" 60 - version = "0.10.3" 61 source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 63 dependencies = [ 64 "generic-array", 65 ] 66 67 [[package]] 68 name = "bumpalo" 69 - version = "3.12.0" 70 source = "registry+https://github.com/rust-lang/crates.io-index" 71 - checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 72 73 [[package]] 74 name = "bytes" ··· 90 "quote", 91 "serde", 92 "serde_json", 93 - "syn", 94 "tempfile", 95 "toml", 96 ] 97 98 [[package]] 99 name = "cc" 100 - version = "1.0.79" 101 source = "registry+https://github.com/rust-lang/crates.io-index" 102 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 103 104 [[package]] 105 name = "cfg-if" ··· 109 110 [[package]] 111 name = "chrono" 112 - version = "0.4.23" 113 source = "registry+https://github.com/rust-lang/crates.io-index" 114 - checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" 115 dependencies = [ 116 "iana-time-zone", 117 - "num-integer", 118 "num-traits", 119 "serde", 120 "winapi", ··· 128 dependencies = [ 129 "ansi_term", 130 "atty", 131 - "bitflags", 132 "strsim 0.8.0", 133 "textwrap", 134 "unicode-width", ··· 136 ] 137 138 [[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 name = "core-foundation" 150 version = "0.9.3" 151 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 157 158 [[package]] 159 name = "core-foundation-sys" 160 - version = "0.8.3" 161 source = "registry+https://github.com/rust-lang/crates.io-index" 162 - checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 163 164 [[package]] 165 name = "cpufeatures" 166 - version = "0.2.5" 167 source = "registry+https://github.com/rust-lang/crates.io-index" 168 - checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 169 dependencies = [ 170 "libc", 171 ] ··· 181 ] 182 183 [[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 name = "darling" 229 version = "0.13.4" 230 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 245 "proc-macro2", 246 "quote", 247 "strsim 0.10.0", 248 - "syn", 249 ] 250 251 [[package]] ··· 256 dependencies = [ 257 "darling_core", 258 "quote", 259 - "syn", 260 ] 261 262 [[package]] 263 name = "digest" 264 - version = "0.10.6" 265 source = "registry+https://github.com/rust-lang/crates.io-index" 266 - checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 267 dependencies = [ 268 "block-buffer", 269 "crypto-common", ··· 272 273 [[package]] 274 name = "either" 275 - version = "1.8.1" 276 source = "registry+https://github.com/rust-lang/crates.io-index" 277 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 278 279 [[package]] 280 name = "encoding_rs" ··· 287 288 [[package]] 289 name = "errno" 290 - version = "0.2.8" 291 source = "registry+https://github.com/rust-lang/crates.io-index" 292 - checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 293 dependencies = [ 294 "errno-dragonfly", 295 "libc", 296 - "winapi", 297 ] 298 299 [[package]] ··· 308 309 [[package]] 310 name = "fastrand" 311 - version = "1.9.0" 312 source = "registry+https://github.com/rust-lang/crates.io-index" 313 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 314 - dependencies = [ 315 - "instant", 316 - ] 317 318 [[package]] 319 name = "fnv" ··· 338 339 [[package]] 340 name = "form_urlencoded" 341 - version = "1.1.0" 342 source = "registry+https://github.com/rust-lang/crates.io-index" 343 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 344 dependencies = [ 345 "percent-encoding", 346 ] 347 348 [[package]] 349 name = "futures-channel" 350 - version = "0.3.26" 351 source = "registry+https://github.com/rust-lang/crates.io-index" 352 - checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" 353 dependencies = [ 354 "futures-core", 355 ] 356 357 [[package]] 358 name = "futures-core" 359 - version = "0.3.26" 360 source = "registry+https://github.com/rust-lang/crates.io-index" 361 - checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" 362 363 [[package]] 364 name = "futures-io" 365 - version = "0.3.26" 366 source = "registry+https://github.com/rust-lang/crates.io-index" 367 - checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" 368 369 [[package]] 370 name = "futures-sink" 371 - version = "0.3.26" 372 source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" 374 375 [[package]] 376 name = "futures-task" 377 - version = "0.3.26" 378 source = "registry+https://github.com/rust-lang/crates.io-index" 379 - checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" 380 381 [[package]] 382 name = "futures-util" 383 - version = "0.3.26" 384 source = "registry+https://github.com/rust-lang/crates.io-index" 385 - checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" 386 dependencies = [ 387 "futures-core", 388 "futures-io", ··· 395 396 [[package]] 397 name = "generic-array" 398 - version = "0.14.6" 399 source = "registry+https://github.com/rust-lang/crates.io-index" 400 - checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 401 dependencies = [ 402 "typenum", 403 "version_check", ··· 405 406 [[package]] 407 name = "getrandom" 408 - version = "0.2.8" 409 source = "registry+https://github.com/rust-lang/crates.io-index" 410 - checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 411 dependencies = [ 412 "cfg-if", 413 "js-sys", ··· 417 ] 418 419 [[package]] 420 name = "h2" 421 - version = "0.3.16" 422 source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" 424 dependencies = [ 425 "bytes", 426 "fnv", ··· 461 462 [[package]] 463 name = "hermit-abi" 464 - version = "0.2.6" 465 source = "registry+https://github.com/rust-lang/crates.io-index" 466 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 467 - dependencies = [ 468 - "libc", 469 - ] 470 471 [[package]] 472 name = "hmac" ··· 507 508 [[package]] 509 name = "httpdate" 510 - version = "1.0.2" 511 source = "registry+https://github.com/rust-lang/crates.io-index" 512 - checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 513 514 [[package]] 515 name = "hyper" 516 - version = "0.14.24" 517 source = "registry+https://github.com/rust-lang/crates.io-index" 518 - checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" 519 dependencies = [ 520 "bytes", 521 "futures-channel", ··· 528 "httpdate", 529 "itoa", 530 "pin-project-lite", 531 - "socket2", 532 "tokio", 533 "tower-service", 534 "tracing", ··· 550 551 [[package]] 552 name = "iana-time-zone" 553 - version = "0.1.53" 554 source = "registry+https://github.com/rust-lang/crates.io-index" 555 - checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 556 dependencies = [ 557 "android_system_properties", 558 "core-foundation-sys", 559 "iana-time-zone-haiku", 560 "js-sys", 561 "wasm-bindgen", 562 - "winapi", 563 ] 564 565 [[package]] 566 name = "iana-time-zone-haiku" 567 - version = "0.1.1" 568 source = "registry+https://github.com/rust-lang/crates.io-index" 569 - checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 570 dependencies = [ 571 - "cxx", 572 - "cxx-build", 573 ] 574 575 [[package]] ··· 580 581 [[package]] 582 name = "idna" 583 - version = "0.3.0" 584 source = "registry+https://github.com/rust-lang/crates.io-index" 585 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 586 dependencies = [ 587 "unicode-bidi", 588 "unicode-normalization", ··· 590 591 [[package]] 592 name = "indexmap" 593 - version = "1.9.2" 594 source = "registry+https://github.com/rust-lang/crates.io-index" 595 - checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 596 dependencies = [ 597 "autocfg", 598 "hashbrown", 599 ] 600 601 [[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 name = "ipnet" 622 - version = "2.7.1" 623 source = "registry+https://github.com/rust-lang/crates.io-index" 624 - checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" 625 626 [[package]] 627 name = "itertools" ··· 634 635 [[package]] 636 name = "itoa" 637 - version = "1.0.5" 638 source = "registry+https://github.com/rust-lang/crates.io-index" 639 - checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 640 641 [[package]] 642 name = "js-sys" 643 - version = "0.3.61" 644 source = "registry+https://github.com/rust-lang/crates.io-index" 645 - checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 646 dependencies = [ 647 "wasm-bindgen", 648 ] ··· 669 670 [[package]] 671 name = "libc" 672 - version = "0.2.139" 673 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 - ] 684 685 [[package]] 686 name = "linux-raw-sys" 687 - version = "0.1.4" 688 source = "registry+https://github.com/rust-lang/crates.io-index" 689 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 690 691 [[package]] 692 name = "log" 693 - version = "0.4.17" 694 source = "registry+https://github.com/rust-lang/crates.io-index" 695 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 696 - dependencies = [ 697 - "cfg-if", 698 - ] 699 700 [[package]] 701 name = "memchr" ··· 705 706 [[package]] 707 name = "mime" 708 - version = "0.3.16" 709 source = "registry+https://github.com/rust-lang/crates.io-index" 710 - checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 711 712 [[package]] 713 name = "mio" 714 - version = "0.8.6" 715 source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 717 dependencies = [ 718 "libc", 719 - "log", 720 "wasi", 721 - "windows-sys 0.45.0", 722 ] 723 724 [[package]] ··· 762 763 [[package]] 764 name = "num-traits" 765 - version = "0.2.15" 766 source = "registry+https://github.com/rust-lang/crates.io-index" 767 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 768 dependencies = [ 769 "autocfg", 770 ] 771 772 [[package]] 773 name = "num_cpus" 774 - version = "1.15.0" 775 source = "registry+https://github.com/rust-lang/crates.io-index" 776 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 777 dependencies = [ 778 - "hermit-abi 0.2.6", 779 "libc", 780 ] 781 782 [[package]] 783 name = "oauth2" 784 - version = "4.3.0" 785 source = "registry+https://github.com/rust-lang/crates.io-index" 786 - checksum = "eeaf26a72311c087f8c5ba617c96fac67a5c04f430e716ac8d8ab2de62e23368" 787 dependencies = [ 788 "base64 0.13.1", 789 "chrono", ··· 800 ] 801 802 [[package]] 803 name = "once_cell" 804 - version = "1.17.1" 805 source = "registry+https://github.com/rust-lang/crates.io-index" 806 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 807 808 [[package]] 809 name = "openidconnect" 810 - version = "2.5.0" 811 source = "registry+https://github.com/rust-lang/crates.io-index" 812 - checksum = "32a0f47b0f1499d08c4a8480c963d49c5ec77f4249c2b6869780979415f45809" 813 dependencies = [ 814 "base64 0.13.1", 815 "chrono", ··· 834 835 [[package]] 836 name = "openssl" 837 - version = "0.10.45" 838 source = "registry+https://github.com/rust-lang/crates.io-index" 839 - checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1" 840 dependencies = [ 841 - "bitflags", 842 "cfg-if", 843 "foreign-types", 844 "libc", ··· 849 850 [[package]] 851 name = "openssl-macros" 852 - version = "0.1.0" 853 source = "registry+https://github.com/rust-lang/crates.io-index" 854 - checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 855 dependencies = [ 856 "proc-macro2", 857 "quote", 858 - "syn", 859 ] 860 861 [[package]] ··· 866 867 [[package]] 868 name = "openssl-sys" 869 - version = "0.9.80" 870 source = "registry+https://github.com/rust-lang/crates.io-index" 871 - checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7" 872 dependencies = [ 873 - "autocfg", 874 "cc", 875 "libc", 876 "pkg-config", ··· 888 889 [[package]] 890 name = "percent-encoding" 891 - version = "2.2.0" 892 source = "registry+https://github.com/rust-lang/crates.io-index" 893 - checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 894 895 [[package]] 896 name = "pin-project-lite" 897 - version = "0.2.9" 898 source = "registry+https://github.com/rust-lang/crates.io-index" 899 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 900 901 [[package]] 902 name = "pin-utils" ··· 906 907 [[package]] 908 name = "pkg-config" 909 - version = "0.3.26" 910 source = "registry+https://github.com/rust-lang/crates.io-index" 911 - checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 912 913 [[package]] 914 name = "ppv-lite86" ··· 918 919 [[package]] 920 name = "proc-macro2" 921 - version = "1.0.51" 922 source = "registry+https://github.com/rust-lang/crates.io-index" 923 - checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" 924 dependencies = [ 925 "unicode-ident", 926 ] 927 928 [[package]] 929 name = "quote" 930 - version = "1.0.23" 931 source = "registry+https://github.com/rust-lang/crates.io-index" 932 - checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 933 dependencies = [ 934 "proc-macro2", 935 ] ··· 966 967 [[package]] 968 name = "redox_syscall" 969 - version = "0.2.16" 970 source = "registry+https://github.com/rust-lang/crates.io-index" 971 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 972 dependencies = [ 973 - "bitflags", 974 ] 975 976 [[package]] 977 name = "reqwest" 978 - version = "0.11.14" 979 source = "registry+https://github.com/rust-lang/crates.io-index" 980 - checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" 981 dependencies = [ 982 - "base64 0.21.0", 983 "bytes", 984 "encoding_rs", 985 "futures-core", ··· 1026 ] 1027 1028 [[package]] 1029 name = "rustix" 1030 - version = "0.36.8" 1031 source = "registry+https://github.com/rust-lang/crates.io-index" 1032 - checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644" 1033 dependencies = [ 1034 - "bitflags", 1035 "errno", 1036 - "io-lifetimes", 1037 "libc", 1038 "linux-raw-sys", 1039 - "windows-sys 0.45.0", 1040 ] 1041 1042 [[package]] 1043 name = "ryu" 1044 - version = "1.0.12" 1045 source = "registry+https://github.com/rust-lang/crates.io-index" 1046 - checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 1047 1048 [[package]] 1049 name = "schannel" 1050 - version = "0.1.21" 1051 source = "registry+https://github.com/rust-lang/crates.io-index" 1052 - checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 1053 dependencies = [ 1054 - "windows-sys 0.42.0", 1055 ] 1056 1057 [[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 name = "security-framework" 1065 - version = "2.8.2" 1066 source = "registry+https://github.com/rust-lang/crates.io-index" 1067 - checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 1068 dependencies = [ 1069 - "bitflags", 1070 "core-foundation", 1071 "core-foundation-sys", 1072 "libc", ··· 1075 1076 [[package]] 1077 name = "security-framework-sys" 1078 - version = "2.8.0" 1079 source = "registry+https://github.com/rust-lang/crates.io-index" 1080 - checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 1081 dependencies = [ 1082 "core-foundation-sys", 1083 "libc", ··· 1085 1086 [[package]] 1087 name = "serde" 1088 - version = "1.0.152" 1089 source = "registry+https://github.com/rust-lang/crates.io-index" 1090 - checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 1091 dependencies = [ 1092 "serde_derive", 1093 ] ··· 1104 1105 [[package]] 1106 name = "serde_derive" 1107 - version = "1.0.152" 1108 source = "registry+https://github.com/rust-lang/crates.io-index" 1109 - checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 1110 dependencies = [ 1111 "proc-macro2", 1112 "quote", 1113 - "syn", 1114 ] 1115 1116 [[package]] 1117 name = "serde_json" 1118 - version = "1.0.93" 1119 source = "registry+https://github.com/rust-lang/crates.io-index" 1120 - checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" 1121 dependencies = [ 1122 "itoa", 1123 "ryu", ··· 1126 1127 [[package]] 1128 name = "serde_path_to_error" 1129 - version = "0.1.9" 1130 source = "registry+https://github.com/rust-lang/crates.io-index" 1131 - checksum = "26b04f22b563c91331a10074bda3dd5492e3cc39d56bd557e91c0af42b6c7341" 1132 dependencies = [ 1133 "serde", 1134 ] 1135 ··· 1173 "darling", 1174 "proc-macro2", 1175 "quote", 1176 - "syn", 1177 ] 1178 1179 [[package]] 1180 name = "sha2" 1181 - version = "0.10.6" 1182 source = "registry+https://github.com/rust-lang/crates.io-index" 1183 - checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 1184 dependencies = [ 1185 "cfg-if", 1186 "cpufeatures", ··· 1198 1199 [[package]] 1200 name = "socket2" 1201 - version = "0.4.7" 1202 source = "registry+https://github.com/rust-lang/crates.io-index" 1203 - checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 1204 dependencies = [ 1205 "libc", 1206 "winapi", 1207 ] 1208 1209 [[package]] 1210 name = "spin" 1211 version = "0.5.2" 1212 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1226 1227 [[package]] 1228 name = "subtle" 1229 - version = "2.4.1" 1230 source = "registry+https://github.com/rust-lang/crates.io-index" 1231 - checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 1232 1233 [[package]] 1234 name = "syn" ··· 1242 ] 1243 1244 [[package]] 1245 - name = "tempfile" 1246 - version = "3.4.0" 1247 source = "registry+https://github.com/rust-lang/crates.io-index" 1248 - checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" 1249 dependencies = [ 1250 - "cfg-if", 1251 - "fastrand", 1252 - "redox_syscall", 1253 - "rustix", 1254 - "windows-sys 0.42.0", 1255 ] 1256 1257 [[package]] 1258 - name = "termcolor" 1259 - version = "1.2.0" 1260 source = "registry+https://github.com/rust-lang/crates.io-index" 1261 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 1262 dependencies = [ 1263 - "winapi-util", 1264 ] 1265 1266 [[package]] ··· 1274 1275 [[package]] 1276 name = "thiserror" 1277 - version = "1.0.38" 1278 source = "registry+https://github.com/rust-lang/crates.io-index" 1279 - checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 1280 dependencies = [ 1281 "thiserror-impl", 1282 ] 1283 1284 [[package]] 1285 name = "thiserror-impl" 1286 - version = "1.0.38" 1287 source = "registry+https://github.com/rust-lang/crates.io-index" 1288 - checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 1289 dependencies = [ 1290 "proc-macro2", 1291 "quote", 1292 - "syn", 1293 ] 1294 1295 [[package]] 1296 name = "time" 1297 - version = "0.3.20" 1298 source = "registry+https://github.com/rust-lang/crates.io-index" 1299 - checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 1300 dependencies = [ 1301 "itoa", 1302 "serde", 1303 "time-core", ··· 1306 1307 [[package]] 1308 name = "time-core" 1309 - version = "0.1.0" 1310 source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 1312 1313 [[package]] 1314 name = "time-macros" 1315 - version = "0.2.8" 1316 source = "registry+https://github.com/rust-lang/crates.io-index" 1317 - checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" 1318 dependencies = [ 1319 "time-core", 1320 ] ··· 1336 1337 [[package]] 1338 name = "tokio" 1339 - version = "1.26.0" 1340 source = "registry+https://github.com/rust-lang/crates.io-index" 1341 - checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" 1342 dependencies = [ 1343 - "autocfg", 1344 "bytes", 1345 "libc", 1346 - "memchr", 1347 "mio", 1348 "num_cpus", 1349 "pin-project-lite", 1350 - "socket2", 1351 - "windows-sys 0.45.0", 1352 ] 1353 1354 [[package]] ··· 1363 1364 [[package]] 1365 name = "tokio-util" 1366 - version = "0.7.7" 1367 source = "registry+https://github.com/rust-lang/crates.io-index" 1368 - checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" 1369 dependencies = [ 1370 "bytes", 1371 "futures-core", ··· 1403 1404 [[package]] 1405 name = "tracing-core" 1406 - version = "0.1.30" 1407 source = "registry+https://github.com/rust-lang/crates.io-index" 1408 - checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 1409 dependencies = [ 1410 "once_cell", 1411 ] ··· 1424 1425 [[package]] 1426 name = "unicode-bidi" 1427 - version = "0.3.10" 1428 source = "registry+https://github.com/rust-lang/crates.io-index" 1429 - checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" 1430 1431 [[package]] 1432 name = "unicode-ident" 1433 - version = "1.0.6" 1434 source = "registry+https://github.com/rust-lang/crates.io-index" 1435 - checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 1436 1437 [[package]] 1438 name = "unicode-normalization" ··· 1463 1464 [[package]] 1465 name = "url" 1466 - version = "2.3.1" 1467 source = "registry+https://github.com/rust-lang/crates.io-index" 1468 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 1469 dependencies = [ 1470 "form_urlencoded", 1471 "idna", ··· 1493 1494 [[package]] 1495 name = "want" 1496 - version = "0.3.0" 1497 source = "registry+https://github.com/rust-lang/crates.io-index" 1498 - checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 1499 dependencies = [ 1500 - "log", 1501 "try-lock", 1502 ] 1503 ··· 1509 1510 [[package]] 1511 name = "wasm-bindgen" 1512 - version = "0.2.84" 1513 source = "registry+https://github.com/rust-lang/crates.io-index" 1514 - checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 1515 dependencies = [ 1516 "cfg-if", 1517 "wasm-bindgen-macro", ··· 1519 1520 [[package]] 1521 name = "wasm-bindgen-backend" 1522 - version = "0.2.84" 1523 source = "registry+https://github.com/rust-lang/crates.io-index" 1524 - checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 1525 dependencies = [ 1526 "bumpalo", 1527 "log", 1528 "once_cell", 1529 "proc-macro2", 1530 "quote", 1531 - "syn", 1532 "wasm-bindgen-shared", 1533 ] 1534 1535 [[package]] 1536 name = "wasm-bindgen-futures" 1537 - version = "0.4.34" 1538 source = "registry+https://github.com/rust-lang/crates.io-index" 1539 - checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 1540 dependencies = [ 1541 "cfg-if", 1542 "js-sys", ··· 1546 1547 [[package]] 1548 name = "wasm-bindgen-macro" 1549 - version = "0.2.84" 1550 source = "registry+https://github.com/rust-lang/crates.io-index" 1551 - checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 1552 dependencies = [ 1553 "quote", 1554 "wasm-bindgen-macro-support", ··· 1556 1557 [[package]] 1558 name = "wasm-bindgen-macro-support" 1559 - version = "0.2.84" 1560 source = "registry+https://github.com/rust-lang/crates.io-index" 1561 - checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 1562 dependencies = [ 1563 "proc-macro2", 1564 "quote", 1565 - "syn", 1566 "wasm-bindgen-backend", 1567 "wasm-bindgen-shared", 1568 ] 1569 1570 [[package]] 1571 name = "wasm-bindgen-shared" 1572 - version = "0.2.84" 1573 source = "registry+https://github.com/rust-lang/crates.io-index" 1574 - checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 1575 1576 [[package]] 1577 name = "web-sys" 1578 - version = "0.3.61" 1579 source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 1581 dependencies = [ 1582 "js-sys", 1583 "wasm-bindgen", ··· 1600 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1601 1602 [[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 name = "winapi-x86_64-pc-windows-gnu" 1613 version = "0.4.0" 1614 source = "registry+https://github.com/rust-lang/crates.io-index" 1615 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1616 1617 [[package]] 1618 - name = "windows-sys" 1619 - version = "0.42.0" 1620 source = "registry+https://github.com/rust-lang/crates.io-index" 1621 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 1622 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", 1630 ] 1631 1632 [[package]] 1633 name = "windows-sys" 1634 - version = "0.45.0" 1635 source = "registry+https://github.com/rust-lang/crates.io-index" 1636 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1637 dependencies = [ 1638 "windows-targets", 1639 ] 1640 1641 [[package]] 1642 name = "windows-targets" 1643 - version = "0.42.1" 1644 source = "registry+https://github.com/rust-lang/crates.io-index" 1645 - checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 1646 dependencies = [ 1647 "windows_aarch64_gnullvm", 1648 "windows_aarch64_msvc", ··· 1655 1656 [[package]] 1657 name = "windows_aarch64_gnullvm" 1658 - version = "0.42.1" 1659 source = "registry+https://github.com/rust-lang/crates.io-index" 1660 - checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 1661 1662 [[package]] 1663 name = "windows_aarch64_msvc" 1664 - version = "0.42.1" 1665 source = "registry+https://github.com/rust-lang/crates.io-index" 1666 - checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 1667 1668 [[package]] 1669 name = "windows_i686_gnu" 1670 - version = "0.42.1" 1671 source = "registry+https://github.com/rust-lang/crates.io-index" 1672 - checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 1673 1674 [[package]] 1675 name = "windows_i686_msvc" 1676 - version = "0.42.1" 1677 source = "registry+https://github.com/rust-lang/crates.io-index" 1678 - checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 1679 1680 [[package]] 1681 name = "windows_x86_64_gnu" 1682 - version = "0.42.1" 1683 source = "registry+https://github.com/rust-lang/crates.io-index" 1684 - checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 1685 1686 [[package]] 1687 name = "windows_x86_64_gnullvm" 1688 - version = "0.42.1" 1689 source = "registry+https://github.com/rust-lang/crates.io-index" 1690 - checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 1691 1692 [[package]] 1693 name = "windows_x86_64_msvc" 1694 - version = "0.42.1" 1695 source = "registry+https://github.com/rust-lang/crates.io-index" 1696 - checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 1697 1698 [[package]] 1699 name = "winreg" ··· 1708 name = "zeroidc" 1709 version = "0.1.0" 1710 dependencies = [ 1711 - "base64 0.21.0", 1712 "bytes", 1713 "cbindgen", 1714 "jwt",
··· 3 version = 3 4 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]] 27 name = "android_system_properties" 28 version = "0.1.5" 29 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 59 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 60 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]] 77 name = "base64" 78 version = "0.13.1" 79 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 81 82 [[package]] 83 name = "base64" 84 + version = "0.21.2" 85 source = "registry+https://github.com/rust-lang/crates.io-index" 86 + checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 87 88 [[package]] 89 name = "bitflags" ··· 92 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 93 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]] 101 name = "block-buffer" 102 + version = "0.10.4" 103 source = "registry+https://github.com/rust-lang/crates.io-index" 104 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 105 dependencies = [ 106 "generic-array", 107 ] 108 109 [[package]] 110 name = "bumpalo" 111 + version = "3.13.0" 112 source = "registry+https://github.com/rust-lang/crates.io-index" 113 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 114 115 [[package]] 116 name = "bytes" ··· 132 "quote", 133 "serde", 134 "serde_json", 135 + "syn 1.0.109", 136 "tempfile", 137 "toml", 138 ] 139 140 [[package]] 141 name = "cc" 142 + version = "1.0.82" 143 source = "registry+https://github.com/rust-lang/crates.io-index" 144 + checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" 145 + dependencies = [ 146 + "libc", 147 + ] 148 149 [[package]] 150 name = "cfg-if" ··· 154 155 [[package]] 156 name = "chrono" 157 + version = "0.4.26" 158 source = "registry+https://github.com/rust-lang/crates.io-index" 159 + checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 160 dependencies = [ 161 + "android-tzdata", 162 "iana-time-zone", 163 "num-traits", 164 "serde", 165 "winapi", ··· 173 dependencies = [ 174 "ansi_term", 175 "atty", 176 + "bitflags 1.3.2", 177 "strsim 0.8.0", 178 "textwrap", 179 "unicode-width", ··· 181 ] 182 183 [[package]] 184 name = "core-foundation" 185 version = "0.9.3" 186 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 192 193 [[package]] 194 name = "core-foundation-sys" 195 + version = "0.8.4" 196 source = "registry+https://github.com/rust-lang/crates.io-index" 197 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 198 199 [[package]] 200 name = "cpufeatures" 201 + version = "0.2.9" 202 source = "registry+https://github.com/rust-lang/crates.io-index" 203 + checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" 204 dependencies = [ 205 "libc", 206 ] ··· 216 ] 217 218 [[package]] 219 name = "darling" 220 version = "0.13.4" 221 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 236 "proc-macro2", 237 "quote", 238 "strsim 0.10.0", 239 + "syn 1.0.109", 240 ] 241 242 [[package]] ··· 247 dependencies = [ 248 "darling_core", 249 "quote", 250 + "syn 1.0.109", 251 ] 252 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]] 260 name = "digest" 261 + version = "0.10.7" 262 source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 264 dependencies = [ 265 "block-buffer", 266 "crypto-common", ··· 269 270 [[package]] 271 name = "either" 272 + version = "1.9.0" 273 source = "registry+https://github.com/rust-lang/crates.io-index" 274 + checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" 275 276 [[package]] 277 name = "encoding_rs" ··· 284 285 [[package]] 286 name = "errno" 287 + version = "0.3.2" 288 source = "registry+https://github.com/rust-lang/crates.io-index" 289 + checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" 290 dependencies = [ 291 "errno-dragonfly", 292 "libc", 293 + "windows-sys", 294 ] 295 296 [[package]] ··· 305 306 [[package]] 307 name = "fastrand" 308 + version = "2.0.0" 309 source = "registry+https://github.com/rust-lang/crates.io-index" 310 + checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" 311 312 [[package]] 313 name = "fnv" ··· 332 333 [[package]] 334 name = "form_urlencoded" 335 + version = "1.2.0" 336 source = "registry+https://github.com/rust-lang/crates.io-index" 337 + checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 338 dependencies = [ 339 "percent-encoding", 340 ] 341 342 [[package]] 343 name = "futures-channel" 344 + version = "0.3.28" 345 source = "registry+https://github.com/rust-lang/crates.io-index" 346 + checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 347 dependencies = [ 348 "futures-core", 349 ] 350 351 [[package]] 352 name = "futures-core" 353 + version = "0.3.28" 354 source = "registry+https://github.com/rust-lang/crates.io-index" 355 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 356 357 [[package]] 358 name = "futures-io" 359 + version = "0.3.28" 360 source = "registry+https://github.com/rust-lang/crates.io-index" 361 + checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 362 363 [[package]] 364 name = "futures-sink" 365 + version = "0.3.28" 366 source = "registry+https://github.com/rust-lang/crates.io-index" 367 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 368 369 [[package]] 370 name = "futures-task" 371 + version = "0.3.28" 372 source = "registry+https://github.com/rust-lang/crates.io-index" 373 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 374 375 [[package]] 376 name = "futures-util" 377 + version = "0.3.28" 378 source = "registry+https://github.com/rust-lang/crates.io-index" 379 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 380 dependencies = [ 381 "futures-core", 382 "futures-io", ··· 389 390 [[package]] 391 name = "generic-array" 392 + version = "0.14.7" 393 source = "registry+https://github.com/rust-lang/crates.io-index" 394 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 395 dependencies = [ 396 "typenum", 397 "version_check", ··· 399 400 [[package]] 401 name = "getrandom" 402 + version = "0.2.10" 403 source = "registry+https://github.com/rust-lang/crates.io-index" 404 + checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" 405 dependencies = [ 406 "cfg-if", 407 "js-sys", ··· 411 ] 412 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 name = "h2" 421 + version = "0.3.20" 422 source = "registry+https://github.com/rust-lang/crates.io-index" 423 + checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" 424 dependencies = [ 425 "bytes", 426 "fnv", ··· 461 462 [[package]] 463 name = "hermit-abi" 464 + version = "0.3.2" 465 source = "registry+https://github.com/rust-lang/crates.io-index" 466 + checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 467 468 [[package]] 469 name = "hmac" ··· 504 505 [[package]] 506 name = "httpdate" 507 + version = "1.0.3" 508 source = "registry+https://github.com/rust-lang/crates.io-index" 509 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 510 511 [[package]] 512 name = "hyper" 513 + version = "0.14.27" 514 source = "registry+https://github.com/rust-lang/crates.io-index" 515 + checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 516 dependencies = [ 517 "bytes", 518 "futures-channel", ··· 525 "httpdate", 526 "itoa", 527 "pin-project-lite", 528 + "socket2 0.4.9", 529 "tokio", 530 "tower-service", 531 "tracing", ··· 547 548 [[package]] 549 name = "iana-time-zone" 550 + version = "0.1.57" 551 source = "registry+https://github.com/rust-lang/crates.io-index" 552 + checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 553 dependencies = [ 554 "android_system_properties", 555 "core-foundation-sys", 556 "iana-time-zone-haiku", 557 "js-sys", 558 "wasm-bindgen", 559 + "windows", 560 ] 561 562 [[package]] 563 name = "iana-time-zone-haiku" 564 + version = "0.1.2" 565 source = "registry+https://github.com/rust-lang/crates.io-index" 566 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 567 dependencies = [ 568 + "cc", 569 ] 570 571 [[package]] ··· 576 577 [[package]] 578 name = "idna" 579 + version = "0.4.0" 580 source = "registry+https://github.com/rust-lang/crates.io-index" 581 + checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 582 dependencies = [ 583 "unicode-bidi", 584 "unicode-normalization", ··· 586 587 [[package]] 588 name = "indexmap" 589 + version = "1.9.3" 590 source = "registry+https://github.com/rust-lang/crates.io-index" 591 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 592 dependencies = [ 593 "autocfg", 594 "hashbrown", 595 ] 596 597 [[package]] 598 name = "ipnet" 599 + version = "2.8.0" 600 source = "registry+https://github.com/rust-lang/crates.io-index" 601 + checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" 602 603 [[package]] 604 name = "itertools" ··· 611 612 [[package]] 613 name = "itoa" 614 + version = "1.0.9" 615 source = "registry+https://github.com/rust-lang/crates.io-index" 616 + checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 617 618 [[package]] 619 name = "js-sys" 620 + version = "0.3.64" 621 source = "registry+https://github.com/rust-lang/crates.io-index" 622 + checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 623 dependencies = [ 624 "wasm-bindgen", 625 ] ··· 646 647 [[package]] 648 name = "libc" 649 + version = "0.2.147" 650 source = "registry+https://github.com/rust-lang/crates.io-index" 651 + checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 652 653 [[package]] 654 name = "linux-raw-sys" 655 + version = "0.4.5" 656 source = "registry+https://github.com/rust-lang/crates.io-index" 657 + checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" 658 659 [[package]] 660 name = "log" 661 + version = "0.4.20" 662 source = "registry+https://github.com/rust-lang/crates.io-index" 663 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 664 665 [[package]] 666 name = "memchr" ··· 670 671 [[package]] 672 name = "mime" 673 + version = "0.3.17" 674 source = "registry+https://github.com/rust-lang/crates.io-index" 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 + ] 685 686 [[package]] 687 name = "mio" 688 + version = "0.8.8" 689 source = "registry+https://github.com/rust-lang/crates.io-index" 690 + checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 691 dependencies = [ 692 "libc", 693 "wasi", 694 + "windows-sys", 695 ] 696 697 [[package]] ··· 735 736 [[package]] 737 name = "num-traits" 738 + version = "0.2.16" 739 source = "registry+https://github.com/rust-lang/crates.io-index" 740 + checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" 741 dependencies = [ 742 "autocfg", 743 ] 744 745 [[package]] 746 name = "num_cpus" 747 + version = "1.16.0" 748 source = "registry+https://github.com/rust-lang/crates.io-index" 749 + checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 750 dependencies = [ 751 + "hermit-abi 0.3.2", 752 "libc", 753 ] 754 755 [[package]] 756 name = "oauth2" 757 + version = "4.4.1" 758 source = "registry+https://github.com/rust-lang/crates.io-index" 759 + checksum = "09a6e2a2b13a56ebeabba9142f911745be6456163fd6c3d361274ebcd891a80c" 760 dependencies = [ 761 "base64 0.13.1", 762 "chrono", ··· 773 ] 774 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]] 785 name = "once_cell" 786 + version = "1.18.0" 787 source = "registry+https://github.com/rust-lang/crates.io-index" 788 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 789 790 [[package]] 791 name = "openidconnect" 792 + version = "2.5.1" 793 source = "registry+https://github.com/rust-lang/crates.io-index" 794 + checksum = "98dd5b7049bac4fdd2233b8c9767d42c05da8006fdb79cc903258556d2b18009" 795 dependencies = [ 796 "base64 0.13.1", 797 "chrono", ··· 816 817 [[package]] 818 name = "openssl" 819 + version = "0.10.56" 820 source = "registry+https://github.com/rust-lang/crates.io-index" 821 + checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" 822 dependencies = [ 823 + "bitflags 1.3.2", 824 "cfg-if", 825 "foreign-types", 826 "libc", ··· 831 832 [[package]] 833 name = "openssl-macros" 834 + version = "0.1.1" 835 source = "registry+https://github.com/rust-lang/crates.io-index" 836 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 837 dependencies = [ 838 "proc-macro2", 839 "quote", 840 + "syn 2.0.29", 841 ] 842 843 [[package]] ··· 848 849 [[package]] 850 name = "openssl-sys" 851 + version = "0.9.91" 852 source = "registry+https://github.com/rust-lang/crates.io-index" 853 + checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac" 854 dependencies = [ 855 "cc", 856 "libc", 857 "pkg-config", ··· 869 870 [[package]] 871 name = "percent-encoding" 872 + version = "2.3.0" 873 source = "registry+https://github.com/rust-lang/crates.io-index" 874 + checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 875 876 [[package]] 877 name = "pin-project-lite" 878 + version = "0.2.12" 879 source = "registry+https://github.com/rust-lang/crates.io-index" 880 + checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" 881 882 [[package]] 883 name = "pin-utils" ··· 887 888 [[package]] 889 name = "pkg-config" 890 + version = "0.3.27" 891 source = "registry+https://github.com/rust-lang/crates.io-index" 892 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 893 894 [[package]] 895 name = "ppv-lite86" ··· 899 900 [[package]] 901 name = "proc-macro2" 902 + version = "1.0.66" 903 source = "registry+https://github.com/rust-lang/crates.io-index" 904 + checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 905 dependencies = [ 906 "unicode-ident", 907 ] 908 909 [[package]] 910 name = "quote" 911 + version = "1.0.33" 912 source = "registry+https://github.com/rust-lang/crates.io-index" 913 + checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" 914 dependencies = [ 915 "proc-macro2", 916 ] ··· 947 948 [[package]] 949 name = "redox_syscall" 950 + version = "0.3.5" 951 source = "registry+https://github.com/rust-lang/crates.io-index" 952 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 953 dependencies = [ 954 + "bitflags 1.3.2", 955 ] 956 957 [[package]] 958 name = "reqwest" 959 + version = "0.11.18" 960 source = "registry+https://github.com/rust-lang/crates.io-index" 961 + checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 962 dependencies = [ 963 + "base64 0.21.2", 964 "bytes", 965 "encoding_rs", 966 "futures-core", ··· 1007 ] 1008 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]] 1016 name = "rustix" 1017 + version = "0.38.8" 1018 source = "registry+https://github.com/rust-lang/crates.io-index" 1019 + checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" 1020 dependencies = [ 1021 + "bitflags 2.4.0", 1022 "errno", 1023 "libc", 1024 "linux-raw-sys", 1025 + "windows-sys", 1026 ] 1027 1028 [[package]] 1029 name = "ryu" 1030 + version = "1.0.15" 1031 source = "registry+https://github.com/rust-lang/crates.io-index" 1032 + checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 1033 1034 [[package]] 1035 name = "schannel" 1036 + version = "0.1.22" 1037 source = "registry+https://github.com/rust-lang/crates.io-index" 1038 + checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 1039 dependencies = [ 1040 + "windows-sys", 1041 ] 1042 1043 [[package]] 1044 name = "security-framework" 1045 + version = "2.9.2" 1046 source = "registry+https://github.com/rust-lang/crates.io-index" 1047 + checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 1048 dependencies = [ 1049 + "bitflags 1.3.2", 1050 "core-foundation", 1051 "core-foundation-sys", 1052 "libc", ··· 1055 1056 [[package]] 1057 name = "security-framework-sys" 1058 + version = "2.9.1" 1059 source = "registry+https://github.com/rust-lang/crates.io-index" 1060 + checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 1061 dependencies = [ 1062 "core-foundation-sys", 1063 "libc", ··· 1065 1066 [[package]] 1067 name = "serde" 1068 + version = "1.0.183" 1069 source = "registry+https://github.com/rust-lang/crates.io-index" 1070 + checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" 1071 dependencies = [ 1072 "serde_derive", 1073 ] ··· 1084 1085 [[package]] 1086 name = "serde_derive" 1087 + version = "1.0.183" 1088 source = "registry+https://github.com/rust-lang/crates.io-index" 1089 + checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" 1090 dependencies = [ 1091 "proc-macro2", 1092 "quote", 1093 + "syn 2.0.29", 1094 ] 1095 1096 [[package]] 1097 name = "serde_json" 1098 + version = "1.0.105" 1099 source = "registry+https://github.com/rust-lang/crates.io-index" 1100 + checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" 1101 dependencies = [ 1102 "itoa", 1103 "ryu", ··· 1106 1107 [[package]] 1108 name = "serde_path_to_error" 1109 + version = "0.1.14" 1110 source = "registry+https://github.com/rust-lang/crates.io-index" 1111 + checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" 1112 dependencies = [ 1113 + "itoa", 1114 "serde", 1115 ] 1116 ··· 1154 "darling", 1155 "proc-macro2", 1156 "quote", 1157 + "syn 1.0.109", 1158 ] 1159 1160 [[package]] 1161 name = "sha2" 1162 + version = "0.10.7" 1163 source = "registry+https://github.com/rust-lang/crates.io-index" 1164 + checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" 1165 dependencies = [ 1166 "cfg-if", 1167 "cpufeatures", ··· 1179 1180 [[package]] 1181 name = "socket2" 1182 + version = "0.4.9" 1183 source = "registry+https://github.com/rust-lang/crates.io-index" 1184 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 1185 dependencies = [ 1186 "libc", 1187 "winapi", 1188 ] 1189 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]] 1201 name = "spin" 1202 version = "0.5.2" 1203 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1217 1218 [[package]] 1219 name = "subtle" 1220 + version = "2.5.0" 1221 source = "registry+https://github.com/rust-lang/crates.io-index" 1222 + checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 1223 1224 [[package]] 1225 name = "syn" ··· 1233 ] 1234 1235 [[package]] 1236 + name = "syn" 1237 + version = "2.0.29" 1238 source = "registry+https://github.com/rust-lang/crates.io-index" 1239 + checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" 1240 dependencies = [ 1241 + "proc-macro2", 1242 + "quote", 1243 + "unicode-ident", 1244 ] 1245 1246 [[package]] 1247 + name = "tempfile" 1248 + version = "3.7.1" 1249 source = "registry+https://github.com/rust-lang/crates.io-index" 1250 + checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" 1251 dependencies = [ 1252 + "cfg-if", 1253 + "fastrand", 1254 + "redox_syscall", 1255 + "rustix", 1256 + "windows-sys", 1257 ] 1258 1259 [[package]] ··· 1267 1268 [[package]] 1269 name = "thiserror" 1270 + version = "1.0.47" 1271 source = "registry+https://github.com/rust-lang/crates.io-index" 1272 + checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" 1273 dependencies = [ 1274 "thiserror-impl", 1275 ] 1276 1277 [[package]] 1278 name = "thiserror-impl" 1279 + version = "1.0.47" 1280 source = "registry+https://github.com/rust-lang/crates.io-index" 1281 + checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" 1282 dependencies = [ 1283 "proc-macro2", 1284 "quote", 1285 + "syn 2.0.29", 1286 ] 1287 1288 [[package]] 1289 name = "time" 1290 + version = "0.3.25" 1291 source = "registry+https://github.com/rust-lang/crates.io-index" 1292 + checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" 1293 dependencies = [ 1294 + "deranged", 1295 "itoa", 1296 "serde", 1297 "time-core", ··· 1300 1301 [[package]] 1302 name = "time-core" 1303 + version = "0.1.1" 1304 source = "registry+https://github.com/rust-lang/crates.io-index" 1305 + checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 1306 1307 [[package]] 1308 name = "time-macros" 1309 + version = "0.2.11" 1310 source = "registry+https://github.com/rust-lang/crates.io-index" 1311 + checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd" 1312 dependencies = [ 1313 "time-core", 1314 ] ··· 1330 1331 [[package]] 1332 name = "tokio" 1333 + version = "1.32.0" 1334 source = "registry+https://github.com/rust-lang/crates.io-index" 1335 + checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" 1336 dependencies = [ 1337 + "backtrace", 1338 "bytes", 1339 "libc", 1340 "mio", 1341 "num_cpus", 1342 "pin-project-lite", 1343 + "socket2 0.5.3", 1344 + "windows-sys", 1345 ] 1346 1347 [[package]] ··· 1356 1357 [[package]] 1358 name = "tokio-util" 1359 + version = "0.7.8" 1360 source = "registry+https://github.com/rust-lang/crates.io-index" 1361 + checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 1362 dependencies = [ 1363 "bytes", 1364 "futures-core", ··· 1396 1397 [[package]] 1398 name = "tracing-core" 1399 + version = "0.1.31" 1400 source = "registry+https://github.com/rust-lang/crates.io-index" 1401 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 1402 dependencies = [ 1403 "once_cell", 1404 ] ··· 1417 1418 [[package]] 1419 name = "unicode-bidi" 1420 + version = "0.3.13" 1421 source = "registry+https://github.com/rust-lang/crates.io-index" 1422 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 1423 1424 [[package]] 1425 name = "unicode-ident" 1426 + version = "1.0.11" 1427 source = "registry+https://github.com/rust-lang/crates.io-index" 1428 + checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" 1429 1430 [[package]] 1431 name = "unicode-normalization" ··· 1456 1457 [[package]] 1458 name = "url" 1459 + version = "2.4.0" 1460 source = "registry+https://github.com/rust-lang/crates.io-index" 1461 + checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" 1462 dependencies = [ 1463 "form_urlencoded", 1464 "idna", ··· 1486 1487 [[package]] 1488 name = "want" 1489 + version = "0.3.1" 1490 source = "registry+https://github.com/rust-lang/crates.io-index" 1491 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1492 dependencies = [ 1493 "try-lock", 1494 ] 1495 ··· 1501 1502 [[package]] 1503 name = "wasm-bindgen" 1504 + version = "0.2.87" 1505 source = "registry+https://github.com/rust-lang/crates.io-index" 1506 + checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 1507 dependencies = [ 1508 "cfg-if", 1509 "wasm-bindgen-macro", ··· 1511 1512 [[package]] 1513 name = "wasm-bindgen-backend" 1514 + version = "0.2.87" 1515 source = "registry+https://github.com/rust-lang/crates.io-index" 1516 + checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 1517 dependencies = [ 1518 "bumpalo", 1519 "log", 1520 "once_cell", 1521 "proc-macro2", 1522 "quote", 1523 + "syn 2.0.29", 1524 "wasm-bindgen-shared", 1525 ] 1526 1527 [[package]] 1528 name = "wasm-bindgen-futures" 1529 + version = "0.4.37" 1530 source = "registry+https://github.com/rust-lang/crates.io-index" 1531 + checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 1532 dependencies = [ 1533 "cfg-if", 1534 "js-sys", ··· 1538 1539 [[package]] 1540 name = "wasm-bindgen-macro" 1541 + version = "0.2.87" 1542 source = "registry+https://github.com/rust-lang/crates.io-index" 1543 + checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 1544 dependencies = [ 1545 "quote", 1546 "wasm-bindgen-macro-support", ··· 1548 1549 [[package]] 1550 name = "wasm-bindgen-macro-support" 1551 + version = "0.2.87" 1552 source = "registry+https://github.com/rust-lang/crates.io-index" 1553 + checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 1554 dependencies = [ 1555 "proc-macro2", 1556 "quote", 1557 + "syn 2.0.29", 1558 "wasm-bindgen-backend", 1559 "wasm-bindgen-shared", 1560 ] 1561 1562 [[package]] 1563 name = "wasm-bindgen-shared" 1564 + version = "0.2.87" 1565 source = "registry+https://github.com/rust-lang/crates.io-index" 1566 + checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 1567 1568 [[package]] 1569 name = "web-sys" 1570 + version = "0.3.64" 1571 source = "registry+https://github.com/rust-lang/crates.io-index" 1572 + checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 1573 dependencies = [ 1574 "js-sys", 1575 "wasm-bindgen", ··· 1592 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1593 1594 [[package]] 1595 name = "winapi-x86_64-pc-windows-gnu" 1596 version = "0.4.0" 1597 source = "registry+https://github.com/rust-lang/crates.io-index" 1598 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1599 1600 [[package]] 1601 + name = "windows" 1602 + version = "0.48.0" 1603 source = "registry+https://github.com/rust-lang/crates.io-index" 1604 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 1605 dependencies = [ 1606 + "windows-targets", 1607 ] 1608 1609 [[package]] 1610 name = "windows-sys" 1611 + version = "0.48.0" 1612 source = "registry+https://github.com/rust-lang/crates.io-index" 1613 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1614 dependencies = [ 1615 "windows-targets", 1616 ] 1617 1618 [[package]] 1619 name = "windows-targets" 1620 + version = "0.48.5" 1621 source = "registry+https://github.com/rust-lang/crates.io-index" 1622 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1623 dependencies = [ 1624 "windows_aarch64_gnullvm", 1625 "windows_aarch64_msvc", ··· 1632 1633 [[package]] 1634 name = "windows_aarch64_gnullvm" 1635 + version = "0.48.5" 1636 source = "registry+https://github.com/rust-lang/crates.io-index" 1637 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1638 1639 [[package]] 1640 name = "windows_aarch64_msvc" 1641 + version = "0.48.5" 1642 source = "registry+https://github.com/rust-lang/crates.io-index" 1643 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1644 1645 [[package]] 1646 name = "windows_i686_gnu" 1647 + version = "0.48.5" 1648 source = "registry+https://github.com/rust-lang/crates.io-index" 1649 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1650 1651 [[package]] 1652 name = "windows_i686_msvc" 1653 + version = "0.48.5" 1654 source = "registry+https://github.com/rust-lang/crates.io-index" 1655 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1656 1657 [[package]] 1658 name = "windows_x86_64_gnu" 1659 + version = "0.48.5" 1660 source = "registry+https://github.com/rust-lang/crates.io-index" 1661 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1662 1663 [[package]] 1664 name = "windows_x86_64_gnullvm" 1665 + version = "0.48.5" 1666 source = "registry+https://github.com/rust-lang/crates.io-index" 1667 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1668 1669 [[package]] 1670 name = "windows_x86_64_msvc" 1671 + version = "0.48.5" 1672 source = "registry+https://github.com/rust-lang/crates.io-index" 1673 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1674 1675 [[package]] 1676 name = "winreg" ··· 1685 name = "zeroidc" 1686 version = "0.1.0" 1687 dependencies = [ 1688 + "base64 0.21.2", 1689 "bytes", 1690 "cbindgen", 1691 "jwt",
+2 -6
pkgs/tools/networking/zerotierone/default.nix
··· 2 , stdenv 3 , rustPlatform 4 , fetchFromGitHub 5 - 6 , buildPackages 7 , cargo 8 - , iproute2 9 , lzo 10 , openssl 11 , pkg-config ··· 16 17 let 18 pname = "zerotierone"; 19 - version = "1.10.6"; 20 21 src = fetchFromGitHub { 22 owner = "zerotier"; 23 repo = "ZeroTierOne"; 24 rev = version; 25 - sha256 = "sha256-mapFKeF+8jMGkxSuHaw5oUdTdSQgAdxEwF/S6iyVLbY="; 26 }; 27 28 in stdenv.mkDerivation { ··· 62 lzo 63 openssl 64 zlib 65 - ] ++ lib.optional stdenv.isLinux [ 66 - iproute2 67 ]; 68 69 enableParallelBuilding = true;
··· 2 , stdenv 3 , rustPlatform 4 , fetchFromGitHub 5 , buildPackages 6 , cargo 7 , lzo 8 , openssl 9 , pkg-config ··· 14 15 let 16 pname = "zerotierone"; 17 + version = "1.12.1"; 18 19 src = fetchFromGitHub { 20 owner = "zerotier"; 21 repo = "ZeroTierOne"; 22 rev = version; 23 + sha256 = "sha256-430wdPrSNohM3sXewusjsW3tbE7EFGISGxABZF21yRc="; 24 }; 25 26 in stdenv.mkDerivation { ··· 60 lzo 61 openssl 62 zlib 63 ]; 64 65 enableParallelBuilding = true;
+10
pkgs/top-level/all-packages.nix
··· 3330 3331 azure-storage-azcopy = callPackage ../development/tools/azcopy { }; 3332 3333 bashblog = callPackage ../tools/text/bashblog { }; 3334 3335 berglas = callPackage ../tools/admin/berglas { }; ··· 4241 bchunk = callPackage ../tools/cd-dvd/bchunk { }; 4242 4243 inherit (callPackages ../misc/logging/beats/7.x.nix { }) 4244 filebeat7 4245 heartbeat7 4246 metricbeat7 4247 packetbeat7; 4248 4249 filebeat = filebeat7; 4250 heartbeat = heartbeat7; 4251 metricbeat = metricbeat7; ··· 12321 outils = callPackage ../tools/misc/outils { }; 12322 12323 mpi = openmpi; # this attribute should used to build MPI applications 12324 12325 ucc = callPackage ../development/libraries/ucc { }; 12326 ··· 17223 }; 17224 cargo-readme = callPackage ../development/tools/rust/cargo-readme { }; 17225 cargo-risczero = callPackage ../development/tools/rust/cargo-risczero { }; 17226 cargo-semver-checks = callPackage ../development/tools/rust/cargo-semver-checks { }; 17227 17228 cargo-show-asm = callPackage ../development/tools/rust/cargo-show-asm { }; ··· 30279 30280 whitesur-icon-theme = callPackage ../data/icons/whitesur-icon-theme { }; 30281 30282 wireless-regdb = callPackage ../data/misc/wireless-regdb { }; 30283 30284 work-sans = callPackage ../data/fonts/work-sans { }; ··· 35377 skypeforlinux = callPackage ../applications/networking/instant-messengers/skypeforlinux { }; 35378 35379 SkypeExport = callPackage ../applications/networking/instant-messengers/SkypeExport { }; 35380 35381 slop = callPackage ../tools/misc/slop { }; 35382
··· 3330 3331 azure-storage-azcopy = callPackage ../development/tools/azcopy { }; 3332 3333 + bark = callPackage ../tools/audio/bark { }; 3334 + 3335 bashblog = callPackage ../tools/text/bashblog { }; 3336 3337 berglas = callPackage ../tools/admin/berglas { }; ··· 4243 bchunk = callPackage ../tools/cd-dvd/bchunk { }; 4244 4245 inherit (callPackages ../misc/logging/beats/7.x.nix { }) 4246 + auditbeat7 4247 filebeat7 4248 heartbeat7 4249 metricbeat7 4250 packetbeat7; 4251 4252 + auditbeat = auditbeat7; 4253 filebeat = filebeat7; 4254 heartbeat = heartbeat7; 4255 metricbeat = metricbeat7; ··· 12325 outils = callPackage ../tools/misc/outils { }; 12326 12327 mpi = openmpi; # this attribute should used to build MPI applications 12328 + mpiCheckPhaseHook = callPackage ../build-support/setup-hooks/mpi-check-hook { }; 12329 12330 ucc = callPackage ../development/libraries/ucc { }; 12331 ··· 17228 }; 17229 cargo-readme = callPackage ../development/tools/rust/cargo-readme { }; 17230 cargo-risczero = callPackage ../development/tools/rust/cargo-risczero { }; 17231 + cargo-run-bin = callPackage ../development/tools/rust/cargo-run-bin {}; 17232 cargo-semver-checks = callPackage ../development/tools/rust/cargo-semver-checks { }; 17233 17234 cargo-show-asm = callPackage ../development/tools/rust/cargo-show-asm { }; ··· 30285 30286 whitesur-icon-theme = callPackage ../data/icons/whitesur-icon-theme { }; 30287 30288 + whitesur-kde = callPackage ../data/themes/whitesur-kde { }; 30289 + 30290 wireless-regdb = callPackage ../data/misc/wireless-regdb { }; 30291 30292 work-sans = callPackage ../data/fonts/work-sans { }; ··· 35385 skypeforlinux = callPackage ../applications/networking/instant-messengers/skypeforlinux { }; 35386 35387 SkypeExport = callPackage ../applications/networking/instant-messengers/SkypeExport { }; 35388 + 35389 + slingshot = callPackage ../tools/misc/slingshot { }; 35390 35391 slop = callPackage ../tools/misc/slop { }; 35392
+4
pkgs/top-level/python-packages.nix
··· 1537 1538 botocore = callPackage ../development/python-modules/botocore { }; 1539 1540 botorch = callPackage ../development/python-modules/botorch { }; 1541 1542 bottle = callPackage ../development/python-modules/bottle { }; ··· 13133 typer = callPackage ../development/python-modules/typer { }; 13134 13135 types-appdirs = callPackage ../development/python-modules/types-appdirs { }; 13136 13137 types-beautifulsoup4 = callPackage ../development/python-modules/types-beautifulsoup4 { }; 13138
··· 1537 1538 botocore = callPackage ../development/python-modules/botocore { }; 1539 1540 + botocore-stubs = callPackage ../development/python-modules/botocore-stubs { }; 1541 + 1542 botorch = callPackage ../development/python-modules/botorch { }; 1543 1544 bottle = callPackage ../development/python-modules/bottle { }; ··· 13135 typer = callPackage ../development/python-modules/typer { }; 13136 13137 types-appdirs = callPackage ../development/python-modules/types-appdirs { }; 13138 + 13139 + types-awscrt = callPackage ../development/python-modules/types-awscrt { }; 13140 13141 types-beautifulsoup4 = callPackage ../development/python-modules/types-beautifulsoup4 { }; 13142
+4
pkgs/top-level/python2-packages.nix
··· 37 38 more-itertools = callPackage ../development/python2-modules/more-itertools { }; 39 40 packaging = callPackage ../development/python2-modules/packaging { }; 41 42 pip = callPackage ../development/python2-modules/pip { };
··· 37 38 more-itertools = callPackage ../development/python2-modules/more-itertools { }; 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 + 44 packaging = callPackage ../development/python2-modules/packaging { }; 45 46 pip = callPackage ../development/python2-modules/pip { };