Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub 756bb660 1141abfa

+156 -2199
+4 -4
pkgs/applications/editors/vim/plugins/non-generated/avante-nvim/default.nix
··· 12 12 pkgs, 13 13 }: 14 14 let 15 - version = "0.0.25-unstable-2025-07-02"; 15 + version = "0.0.25-unstable-2025-07-11"; 16 16 src = fetchFromGitHub { 17 17 owner = "yetone"; 18 18 repo = "avante.nvim"; 19 - rev = "6bbf3d2004133252cd0e2d057add5c1431dc8511"; 20 - hash = "sha256-xHYogeovrd2n7oZB935ma2qwqhfu0eEDieQv5j5d9dQ="; 19 + rev = "c4ce24e3c047c3283652aeb9a16114603d6f705c"; 20 + hash = "sha256-ILOISh3+bfN1dEz1BN4+iZ2WJzmt0++QVZUjp24ZjNI="; 21 21 }; 22 22 avante-nvim-lib = rustPlatform.buildRustPackage { 23 23 pname = "avante-nvim-lib"; 24 24 inherit version src; 25 25 26 26 useFetchCargoVendor = true; 27 - cargoHash = "sha256-pmnMoNdaIR0i+4kwW3cf01vDQo39QakTCEG9AXA86ck="; 27 + cargoHash = "sha256-8mBpzndz34RrmhJYezd4hLrJyhVL4S4IHK3plaue1k8="; 28 28 29 29 nativeBuildInputs = [ 30 30 pkg-config
+3 -3
pkgs/applications/editors/vscode/extensions/default.nix
··· 1115 1115 publisher = "Continue"; 1116 1116 version = "1.1.49"; 1117 1117 } 1118 - // sources.${stdenv.system}; 1118 + // sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"); 1119 1119 nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ autoPatchelfHook ]; 1120 1120 buildInputs = [ (lib.getLib stdenv.cc.cc) ]; 1121 1121 meta = { ··· 1387 1387 publisher = "devsense"; 1388 1388 version = "1.41.14332"; 1389 1389 } 1390 - // sources.${stdenv.system}; 1390 + // sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"); 1391 1391 1392 1392 nativeBuildInputs = [ autoPatchelfHook ]; 1393 1393 ··· 3334 3334 publisher = "ms-dotnettools"; 3335 3335 version = "2.2.3"; 3336 3336 } 3337 - // sources.${stdenv.system}; 3337 + // sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"); 3338 3338 nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ autoPatchelfHook ]; 3339 3339 buildInputs = [ 3340 3340 (lib.getLib stdenv.cc.cc)
+3 -3
pkgs/by-name/av/avbroot/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "avbroot"; 13 - version = "3.17.1"; 13 + version = "3.17.2"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "chenxiaolong"; 17 17 repo = "avbroot"; 18 18 tag = "v${version}"; 19 - hash = "sha256-W+ElIKi1WrjxBEEGWcR4MkjlJwdQFBiI09gvks4Pfr8="; 19 + hash = "sha256-7/EW547UCyuKxp8JYWxg9qIr3p4CfA0RKxJuEify6DU="; 20 20 }; 21 21 22 22 useFetchCargoVendor = true; 23 - cargoHash = "sha256-t9cOFl3gtQ6cn+6xlMf4IOA3S6md/9D83w9L9dPgBMU="; 23 + cargoHash = "sha256-eId/2+U34WxfniJe+oVv49zvMkjoo3ZM8Sna7bKnjKA="; 24 24 25 25 nativeBuildInputs = [ 26 26 pkg-config
+3 -1
pkgs/by-name/bu/bulloak/package.nix
··· 47 47 doCheck = false; 48 48 49 49 # provide the list of solc versions to the `svm-rs-builds` dependency 50 - SVM_RELEASES_LIST_JSON = solc-versions.${stdenv.hostPlatform.system}; 50 + SVM_RELEASES_LIST_JSON = 51 + solc-versions.${stdenv.hostPlatform.system} 52 + or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 51 53 52 54 meta = { 53 55 description = "Solidity test generator based on the Branching Tree Technique";
+3 -3
pkgs/by-name/cp/cpu-x/package.nix
··· 39 39 40 40 stdenv.mkDerivation (finalAttrs: { 41 41 pname = "cpu-x"; 42 - version = "5.3.0"; 42 + version = "5.3.1"; 43 43 44 44 src = fetchFromGitHub { 45 - owner = "X0rg"; 45 + owner = "TheTumultuousUnicornOfDarkness"; 46 46 repo = "CPU-X"; 47 47 tag = "v${finalAttrs.version}"; 48 - hash = "sha256-UOOqPkOXsyZthreg0Fv/KMJcm0Syd7/Uni9G3H6UJ2E="; 48 + hash = "sha256-yrDTvOdMeUw2fxLtNjCZggs9M9P1YKeMxm/dI5MRyYQ="; 49 49 }; 50 50 51 51 nativeBuildInputs = [
+4 -1
pkgs/by-name/da/daytona-bin/package.nix
··· 30 30 }; 31 31 }; 32 32 in 33 - fetchurl urls."${stdenvNoCC.hostPlatform.system}"; 33 + fetchurl ( 34 + urls."${stdenvNoCC.hostPlatform.system}" 35 + or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}") 36 + ); 34 37 35 38 dontUnpack = true; 36 39
-1875
pkgs/by-name/de/degit-rs/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 = "addr2line" 7 - version = "0.24.2" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10 - dependencies = [ 11 - "gimli", 12 - ] 13 - 14 - [[package]] 15 - name = "adler2" 16 - version = "2.0.0" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 19 - 20 - [[package]] 21 - name = "aho-corasick" 22 - version = "1.1.3" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 25 - dependencies = [ 26 - "memchr", 27 - ] 28 - 29 - [[package]] 30 - name = "ansi_term" 31 - version = "0.12.1" 32 - source = "registry+https://github.com/rust-lang/crates.io-index" 33 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 34 - dependencies = [ 35 - "winapi 0.3.9", 36 - ] 37 - 38 - [[package]] 39 - name = "atty" 40 - version = "0.2.14" 41 - source = "registry+https://github.com/rust-lang/crates.io-index" 42 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 43 - dependencies = [ 44 - "hermit-abi 0.1.19", 45 - "libc", 46 - "winapi 0.3.9", 47 - ] 48 - 49 - [[package]] 50 - name = "autocfg" 51 - version = "0.1.8" 52 - source = "registry+https://github.com/rust-lang/crates.io-index" 53 - checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" 54 - dependencies = [ 55 - "autocfg 1.4.0", 56 - ] 57 - 58 - [[package]] 59 - name = "autocfg" 60 - version = "1.4.0" 61 - source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 63 - 64 - [[package]] 65 - name = "backtrace" 66 - version = "0.3.74" 67 - source = "registry+https://github.com/rust-lang/crates.io-index" 68 - checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 69 - dependencies = [ 70 - "addr2line", 71 - "cfg-if 1.0.0", 72 - "libc", 73 - "miniz_oxide", 74 - "object", 75 - "rustc-demangle", 76 - "windows-targets", 77 - ] 78 - 79 - [[package]] 80 - name = "base64" 81 - version = "0.10.1" 82 - source = "registry+https://github.com/rust-lang/crates.io-index" 83 - checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" 84 - dependencies = [ 85 - "byteorder", 86 - ] 87 - 88 - [[package]] 89 - name = "bitflags" 90 - version = "1.3.2" 91 - source = "registry+https://github.com/rust-lang/crates.io-index" 92 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 93 - 94 - [[package]] 95 - name = "bitflags" 96 - version = "2.6.0" 97 - source = "registry+https://github.com/rust-lang/crates.io-index" 98 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 99 - 100 - [[package]] 101 - name = "byteorder" 102 - version = "1.5.0" 103 - source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 105 - 106 - [[package]] 107 - name = "bytes" 108 - version = "0.4.12" 109 - source = "registry+https://github.com/rust-lang/crates.io-index" 110 - checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" 111 - dependencies = [ 112 - "byteorder", 113 - "either", 114 - "iovec", 115 - ] 116 - 117 - [[package]] 118 - name = "cc" 119 - version = "1.1.31" 120 - source = "registry+https://github.com/rust-lang/crates.io-index" 121 - checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f" 122 - dependencies = [ 123 - "shlex", 124 - ] 125 - 126 - [[package]] 127 - name = "cfg-if" 128 - version = "0.1.10" 129 - source = "registry+https://github.com/rust-lang/crates.io-index" 130 - checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 131 - 132 - [[package]] 133 - name = "cfg-if" 134 - version = "1.0.0" 135 - source = "registry+https://github.com/rust-lang/crates.io-index" 136 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 137 - 138 - [[package]] 139 - name = "clap" 140 - version = "2.34.0" 141 - source = "registry+https://github.com/rust-lang/crates.io-index" 142 - checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 143 - dependencies = [ 144 - "ansi_term", 145 - "atty", 146 - "bitflags 1.3.2", 147 - "strsim", 148 - "textwrap", 149 - "unicode-width", 150 - "vec_map", 151 - ] 152 - 153 - [[package]] 154 - name = "cloudabi" 155 - version = "0.0.3" 156 - source = "registry+https://github.com/rust-lang/crates.io-index" 157 - checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 158 - dependencies = [ 159 - "bitflags 1.3.2", 160 - ] 161 - 162 - [[package]] 163 - name = "colored" 164 - version = "1.9.4" 165 - source = "registry+https://github.com/rust-lang/crates.io-index" 166 - checksum = "5a5f741c91823341bebf717d4c71bda820630ce065443b58bd1b7451af008355" 167 - dependencies = [ 168 - "is-terminal", 169 - "lazy_static", 170 - "winapi 0.3.9", 171 - ] 172 - 173 - [[package]] 174 - name = "console" 175 - version = "0.15.8" 176 - source = "registry+https://github.com/rust-lang/crates.io-index" 177 - checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 178 - dependencies = [ 179 - "encode_unicode", 180 - "lazy_static", 181 - "libc", 182 - "unicode-width", 183 - "windows-sys 0.52.0", 184 - ] 185 - 186 - [[package]] 187 - name = "cookie" 188 - version = "0.12.0" 189 - source = "registry+https://github.com/rust-lang/crates.io-index" 190 - checksum = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5" 191 - dependencies = [ 192 - "time", 193 - "url 1.7.2", 194 - ] 195 - 196 - [[package]] 197 - name = "cookie_store" 198 - version = "0.7.0" 199 - source = "registry+https://github.com/rust-lang/crates.io-index" 200 - checksum = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c" 201 - dependencies = [ 202 - "cookie", 203 - "failure", 204 - "idna 0.1.5", 205 - "log", 206 - "publicsuffix", 207 - "serde", 208 - "serde_json", 209 - "time", 210 - "try_from", 211 - "url 1.7.2", 212 - ] 213 - 214 - [[package]] 215 - name = "core-foundation" 216 - version = "0.9.4" 217 - source = "registry+https://github.com/rust-lang/crates.io-index" 218 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 219 - dependencies = [ 220 - "core-foundation-sys", 221 - "libc", 222 - ] 223 - 224 - [[package]] 225 - name = "core-foundation-sys" 226 - version = "0.8.7" 227 - source = "registry+https://github.com/rust-lang/crates.io-index" 228 - checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 229 - 230 - [[package]] 231 - name = "crc32fast" 232 - version = "1.4.2" 233 - source = "registry+https://github.com/rust-lang/crates.io-index" 234 - checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 235 - dependencies = [ 236 - "cfg-if 1.0.0", 237 - ] 238 - 239 - [[package]] 240 - name = "crossbeam-deque" 241 - version = "0.7.4" 242 - source = "registry+https://github.com/rust-lang/crates.io-index" 243 - checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed" 244 - dependencies = [ 245 - "crossbeam-epoch", 246 - "crossbeam-utils", 247 - "maybe-uninit", 248 - ] 249 - 250 - [[package]] 251 - name = "crossbeam-epoch" 252 - version = "0.8.2" 253 - source = "registry+https://github.com/rust-lang/crates.io-index" 254 - checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace" 255 - dependencies = [ 256 - "autocfg 1.4.0", 257 - "cfg-if 0.1.10", 258 - "crossbeam-utils", 259 - "lazy_static", 260 - "maybe-uninit", 261 - "memoffset", 262 - "scopeguard", 263 - ] 264 - 265 - [[package]] 266 - name = "crossbeam-queue" 267 - version = "0.2.3" 268 - source = "registry+https://github.com/rust-lang/crates.io-index" 269 - checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570" 270 - dependencies = [ 271 - "cfg-if 0.1.10", 272 - "crossbeam-utils", 273 - "maybe-uninit", 274 - ] 275 - 276 - [[package]] 277 - name = "crossbeam-utils" 278 - version = "0.7.2" 279 - source = "registry+https://github.com/rust-lang/crates.io-index" 280 - checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" 281 - dependencies = [ 282 - "autocfg 1.4.0", 283 - "cfg-if 0.1.10", 284 - "lazy_static", 285 - ] 286 - 287 - [[package]] 288 - name = "degit" 289 - version = "0.1.3" 290 - dependencies = [ 291 - "clap", 292 - "colored", 293 - "flate2", 294 - "indicatif", 295 - "regex", 296 - "reqwest", 297 - "tar", 298 - ] 299 - 300 - [[package]] 301 - name = "dtoa" 302 - version = "0.4.8" 303 - source = "registry+https://github.com/rust-lang/crates.io-index" 304 - checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 305 - 306 - [[package]] 307 - name = "either" 308 - version = "1.13.0" 309 - source = "registry+https://github.com/rust-lang/crates.io-index" 310 - checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 311 - 312 - [[package]] 313 - name = "encode_unicode" 314 - version = "0.3.6" 315 - source = "registry+https://github.com/rust-lang/crates.io-index" 316 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 317 - 318 - [[package]] 319 - name = "encoding_rs" 320 - version = "0.8.35" 321 - source = "registry+https://github.com/rust-lang/crates.io-index" 322 - checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 323 - dependencies = [ 324 - "cfg-if 1.0.0", 325 - ] 326 - 327 - [[package]] 328 - name = "errno" 329 - version = "0.3.9" 330 - source = "registry+https://github.com/rust-lang/crates.io-index" 331 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 332 - dependencies = [ 333 - "libc", 334 - "windows-sys 0.52.0", 335 - ] 336 - 337 - [[package]] 338 - name = "failure" 339 - version = "0.1.8" 340 - source = "registry+https://github.com/rust-lang/crates.io-index" 341 - checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" 342 - dependencies = [ 343 - "backtrace", 344 - "failure_derive", 345 - ] 346 - 347 - [[package]] 348 - name = "failure_derive" 349 - version = "0.1.8" 350 - source = "registry+https://github.com/rust-lang/crates.io-index" 351 - checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" 352 - dependencies = [ 353 - "proc-macro2", 354 - "quote", 355 - "syn 1.0.109", 356 - "synstructure", 357 - ] 358 - 359 - [[package]] 360 - name = "fastrand" 361 - version = "2.1.1" 362 - source = "registry+https://github.com/rust-lang/crates.io-index" 363 - checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" 364 - 365 - [[package]] 366 - name = "filetime" 367 - version = "0.2.25" 368 - source = "registry+https://github.com/rust-lang/crates.io-index" 369 - checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" 370 - dependencies = [ 371 - "cfg-if 1.0.0", 372 - "libc", 373 - "libredox", 374 - "windows-sys 0.59.0", 375 - ] 376 - 377 - [[package]] 378 - name = "flate2" 379 - version = "1.0.34" 380 - source = "registry+https://github.com/rust-lang/crates.io-index" 381 - checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" 382 - dependencies = [ 383 - "crc32fast", 384 - "miniz_oxide", 385 - ] 386 - 387 - [[package]] 388 - name = "fnv" 389 - version = "1.0.7" 390 - source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 392 - 393 - [[package]] 394 - name = "foreign-types" 395 - version = "0.3.2" 396 - source = "registry+https://github.com/rust-lang/crates.io-index" 397 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 398 - dependencies = [ 399 - "foreign-types-shared", 400 - ] 401 - 402 - [[package]] 403 - name = "foreign-types-shared" 404 - version = "0.1.1" 405 - source = "registry+https://github.com/rust-lang/crates.io-index" 406 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 407 - 408 - [[package]] 409 - name = "form_urlencoded" 410 - version = "1.2.1" 411 - source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 413 - dependencies = [ 414 - "percent-encoding 2.3.1", 415 - ] 416 - 417 - [[package]] 418 - name = "fuchsia-cprng" 419 - version = "0.1.1" 420 - source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 422 - 423 - [[package]] 424 - name = "fuchsia-zircon" 425 - version = "0.3.3" 426 - source = "registry+https://github.com/rust-lang/crates.io-index" 427 - checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 428 - dependencies = [ 429 - "bitflags 1.3.2", 430 - "fuchsia-zircon-sys", 431 - ] 432 - 433 - [[package]] 434 - name = "fuchsia-zircon-sys" 435 - version = "0.3.3" 436 - source = "registry+https://github.com/rust-lang/crates.io-index" 437 - checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 438 - 439 - [[package]] 440 - name = "futures" 441 - version = "0.1.31" 442 - source = "registry+https://github.com/rust-lang/crates.io-index" 443 - checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678" 444 - 445 - [[package]] 446 - name = "futures-cpupool" 447 - version = "0.1.8" 448 - source = "registry+https://github.com/rust-lang/crates.io-index" 449 - checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" 450 - dependencies = [ 451 - "futures", 452 - "num_cpus", 453 - ] 454 - 455 - [[package]] 456 - name = "gimli" 457 - version = "0.31.1" 458 - source = "registry+https://github.com/rust-lang/crates.io-index" 459 - checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 460 - 461 - [[package]] 462 - name = "h2" 463 - version = "0.1.26" 464 - source = "registry+https://github.com/rust-lang/crates.io-index" 465 - checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" 466 - dependencies = [ 467 - "byteorder", 468 - "bytes", 469 - "fnv", 470 - "futures", 471 - "http", 472 - "indexmap", 473 - "log", 474 - "slab", 475 - "string", 476 - "tokio-io", 477 - ] 478 - 479 - [[package]] 480 - name = "hashbrown" 481 - version = "0.12.3" 482 - source = "registry+https://github.com/rust-lang/crates.io-index" 483 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 484 - 485 - [[package]] 486 - name = "hermit-abi" 487 - version = "0.1.19" 488 - source = "registry+https://github.com/rust-lang/crates.io-index" 489 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 490 - dependencies = [ 491 - "libc", 492 - ] 493 - 494 - [[package]] 495 - name = "hermit-abi" 496 - version = "0.3.9" 497 - source = "registry+https://github.com/rust-lang/crates.io-index" 498 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 499 - 500 - [[package]] 501 - name = "hermit-abi" 502 - version = "0.4.0" 503 - source = "registry+https://github.com/rust-lang/crates.io-index" 504 - checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 505 - 506 - [[package]] 507 - name = "http" 508 - version = "0.1.21" 509 - source = "registry+https://github.com/rust-lang/crates.io-index" 510 - checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0" 511 - dependencies = [ 512 - "bytes", 513 - "fnv", 514 - "itoa 0.4.8", 515 - ] 516 - 517 - [[package]] 518 - name = "http-body" 519 - version = "0.1.0" 520 - source = "registry+https://github.com/rust-lang/crates.io-index" 521 - checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" 522 - dependencies = [ 523 - "bytes", 524 - "futures", 525 - "http", 526 - "tokio-buf", 527 - ] 528 - 529 - [[package]] 530 - name = "httparse" 531 - version = "1.9.5" 532 - source = "registry+https://github.com/rust-lang/crates.io-index" 533 - checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" 534 - 535 - [[package]] 536 - name = "hyper" 537 - version = "0.12.36" 538 - source = "registry+https://github.com/rust-lang/crates.io-index" 539 - checksum = "5c843caf6296fc1f93444735205af9ed4e109a539005abb2564ae1d6fad34c52" 540 - dependencies = [ 541 - "bytes", 542 - "futures", 543 - "futures-cpupool", 544 - "h2", 545 - "http", 546 - "http-body", 547 - "httparse", 548 - "iovec", 549 - "itoa 0.4.8", 550 - "log", 551 - "net2", 552 - "rustc_version", 553 - "time", 554 - "tokio", 555 - "tokio-buf", 556 - "tokio-executor", 557 - "tokio-io", 558 - "tokio-reactor", 559 - "tokio-tcp", 560 - "tokio-threadpool", 561 - "tokio-timer", 562 - "want", 563 - ] 564 - 565 - [[package]] 566 - name = "hyper-tls" 567 - version = "0.3.2" 568 - source = "registry+https://github.com/rust-lang/crates.io-index" 569 - checksum = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f" 570 - dependencies = [ 571 - "bytes", 572 - "futures", 573 - "hyper", 574 - "native-tls", 575 - "tokio-io", 576 - ] 577 - 578 - [[package]] 579 - name = "idna" 580 - version = "0.1.5" 581 - source = "registry+https://github.com/rust-lang/crates.io-index" 582 - checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" 583 - dependencies = [ 584 - "matches", 585 - "unicode-bidi", 586 - "unicode-normalization", 587 - ] 588 - 589 - [[package]] 590 - name = "idna" 591 - version = "0.2.3" 592 - source = "registry+https://github.com/rust-lang/crates.io-index" 593 - checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 594 - dependencies = [ 595 - "matches", 596 - "unicode-bidi", 597 - "unicode-normalization", 598 - ] 599 - 600 - [[package]] 601 - name = "idna" 602 - version = "0.5.0" 603 - source = "registry+https://github.com/rust-lang/crates.io-index" 604 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 605 - dependencies = [ 606 - "unicode-bidi", 607 - "unicode-normalization", 608 - ] 609 - 610 - [[package]] 611 - name = "indexmap" 612 - version = "1.9.3" 613 - source = "registry+https://github.com/rust-lang/crates.io-index" 614 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 615 - dependencies = [ 616 - "autocfg 1.4.0", 617 - "hashbrown", 618 - ] 619 - 620 - [[package]] 621 - name = "indicatif" 622 - version = "0.11.0" 623 - source = "registry+https://github.com/rust-lang/crates.io-index" 624 - checksum = "2c60da1c9abea75996b70a931bba6c750730399005b61ccd853cee50ef3d0d0c" 625 - dependencies = [ 626 - "console", 627 - "lazy_static", 628 - "number_prefix", 629 - "parking_lot 0.12.3", 630 - "regex", 631 - ] 632 - 633 - [[package]] 634 - name = "iovec" 635 - version = "0.1.4" 636 - source = "registry+https://github.com/rust-lang/crates.io-index" 637 - checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" 638 - dependencies = [ 639 - "libc", 640 - ] 641 - 642 - [[package]] 643 - name = "is-terminal" 644 - version = "0.4.13" 645 - source = "registry+https://github.com/rust-lang/crates.io-index" 646 - checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" 647 - dependencies = [ 648 - "hermit-abi 0.4.0", 649 - "libc", 650 - "windows-sys 0.52.0", 651 - ] 652 - 653 - [[package]] 654 - name = "itoa" 655 - version = "0.4.8" 656 - source = "registry+https://github.com/rust-lang/crates.io-index" 657 - checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 658 - 659 - [[package]] 660 - name = "itoa" 661 - version = "1.0.11" 662 - source = "registry+https://github.com/rust-lang/crates.io-index" 663 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 664 - 665 - [[package]] 666 - name = "kernel32-sys" 667 - version = "0.2.2" 668 - source = "registry+https://github.com/rust-lang/crates.io-index" 669 - checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 670 - dependencies = [ 671 - "winapi 0.2.8", 672 - "winapi-build", 673 - ] 674 - 675 - [[package]] 676 - name = "lazy_static" 677 - version = "1.5.0" 678 - source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 680 - 681 - [[package]] 682 - name = "libc" 683 - version = "0.2.161" 684 - source = "registry+https://github.com/rust-lang/crates.io-index" 685 - checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" 686 - 687 - [[package]] 688 - name = "libredox" 689 - version = "0.1.3" 690 - source = "registry+https://github.com/rust-lang/crates.io-index" 691 - checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 692 - dependencies = [ 693 - "bitflags 2.6.0", 694 - "libc", 695 - "redox_syscall 0.5.7", 696 - ] 697 - 698 - [[package]] 699 - name = "linux-raw-sys" 700 - version = "0.4.14" 701 - source = "registry+https://github.com/rust-lang/crates.io-index" 702 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 703 - 704 - [[package]] 705 - name = "lock_api" 706 - version = "0.3.4" 707 - source = "registry+https://github.com/rust-lang/crates.io-index" 708 - checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75" 709 - dependencies = [ 710 - "scopeguard", 711 - ] 712 - 713 - [[package]] 714 - name = "lock_api" 715 - version = "0.4.12" 716 - source = "registry+https://github.com/rust-lang/crates.io-index" 717 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 718 - dependencies = [ 719 - "autocfg 1.4.0", 720 - "scopeguard", 721 - ] 722 - 723 - [[package]] 724 - name = "log" 725 - version = "0.4.22" 726 - source = "registry+https://github.com/rust-lang/crates.io-index" 727 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 728 - 729 - [[package]] 730 - name = "matches" 731 - version = "0.1.10" 732 - source = "registry+https://github.com/rust-lang/crates.io-index" 733 - checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 734 - 735 - [[package]] 736 - name = "maybe-uninit" 737 - version = "2.0.0" 738 - source = "registry+https://github.com/rust-lang/crates.io-index" 739 - checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" 740 - 741 - [[package]] 742 - name = "memchr" 743 - version = "2.7.4" 744 - source = "registry+https://github.com/rust-lang/crates.io-index" 745 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 746 - 747 - [[package]] 748 - name = "memoffset" 749 - version = "0.5.6" 750 - source = "registry+https://github.com/rust-lang/crates.io-index" 751 - checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa" 752 - dependencies = [ 753 - "autocfg 1.4.0", 754 - ] 755 - 756 - [[package]] 757 - name = "mime" 758 - version = "0.3.17" 759 - source = "registry+https://github.com/rust-lang/crates.io-index" 760 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 761 - 762 - [[package]] 763 - name = "mime_guess" 764 - version = "2.0.5" 765 - source = "registry+https://github.com/rust-lang/crates.io-index" 766 - checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 767 - dependencies = [ 768 - "mime", 769 - "unicase", 770 - ] 771 - 772 - [[package]] 773 - name = "miniz_oxide" 774 - version = "0.8.0" 775 - source = "registry+https://github.com/rust-lang/crates.io-index" 776 - checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 777 - dependencies = [ 778 - "adler2", 779 - ] 780 - 781 - [[package]] 782 - name = "mio" 783 - version = "0.6.23" 784 - source = "registry+https://github.com/rust-lang/crates.io-index" 785 - checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" 786 - dependencies = [ 787 - "cfg-if 0.1.10", 788 - "fuchsia-zircon", 789 - "fuchsia-zircon-sys", 790 - "iovec", 791 - "kernel32-sys", 792 - "libc", 793 - "log", 794 - "miow", 795 - "net2", 796 - "slab", 797 - "winapi 0.2.8", 798 - ] 799 - 800 - [[package]] 801 - name = "miow" 802 - version = "0.2.2" 803 - source = "registry+https://github.com/rust-lang/crates.io-index" 804 - checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" 805 - dependencies = [ 806 - "kernel32-sys", 807 - "net2", 808 - "winapi 0.2.8", 809 - "ws2_32-sys", 810 - ] 811 - 812 - [[package]] 813 - name = "native-tls" 814 - version = "0.2.12" 815 - source = "registry+https://github.com/rust-lang/crates.io-index" 816 - checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" 817 - dependencies = [ 818 - "libc", 819 - "log", 820 - "openssl", 821 - "openssl-probe", 822 - "openssl-sys", 823 - "schannel", 824 - "security-framework", 825 - "security-framework-sys", 826 - "tempfile", 827 - ] 828 - 829 - [[package]] 830 - name = "net2" 831 - version = "0.2.39" 832 - source = "registry+https://github.com/rust-lang/crates.io-index" 833 - checksum = "b13b648036a2339d06de780866fbdfda0dde886de7b3af2ddeba8b14f4ee34ac" 834 - dependencies = [ 835 - "cfg-if 0.1.10", 836 - "libc", 837 - "winapi 0.3.9", 838 - ] 839 - 840 - [[package]] 841 - name = "num-traits" 842 - version = "0.2.19" 843 - source = "registry+https://github.com/rust-lang/crates.io-index" 844 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 845 - dependencies = [ 846 - "autocfg 1.4.0", 847 - ] 848 - 849 - [[package]] 850 - name = "num_cpus" 851 - version = "1.16.0" 852 - source = "registry+https://github.com/rust-lang/crates.io-index" 853 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 854 - dependencies = [ 855 - "hermit-abi 0.3.9", 856 - "libc", 857 - ] 858 - 859 - [[package]] 860 - name = "number_prefix" 861 - version = "0.2.8" 862 - source = "registry+https://github.com/rust-lang/crates.io-index" 863 - checksum = "dbf9993e59c894e3c08aa1c2712914e9e6bf1fcbfc6bef283e2183df345a4fee" 864 - dependencies = [ 865 - "num-traits", 866 - ] 867 - 868 - [[package]] 869 - name = "object" 870 - version = "0.36.5" 871 - source = "registry+https://github.com/rust-lang/crates.io-index" 872 - checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" 873 - dependencies = [ 874 - "memchr", 875 - ] 876 - 877 - [[package]] 878 - name = "once_cell" 879 - version = "1.20.2" 880 - source = "registry+https://github.com/rust-lang/crates.io-index" 881 - checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 882 - 883 - [[package]] 884 - name = "openssl" 885 - version = "0.10.68" 886 - source = "registry+https://github.com/rust-lang/crates.io-index" 887 - checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" 888 - dependencies = [ 889 - "bitflags 2.6.0", 890 - "cfg-if 1.0.0", 891 - "foreign-types", 892 - "libc", 893 - "once_cell", 894 - "openssl-macros", 895 - "openssl-sys", 896 - ] 897 - 898 - [[package]] 899 - name = "openssl-macros" 900 - version = "0.1.1" 901 - source = "registry+https://github.com/rust-lang/crates.io-index" 902 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 903 - dependencies = [ 904 - "proc-macro2", 905 - "quote", 906 - "syn 2.0.86", 907 - ] 908 - 909 - [[package]] 910 - name = "openssl-probe" 911 - version = "0.1.5" 912 - source = "registry+https://github.com/rust-lang/crates.io-index" 913 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 914 - 915 - [[package]] 916 - name = "openssl-sys" 917 - version = "0.9.104" 918 - source = "registry+https://github.com/rust-lang/crates.io-index" 919 - checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" 920 - dependencies = [ 921 - "cc", 922 - "libc", 923 - "pkg-config", 924 - "vcpkg", 925 - ] 926 - 927 - [[package]] 928 - name = "parking_lot" 929 - version = "0.9.0" 930 - source = "registry+https://github.com/rust-lang/crates.io-index" 931 - checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" 932 - dependencies = [ 933 - "lock_api 0.3.4", 934 - "parking_lot_core 0.6.3", 935 - "rustc_version", 936 - ] 937 - 938 - [[package]] 939 - name = "parking_lot" 940 - version = "0.12.3" 941 - source = "registry+https://github.com/rust-lang/crates.io-index" 942 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 943 - dependencies = [ 944 - "lock_api 0.4.12", 945 - "parking_lot_core 0.9.10", 946 - ] 947 - 948 - [[package]] 949 - name = "parking_lot_core" 950 - version = "0.6.3" 951 - source = "registry+https://github.com/rust-lang/crates.io-index" 952 - checksum = "bda66b810a62be75176a80873726630147a5ca780cd33921e0b5709033e66b0a" 953 - dependencies = [ 954 - "cfg-if 0.1.10", 955 - "cloudabi", 956 - "libc", 957 - "redox_syscall 0.1.57", 958 - "rustc_version", 959 - "smallvec 0.6.14", 960 - "winapi 0.3.9", 961 - ] 962 - 963 - [[package]] 964 - name = "parking_lot_core" 965 - version = "0.9.10" 966 - source = "registry+https://github.com/rust-lang/crates.io-index" 967 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 968 - dependencies = [ 969 - "cfg-if 1.0.0", 970 - "libc", 971 - "redox_syscall 0.5.7", 972 - "smallvec 1.13.2", 973 - "windows-targets", 974 - ] 975 - 976 - [[package]] 977 - name = "percent-encoding" 978 - version = "1.0.1" 979 - source = "registry+https://github.com/rust-lang/crates.io-index" 980 - checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" 981 - 982 - [[package]] 983 - name = "percent-encoding" 984 - version = "2.3.1" 985 - source = "registry+https://github.com/rust-lang/crates.io-index" 986 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 987 - 988 - [[package]] 989 - name = "pkg-config" 990 - version = "0.3.31" 991 - source = "registry+https://github.com/rust-lang/crates.io-index" 992 - checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" 993 - 994 - [[package]] 995 - name = "proc-macro2" 996 - version = "1.0.89" 997 - source = "registry+https://github.com/rust-lang/crates.io-index" 998 - checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" 999 - dependencies = [ 1000 - "unicode-ident", 1001 - ] 1002 - 1003 - [[package]] 1004 - name = "publicsuffix" 1005 - version = "1.5.6" 1006 - source = "registry+https://github.com/rust-lang/crates.io-index" 1007 - checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f" 1008 - dependencies = [ 1009 - "idna 0.2.3", 1010 - "url 2.5.2", 1011 - ] 1012 - 1013 - [[package]] 1014 - name = "quote" 1015 - version = "1.0.37" 1016 - source = "registry+https://github.com/rust-lang/crates.io-index" 1017 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 1018 - dependencies = [ 1019 - "proc-macro2", 1020 - ] 1021 - 1022 - [[package]] 1023 - name = "rand" 1024 - version = "0.6.5" 1025 - source = "registry+https://github.com/rust-lang/crates.io-index" 1026 - checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" 1027 - dependencies = [ 1028 - "autocfg 0.1.8", 1029 - "libc", 1030 - "rand_chacha", 1031 - "rand_core 0.4.2", 1032 - "rand_hc", 1033 - "rand_isaac", 1034 - "rand_jitter", 1035 - "rand_os", 1036 - "rand_pcg", 1037 - "rand_xorshift", 1038 - "winapi 0.3.9", 1039 - ] 1040 - 1041 - [[package]] 1042 - name = "rand_chacha" 1043 - version = "0.1.1" 1044 - source = "registry+https://github.com/rust-lang/crates.io-index" 1045 - checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" 1046 - dependencies = [ 1047 - "autocfg 0.1.8", 1048 - "rand_core 0.3.1", 1049 - ] 1050 - 1051 - [[package]] 1052 - name = "rand_core" 1053 - version = "0.3.1" 1054 - source = "registry+https://github.com/rust-lang/crates.io-index" 1055 - checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 1056 - dependencies = [ 1057 - "rand_core 0.4.2", 1058 - ] 1059 - 1060 - [[package]] 1061 - name = "rand_core" 1062 - version = "0.4.2" 1063 - source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 1065 - 1066 - [[package]] 1067 - name = "rand_hc" 1068 - version = "0.1.0" 1069 - source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" 1071 - dependencies = [ 1072 - "rand_core 0.3.1", 1073 - ] 1074 - 1075 - [[package]] 1076 - name = "rand_isaac" 1077 - version = "0.1.1" 1078 - source = "registry+https://github.com/rust-lang/crates.io-index" 1079 - checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" 1080 - dependencies = [ 1081 - "rand_core 0.3.1", 1082 - ] 1083 - 1084 - [[package]] 1085 - name = "rand_jitter" 1086 - version = "0.1.4" 1087 - source = "registry+https://github.com/rust-lang/crates.io-index" 1088 - checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" 1089 - dependencies = [ 1090 - "libc", 1091 - "rand_core 0.4.2", 1092 - "winapi 0.3.9", 1093 - ] 1094 - 1095 - [[package]] 1096 - name = "rand_os" 1097 - version = "0.1.3" 1098 - source = "registry+https://github.com/rust-lang/crates.io-index" 1099 - checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" 1100 - dependencies = [ 1101 - "cloudabi", 1102 - "fuchsia-cprng", 1103 - "libc", 1104 - "rand_core 0.4.2", 1105 - "rdrand", 1106 - "winapi 0.3.9", 1107 - ] 1108 - 1109 - [[package]] 1110 - name = "rand_pcg" 1111 - version = "0.1.2" 1112 - source = "registry+https://github.com/rust-lang/crates.io-index" 1113 - checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" 1114 - dependencies = [ 1115 - "autocfg 0.1.8", 1116 - "rand_core 0.4.2", 1117 - ] 1118 - 1119 - [[package]] 1120 - name = "rand_xorshift" 1121 - version = "0.1.1" 1122 - source = "registry+https://github.com/rust-lang/crates.io-index" 1123 - checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" 1124 - dependencies = [ 1125 - "rand_core 0.3.1", 1126 - ] 1127 - 1128 - [[package]] 1129 - name = "rdrand" 1130 - version = "0.4.0" 1131 - source = "registry+https://github.com/rust-lang/crates.io-index" 1132 - checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 1133 - dependencies = [ 1134 - "rand_core 0.3.1", 1135 - ] 1136 - 1137 - [[package]] 1138 - name = "redox_syscall" 1139 - version = "0.1.57" 1140 - source = "registry+https://github.com/rust-lang/crates.io-index" 1141 - checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 1142 - 1143 - [[package]] 1144 - name = "redox_syscall" 1145 - version = "0.5.7" 1146 - source = "registry+https://github.com/rust-lang/crates.io-index" 1147 - checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" 1148 - dependencies = [ 1149 - "bitflags 2.6.0", 1150 - ] 1151 - 1152 - [[package]] 1153 - name = "regex" 1154 - version = "1.11.1" 1155 - source = "registry+https://github.com/rust-lang/crates.io-index" 1156 - checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 1157 - dependencies = [ 1158 - "aho-corasick", 1159 - "memchr", 1160 - "regex-automata", 1161 - "regex-syntax", 1162 - ] 1163 - 1164 - [[package]] 1165 - name = "regex-automata" 1166 - version = "0.4.8" 1167 - source = "registry+https://github.com/rust-lang/crates.io-index" 1168 - checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" 1169 - dependencies = [ 1170 - "aho-corasick", 1171 - "memchr", 1172 - "regex-syntax", 1173 - ] 1174 - 1175 - [[package]] 1176 - name = "regex-syntax" 1177 - version = "0.8.5" 1178 - source = "registry+https://github.com/rust-lang/crates.io-index" 1179 - checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 1180 - 1181 - [[package]] 1182 - name = "reqwest" 1183 - version = "0.9.24" 1184 - source = "registry+https://github.com/rust-lang/crates.io-index" 1185 - checksum = "f88643aea3c1343c804950d7bf983bd2067f5ab59db6d613a08e05572f2714ab" 1186 - dependencies = [ 1187 - "base64", 1188 - "bytes", 1189 - "cookie", 1190 - "cookie_store", 1191 - "encoding_rs", 1192 - "flate2", 1193 - "futures", 1194 - "http", 1195 - "hyper", 1196 - "hyper-tls", 1197 - "log", 1198 - "mime", 1199 - "mime_guess", 1200 - "native-tls", 1201 - "serde", 1202 - "serde_json", 1203 - "serde_urlencoded", 1204 - "time", 1205 - "tokio", 1206 - "tokio-executor", 1207 - "tokio-io", 1208 - "tokio-threadpool", 1209 - "tokio-timer", 1210 - "url 1.7.2", 1211 - "uuid", 1212 - "winreg", 1213 - ] 1214 - 1215 - [[package]] 1216 - name = "rustc-demangle" 1217 - version = "0.1.24" 1218 - source = "registry+https://github.com/rust-lang/crates.io-index" 1219 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 1220 - 1221 - [[package]] 1222 - name = "rustc_version" 1223 - version = "0.2.3" 1224 - source = "registry+https://github.com/rust-lang/crates.io-index" 1225 - checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 1226 - dependencies = [ 1227 - "semver", 1228 - ] 1229 - 1230 - [[package]] 1231 - name = "rustix" 1232 - version = "0.38.38" 1233 - source = "registry+https://github.com/rust-lang/crates.io-index" 1234 - checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a" 1235 - dependencies = [ 1236 - "bitflags 2.6.0", 1237 - "errno", 1238 - "libc", 1239 - "linux-raw-sys", 1240 - "windows-sys 0.52.0", 1241 - ] 1242 - 1243 - [[package]] 1244 - name = "ryu" 1245 - version = "1.0.18" 1246 - source = "registry+https://github.com/rust-lang/crates.io-index" 1247 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1248 - 1249 - [[package]] 1250 - name = "schannel" 1251 - version = "0.1.26" 1252 - source = "registry+https://github.com/rust-lang/crates.io-index" 1253 - checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1" 1254 - dependencies = [ 1255 - "windows-sys 0.59.0", 1256 - ] 1257 - 1258 - [[package]] 1259 - name = "scopeguard" 1260 - version = "1.2.0" 1261 - source = "registry+https://github.com/rust-lang/crates.io-index" 1262 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1263 - 1264 - [[package]] 1265 - name = "security-framework" 1266 - version = "2.11.1" 1267 - source = "registry+https://github.com/rust-lang/crates.io-index" 1268 - checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 1269 - dependencies = [ 1270 - "bitflags 2.6.0", 1271 - "core-foundation", 1272 - "core-foundation-sys", 1273 - "libc", 1274 - "security-framework-sys", 1275 - ] 1276 - 1277 - [[package]] 1278 - name = "security-framework-sys" 1279 - version = "2.12.0" 1280 - source = "registry+https://github.com/rust-lang/crates.io-index" 1281 - checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" 1282 - dependencies = [ 1283 - "core-foundation-sys", 1284 - "libc", 1285 - ] 1286 - 1287 - [[package]] 1288 - name = "semver" 1289 - version = "0.9.0" 1290 - source = "registry+https://github.com/rust-lang/crates.io-index" 1291 - checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 1292 - dependencies = [ 1293 - "semver-parser", 1294 - ] 1295 - 1296 - [[package]] 1297 - name = "semver-parser" 1298 - version = "0.7.0" 1299 - source = "registry+https://github.com/rust-lang/crates.io-index" 1300 - checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 1301 - 1302 - [[package]] 1303 - name = "serde" 1304 - version = "1.0.214" 1305 - source = "registry+https://github.com/rust-lang/crates.io-index" 1306 - checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5" 1307 - dependencies = [ 1308 - "serde_derive", 1309 - ] 1310 - 1311 - [[package]] 1312 - name = "serde_derive" 1313 - version = "1.0.214" 1314 - source = "registry+https://github.com/rust-lang/crates.io-index" 1315 - checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766" 1316 - dependencies = [ 1317 - "proc-macro2", 1318 - "quote", 1319 - "syn 2.0.86", 1320 - ] 1321 - 1322 - [[package]] 1323 - name = "serde_json" 1324 - version = "1.0.132" 1325 - source = "registry+https://github.com/rust-lang/crates.io-index" 1326 - checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" 1327 - dependencies = [ 1328 - "itoa 1.0.11", 1329 - "memchr", 1330 - "ryu", 1331 - "serde", 1332 - ] 1333 - 1334 - [[package]] 1335 - name = "serde_urlencoded" 1336 - version = "0.5.5" 1337 - source = "registry+https://github.com/rust-lang/crates.io-index" 1338 - checksum = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a" 1339 - dependencies = [ 1340 - "dtoa", 1341 - "itoa 0.4.8", 1342 - "serde", 1343 - "url 1.7.2", 1344 - ] 1345 - 1346 - [[package]] 1347 - name = "shlex" 1348 - version = "1.3.0" 1349 - source = "registry+https://github.com/rust-lang/crates.io-index" 1350 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1351 - 1352 - [[package]] 1353 - name = "slab" 1354 - version = "0.4.9" 1355 - source = "registry+https://github.com/rust-lang/crates.io-index" 1356 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1357 - dependencies = [ 1358 - "autocfg 1.4.0", 1359 - ] 1360 - 1361 - [[package]] 1362 - name = "smallvec" 1363 - version = "0.6.14" 1364 - source = "registry+https://github.com/rust-lang/crates.io-index" 1365 - checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0" 1366 - dependencies = [ 1367 - "maybe-uninit", 1368 - ] 1369 - 1370 - [[package]] 1371 - name = "smallvec" 1372 - version = "1.13.2" 1373 - source = "registry+https://github.com/rust-lang/crates.io-index" 1374 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1375 - 1376 - [[package]] 1377 - name = "string" 1378 - version = "0.2.1" 1379 - source = "registry+https://github.com/rust-lang/crates.io-index" 1380 - checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" 1381 - dependencies = [ 1382 - "bytes", 1383 - ] 1384 - 1385 - [[package]] 1386 - name = "strsim" 1387 - version = "0.8.0" 1388 - source = "registry+https://github.com/rust-lang/crates.io-index" 1389 - checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 1390 - 1391 - [[package]] 1392 - name = "syn" 1393 - version = "1.0.109" 1394 - source = "registry+https://github.com/rust-lang/crates.io-index" 1395 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1396 - dependencies = [ 1397 - "proc-macro2", 1398 - "quote", 1399 - "unicode-ident", 1400 - ] 1401 - 1402 - [[package]] 1403 - name = "syn" 1404 - version = "2.0.86" 1405 - source = "registry+https://github.com/rust-lang/crates.io-index" 1406 - checksum = "e89275301d38033efb81a6e60e3497e734dfcc62571f2854bf4b16690398824c" 1407 - dependencies = [ 1408 - "proc-macro2", 1409 - "quote", 1410 - "unicode-ident", 1411 - ] 1412 - 1413 - [[package]] 1414 - name = "synstructure" 1415 - version = "0.12.6" 1416 - source = "registry+https://github.com/rust-lang/crates.io-index" 1417 - checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 1418 - dependencies = [ 1419 - "proc-macro2", 1420 - "quote", 1421 - "syn 1.0.109", 1422 - "unicode-xid", 1423 - ] 1424 - 1425 - [[package]] 1426 - name = "tar" 1427 - version = "0.4.42" 1428 - source = "registry+https://github.com/rust-lang/crates.io-index" 1429 - checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020" 1430 - dependencies = [ 1431 - "filetime", 1432 - "libc", 1433 - "xattr", 1434 - ] 1435 - 1436 - [[package]] 1437 - name = "tempfile" 1438 - version = "3.13.0" 1439 - source = "registry+https://github.com/rust-lang/crates.io-index" 1440 - checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" 1441 - dependencies = [ 1442 - "cfg-if 1.0.0", 1443 - "fastrand", 1444 - "once_cell", 1445 - "rustix", 1446 - "windows-sys 0.59.0", 1447 - ] 1448 - 1449 - [[package]] 1450 - name = "textwrap" 1451 - version = "0.11.0" 1452 - source = "registry+https://github.com/rust-lang/crates.io-index" 1453 - checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 1454 - dependencies = [ 1455 - "unicode-width", 1456 - ] 1457 - 1458 - [[package]] 1459 - name = "time" 1460 - version = "0.1.45" 1461 - source = "registry+https://github.com/rust-lang/crates.io-index" 1462 - checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 1463 - dependencies = [ 1464 - "libc", 1465 - "wasi", 1466 - "winapi 0.3.9", 1467 - ] 1468 - 1469 - [[package]] 1470 - name = "tinyvec" 1471 - version = "1.8.0" 1472 - source = "registry+https://github.com/rust-lang/crates.io-index" 1473 - checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 1474 - dependencies = [ 1475 - "tinyvec_macros", 1476 - ] 1477 - 1478 - [[package]] 1479 - name = "tinyvec_macros" 1480 - version = "0.1.1" 1481 - source = "registry+https://github.com/rust-lang/crates.io-index" 1482 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1483 - 1484 - [[package]] 1485 - name = "tokio" 1486 - version = "0.1.22" 1487 - source = "registry+https://github.com/rust-lang/crates.io-index" 1488 - checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" 1489 - dependencies = [ 1490 - "bytes", 1491 - "futures", 1492 - "mio", 1493 - "num_cpus", 1494 - "tokio-current-thread", 1495 - "tokio-executor", 1496 - "tokio-io", 1497 - "tokio-reactor", 1498 - "tokio-tcp", 1499 - "tokio-threadpool", 1500 - "tokio-timer", 1501 - ] 1502 - 1503 - [[package]] 1504 - name = "tokio-buf" 1505 - version = "0.1.1" 1506 - source = "registry+https://github.com/rust-lang/crates.io-index" 1507 - checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46" 1508 - dependencies = [ 1509 - "bytes", 1510 - "either", 1511 - "futures", 1512 - ] 1513 - 1514 - [[package]] 1515 - name = "tokio-current-thread" 1516 - version = "0.1.7" 1517 - source = "registry+https://github.com/rust-lang/crates.io-index" 1518 - checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e" 1519 - dependencies = [ 1520 - "futures", 1521 - "tokio-executor", 1522 - ] 1523 - 1524 - [[package]] 1525 - name = "tokio-executor" 1526 - version = "0.1.10" 1527 - source = "registry+https://github.com/rust-lang/crates.io-index" 1528 - checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671" 1529 - dependencies = [ 1530 - "crossbeam-utils", 1531 - "futures", 1532 - ] 1533 - 1534 - [[package]] 1535 - name = "tokio-io" 1536 - version = "0.1.13" 1537 - source = "registry+https://github.com/rust-lang/crates.io-index" 1538 - checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674" 1539 - dependencies = [ 1540 - "bytes", 1541 - "futures", 1542 - "log", 1543 - ] 1544 - 1545 - [[package]] 1546 - name = "tokio-reactor" 1547 - version = "0.1.12" 1548 - source = "registry+https://github.com/rust-lang/crates.io-index" 1549 - checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351" 1550 - dependencies = [ 1551 - "crossbeam-utils", 1552 - "futures", 1553 - "lazy_static", 1554 - "log", 1555 - "mio", 1556 - "num_cpus", 1557 - "parking_lot 0.9.0", 1558 - "slab", 1559 - "tokio-executor", 1560 - "tokio-io", 1561 - "tokio-sync", 1562 - ] 1563 - 1564 - [[package]] 1565 - name = "tokio-sync" 1566 - version = "0.1.8" 1567 - source = "registry+https://github.com/rust-lang/crates.io-index" 1568 - checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee" 1569 - dependencies = [ 1570 - "fnv", 1571 - "futures", 1572 - ] 1573 - 1574 - [[package]] 1575 - name = "tokio-tcp" 1576 - version = "0.1.4" 1577 - source = "registry+https://github.com/rust-lang/crates.io-index" 1578 - checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72" 1579 - dependencies = [ 1580 - "bytes", 1581 - "futures", 1582 - "iovec", 1583 - "mio", 1584 - "tokio-io", 1585 - "tokio-reactor", 1586 - ] 1587 - 1588 - [[package]] 1589 - name = "tokio-threadpool" 1590 - version = "0.1.18" 1591 - source = "registry+https://github.com/rust-lang/crates.io-index" 1592 - checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89" 1593 - dependencies = [ 1594 - "crossbeam-deque", 1595 - "crossbeam-queue", 1596 - "crossbeam-utils", 1597 - "futures", 1598 - "lazy_static", 1599 - "log", 1600 - "num_cpus", 1601 - "slab", 1602 - "tokio-executor", 1603 - ] 1604 - 1605 - [[package]] 1606 - name = "tokio-timer" 1607 - version = "0.2.13" 1608 - source = "registry+https://github.com/rust-lang/crates.io-index" 1609 - checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296" 1610 - dependencies = [ 1611 - "crossbeam-utils", 1612 - "futures", 1613 - "slab", 1614 - "tokio-executor", 1615 - ] 1616 - 1617 - [[package]] 1618 - name = "try-lock" 1619 - version = "0.2.5" 1620 - source = "registry+https://github.com/rust-lang/crates.io-index" 1621 - checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1622 - 1623 - [[package]] 1624 - name = "try_from" 1625 - version = "0.3.2" 1626 - source = "registry+https://github.com/rust-lang/crates.io-index" 1627 - checksum = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b" 1628 - dependencies = [ 1629 - "cfg-if 0.1.10", 1630 - ] 1631 - 1632 - [[package]] 1633 - name = "unicase" 1634 - version = "2.8.0" 1635 - source = "registry+https://github.com/rust-lang/crates.io-index" 1636 - checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df" 1637 - 1638 - [[package]] 1639 - name = "unicode-bidi" 1640 - version = "0.3.17" 1641 - source = "registry+https://github.com/rust-lang/crates.io-index" 1642 - checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893" 1643 - 1644 - [[package]] 1645 - name = "unicode-ident" 1646 - version = "1.0.13" 1647 - source = "registry+https://github.com/rust-lang/crates.io-index" 1648 - checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 1649 - 1650 - [[package]] 1651 - name = "unicode-normalization" 1652 - version = "0.1.24" 1653 - source = "registry+https://github.com/rust-lang/crates.io-index" 1654 - checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 1655 - dependencies = [ 1656 - "tinyvec", 1657 - ] 1658 - 1659 - [[package]] 1660 - name = "unicode-width" 1661 - version = "0.1.14" 1662 - source = "registry+https://github.com/rust-lang/crates.io-index" 1663 - checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 1664 - 1665 - [[package]] 1666 - name = "unicode-xid" 1667 - version = "0.2.6" 1668 - source = "registry+https://github.com/rust-lang/crates.io-index" 1669 - checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 1670 - 1671 - [[package]] 1672 - name = "url" 1673 - version = "1.7.2" 1674 - source = "registry+https://github.com/rust-lang/crates.io-index" 1675 - checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" 1676 - dependencies = [ 1677 - "idna 0.1.5", 1678 - "matches", 1679 - "percent-encoding 1.0.1", 1680 - ] 1681 - 1682 - [[package]] 1683 - name = "url" 1684 - version = "2.5.2" 1685 - source = "registry+https://github.com/rust-lang/crates.io-index" 1686 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 1687 - dependencies = [ 1688 - "form_urlencoded", 1689 - "idna 0.5.0", 1690 - "percent-encoding 2.3.1", 1691 - ] 1692 - 1693 - [[package]] 1694 - name = "uuid" 1695 - version = "0.7.4" 1696 - source = "registry+https://github.com/rust-lang/crates.io-index" 1697 - checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a" 1698 - dependencies = [ 1699 - "rand", 1700 - ] 1701 - 1702 - [[package]] 1703 - name = "vcpkg" 1704 - version = "0.2.15" 1705 - source = "registry+https://github.com/rust-lang/crates.io-index" 1706 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1707 - 1708 - [[package]] 1709 - name = "vec_map" 1710 - version = "0.8.2" 1711 - source = "registry+https://github.com/rust-lang/crates.io-index" 1712 - checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 1713 - 1714 - [[package]] 1715 - name = "want" 1716 - version = "0.2.0" 1717 - source = "registry+https://github.com/rust-lang/crates.io-index" 1718 - checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" 1719 - dependencies = [ 1720 - "futures", 1721 - "log", 1722 - "try-lock", 1723 - ] 1724 - 1725 - [[package]] 1726 - name = "wasi" 1727 - version = "0.10.0+wasi-snapshot-preview1" 1728 - source = "registry+https://github.com/rust-lang/crates.io-index" 1729 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 1730 - 1731 - [[package]] 1732 - name = "winapi" 1733 - version = "0.2.8" 1734 - source = "registry+https://github.com/rust-lang/crates.io-index" 1735 - checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 1736 - 1737 - [[package]] 1738 - name = "winapi" 1739 - version = "0.3.9" 1740 - source = "registry+https://github.com/rust-lang/crates.io-index" 1741 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1742 - dependencies = [ 1743 - "winapi-i686-pc-windows-gnu", 1744 - "winapi-x86_64-pc-windows-gnu", 1745 - ] 1746 - 1747 - [[package]] 1748 - name = "winapi-build" 1749 - version = "0.1.1" 1750 - source = "registry+https://github.com/rust-lang/crates.io-index" 1751 - checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 1752 - 1753 - [[package]] 1754 - name = "winapi-i686-pc-windows-gnu" 1755 - version = "0.4.0" 1756 - source = "registry+https://github.com/rust-lang/crates.io-index" 1757 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1758 - 1759 - [[package]] 1760 - name = "winapi-x86_64-pc-windows-gnu" 1761 - version = "0.4.0" 1762 - source = "registry+https://github.com/rust-lang/crates.io-index" 1763 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1764 - 1765 - [[package]] 1766 - name = "windows-sys" 1767 - version = "0.52.0" 1768 - source = "registry+https://github.com/rust-lang/crates.io-index" 1769 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1770 - dependencies = [ 1771 - "windows-targets", 1772 - ] 1773 - 1774 - [[package]] 1775 - name = "windows-sys" 1776 - version = "0.59.0" 1777 - source = "registry+https://github.com/rust-lang/crates.io-index" 1778 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1779 - dependencies = [ 1780 - "windows-targets", 1781 - ] 1782 - 1783 - [[package]] 1784 - name = "windows-targets" 1785 - version = "0.52.6" 1786 - source = "registry+https://github.com/rust-lang/crates.io-index" 1787 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1788 - dependencies = [ 1789 - "windows_aarch64_gnullvm", 1790 - "windows_aarch64_msvc", 1791 - "windows_i686_gnu", 1792 - "windows_i686_gnullvm", 1793 - "windows_i686_msvc", 1794 - "windows_x86_64_gnu", 1795 - "windows_x86_64_gnullvm", 1796 - "windows_x86_64_msvc", 1797 - ] 1798 - 1799 - [[package]] 1800 - name = "windows_aarch64_gnullvm" 1801 - version = "0.52.6" 1802 - source = "registry+https://github.com/rust-lang/crates.io-index" 1803 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1804 - 1805 - [[package]] 1806 - name = "windows_aarch64_msvc" 1807 - version = "0.52.6" 1808 - source = "registry+https://github.com/rust-lang/crates.io-index" 1809 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1810 - 1811 - [[package]] 1812 - name = "windows_i686_gnu" 1813 - version = "0.52.6" 1814 - source = "registry+https://github.com/rust-lang/crates.io-index" 1815 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1816 - 1817 - [[package]] 1818 - name = "windows_i686_gnullvm" 1819 - version = "0.52.6" 1820 - source = "registry+https://github.com/rust-lang/crates.io-index" 1821 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1822 - 1823 - [[package]] 1824 - name = "windows_i686_msvc" 1825 - version = "0.52.6" 1826 - source = "registry+https://github.com/rust-lang/crates.io-index" 1827 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1828 - 1829 - [[package]] 1830 - name = "windows_x86_64_gnu" 1831 - version = "0.52.6" 1832 - source = "registry+https://github.com/rust-lang/crates.io-index" 1833 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1834 - 1835 - [[package]] 1836 - name = "windows_x86_64_gnullvm" 1837 - version = "0.52.6" 1838 - source = "registry+https://github.com/rust-lang/crates.io-index" 1839 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1840 - 1841 - [[package]] 1842 - name = "windows_x86_64_msvc" 1843 - version = "0.52.6" 1844 - source = "registry+https://github.com/rust-lang/crates.io-index" 1845 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1846 - 1847 - [[package]] 1848 - name = "winreg" 1849 - version = "0.6.2" 1850 - source = "registry+https://github.com/rust-lang/crates.io-index" 1851 - checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" 1852 - dependencies = [ 1853 - "winapi 0.3.9", 1854 - ] 1855 - 1856 - [[package]] 1857 - name = "ws2_32-sys" 1858 - version = "0.2.1" 1859 - source = "registry+https://github.com/rust-lang/crates.io-index" 1860 - checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" 1861 - dependencies = [ 1862 - "winapi 0.2.8", 1863 - "winapi-build", 1864 - ] 1865 - 1866 - [[package]] 1867 - name = "xattr" 1868 - version = "1.3.1" 1869 - source = "registry+https://github.com/rust-lang/crates.io-index" 1870 - checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 1871 - dependencies = [ 1872 - "libc", 1873 - "linux-raw-sys", 1874 - "rustix", 1875 - ]
-45
pkgs/by-name/de/degit-rs/package.nix
··· 1 - { 2 - lib, 3 - fetchFromGitHub, 4 - rustPlatform, 5 - pkg-config, 6 - openssl, 7 - }: 8 - 9 - rustPlatform.buildRustPackage { 10 - pname = "degit-rs"; 11 - version = "0.1.2-unstable-2021-09-22"; 12 - 13 - src = fetchFromGitHub { 14 - owner = "psnszsn"; 15 - repo = "degit-rs"; 16 - rev = "c7dbeb75131510a79400838e081b90665c654c80"; 17 - hash = "sha256-swyfKnYQ+I4elnDnJ0yPDUryiFXEVnrGt9xHWiEe6wo="; 18 - }; 19 - 20 - # The source repo doesn't provide a Cargo.lock file, so we need to create one 21 - postPatch = '' 22 - ln -s ${./Cargo.lock} Cargo.lock 23 - ''; 24 - 25 - cargoLock.lockFile = ./Cargo.lock; 26 - 27 - cargoHash = "sha256-bUoZsXU7iWK7MZ/hXk1JNUX1hN88lrU1mc1rrYuiCYs="; 28 - 29 - nativeBuildInputs = [ pkg-config ]; 30 - 31 - buildInputs = [ openssl ]; 32 - 33 - # The test suite is not working for it requires a network connection, 34 - # so we disable it 35 - doCheck = false; 36 - 37 - meta = { 38 - description = "Rust rewrite of degit"; 39 - homepage = "https://github.com/psnszsn/degit-rs"; 40 - license = lib.licenses.mit; 41 - platforms = lib.platforms.linux; 42 - mainProgram = "degit"; 43 - maintainers = with lib.maintainers; [ chillcicada ]; 44 - }; 45 - }
+3 -3
pkgs/by-name/fi/files-cli/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "files-cli"; 11 - version = "2.15.38"; 11 + version = "2.15.44"; 12 12 13 13 src = fetchFromGitHub { 14 14 repo = "files-cli"; 15 15 owner = "files-com"; 16 16 rev = "v${version}"; 17 - hash = "sha256-bf87pCosw41yqnPeQ38t++jedRYKEn22wwuTSrmPvCo="; 17 + hash = "sha256-+5fGCHRjBbPgX2CdNyBS+cOXJYLK/HPwca0Gg+ZVEx0="; 18 18 }; 19 19 20 - vendorHash = "sha256-p5Fcs7xVsDBfJQLNbEqsJY2jwgoKrBRCi6Qadwr1azY="; 20 + vendorHash = "sha256-ofI/aaikK2O02XswK5WgDTCgnwDyfq0eR17WWJsOqH8="; 21 21 22 22 ldflags = [ 23 23 "-s"
+2 -2
pkgs/by-name/gr/grafana-loki/package.nix
··· 12 12 }: 13 13 14 14 buildGoModule rec { 15 - version = "3.5.1"; 15 + version = "3.5.2"; 16 16 pname = "grafana-loki"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "grafana"; 20 20 repo = "loki"; 21 21 rev = "v${version}"; 22 - hash = "sha256-aDUQe4OJtrmZ9RXvNkS4lDne5fKzrzNm003ElA+IF5U="; 22 + hash = "sha256-sgAcrW5TpiCjnouvpYwo26eJ1Cfe7XPWNeWG8/59wSQ="; 23 23 }; 24 24 25 25 vendorHash = null;
-80
pkgs/by-name/gu/guile-git/0001-structs-Omit-free-field-from-config-entry-on-libgit2.patch
··· 1 - From cc70ed70b19a712babd834806d6fc700b20c020a Mon Sep 17 00:00:00 2001 2 - From: Emily <hello@emily.moe> 3 - Date: Wed, 22 Jan 2025 23:25:51 +0000 4 - Subject: [PATCH 1/2] =?UTF-8?q?structs:=20Omit=20=E2=80=98free=E2=80=99=20?= 5 - =?UTF-8?q?field=20from=20=E2=80=98%config-entry=E2=80=99=20on=20libgit2?= 6 - =?UTF-8?q?=201.9+.?= 7 - MIME-Version: 1.0 8 - Content-Type: text/plain; charset=UTF-8 9 - Content-Transfer-Encoding: 8bit 10 - 11 - * configure.ac: Check for the ‘free’ field of ‘git_config_entry’. 12 - * git/configuration.scm.in (%have-config-entry-free?): New variable. 13 - * git/structs.scm (%config-entry): Omit ‘free’ field conditionally. 14 - --- 15 - configure.ac | 10 ++++++++++ 16 - git/configuration.scm.in | 4 ++++ 17 - git/structs.scm | 4 +++- 18 - 3 files changed, 17 insertions(+), 1 deletion(-) 19 - 20 - diff --git a/configure.ac b/configure.ac 21 - index b04ca6b..7f8f0b9 100644 22 - --- a/configure.ac 23 - +++ b/configure.ac 24 - @@ -87,6 +87,16 @@ else 25 - fi 26 - AC_SUBST([HAVE_CONFIG_ENTRY_BACKEND_TYPE]) 27 - 28 - +dnl Does 'git_config_entry' have 'free'? Removed in 1.9. 29 - +AC_CHECK_MEMBER([git_config_entry.free], [], [], 30 - + [[#include <git2.h>]]) 31 - +if test "x$ac_cv_member_git_config_entry_free" = "xyes"; then 32 - + HAVE_CONFIG_ENTRY_FREE="#true" 33 - +else 34 - + HAVE_CONFIG_ENTRY_FREE="#false" 35 - +fi 36 - +AC_SUBST([HAVE_CONFIG_ENTRY_FREE]) 37 - + 38 - dnl Does 'git_diff_options' have 'oid_type'? It's new in 1.7. 39 - AC_CHECK_MEMBER([git_diff_options.oid_type], [], [], 40 - [[#include <git2.h>]]) 41 - diff --git a/git/configuration.scm.in b/git/configuration.scm.in 42 - index e10b195..864b9ff 100644 43 - --- a/git/configuration.scm.in 44 - +++ b/git/configuration.scm.in 45 - @@ -24,6 +24,7 @@ 46 - %have-fetch-options-depth? 47 - %have-diff-options-oid-type? 48 - %have-config-entry-backend-type? 49 - + %have-config-entry-free? 50 - %have-GIT_OPT_SET_SERVER_CONNECT_TIMEOUT? 51 - %have-GIT_OPT_SET_HOMEDIR? 52 - %have-GIT_OPT_SET_USER_AGENT_PRODUCT?)) 53 - @@ -48,6 +49,9 @@ 54 - (define %have-config-entry-backend-type? 55 - @HAVE_CONFIG_ENTRY_BACKEND_TYPE@) 56 - 57 - +(define %have-config-entry-free? 58 - + @HAVE_CONFIG_ENTRY_FREE@) 59 - + 60 - (define %have-GIT_OPT_SET_SERVER_CONNECT_TIMEOUT? 61 - @HAVE_GIT_OPT_SET_SERVER_CONNECT_TIMEOUT@) 62 - 63 - diff --git a/git/structs.scm b/git/structs.scm 64 - index beebd11..b35ae6d 100644 65 - --- a/git/structs.scm 66 - +++ b/git/structs.scm 67 - @@ -505,7 +505,9 @@ 68 - '()) 69 - (include-depth ,unsigned-int) 70 - (level ,int) ;git_config_level_t 71 - - (free ,(bs:pointer int)) 72 - + ,@(if %have-config-entry-free? 73 - + `(free ,(bs:pointer int)) 74 - + '()) 75 - ,@(if %have-config-entry-backend-type? 76 - '() 77 - `((payload ,(bs:pointer int))))))) ;removed in 1.8 78 - -- 79 - 2.47.0 80 -
-84
pkgs/by-name/gu/guile-git/0002-structs-Add-update-refs-field-to-remote-callbacks-on.patch
··· 1 - From 595b850c85f55592b94d2218a12084fd7050b508 Mon Sep 17 00:00:00 2001 2 - From: Emily <hello@emily.moe> 3 - Date: Wed, 22 Jan 2025 23:55:45 +0000 4 - Subject: [PATCH 2/2] =?UTF-8?q?structs:=20Add=20=E2=80=98update-refs?= 5 - =?UTF-8?q?=E2=80=99=20field=20to=20=E2=80=98%remote-callbacks=E2=80=99=20?= 6 - =?UTF-8?q?on=20libgit2=201.9+.?= 7 - MIME-Version: 1.0 8 - Content-Type: text/plain; charset=UTF-8 9 - Content-Transfer-Encoding: 8bit 10 - 11 - * configure.ac: Check for the ‘update_refs’ field of 12 - ‘git_remote_callbacks’. 13 - * git/configuration.scm.in (%have-remote-callbacks-update-refs?): New 14 - variable. 15 - * git/structs.scm (%remote-callbacks): Add ‘update-refs’ field 16 - conditionally. 17 - --- 18 - configure.ac | 10 ++++++++++ 19 - git/configuration.scm.in | 4 ++++ 20 - git/structs.scm | 5 ++++- 21 - 3 files changed, 18 insertions(+), 1 deletion(-) 22 - 23 - diff --git a/configure.ac b/configure.ac 24 - index 7f8f0b9..a2575f4 100644 25 - --- a/configure.ac 26 - +++ b/configure.ac 27 - @@ -107,6 +107,16 @@ else 28 - fi 29 - AC_SUBST([HAVE_DIFF_OPTIONS_OID_TYPE]) 30 - 31 - +dnl Does 'git_remote_callbacks' have 'update_refs'? New in 1.9. 32 - +AC_CHECK_MEMBER([git_remote_callbacks.update_refs], [], [], 33 - + [[#include <git2.h>]]) 34 - +if test "x$ac_cv_member_git_remote_callbacks_update_refs" = "xyes"; then 35 - + HAVE_REMOTE_CALLBACKS_UPDATE_REFS="#true" 36 - +else 37 - + HAVE_REMOTE_CALLBACKS_UPDATE_REFS="#false" 38 - +fi 39 - +AC_SUBST([HAVE_REMOTE_CALLBACKS_UPDATE_REFS]) 40 - + 41 - dnl 'GIT_OPT_SET_SERVER_CONNECT_TIMEOUT' & co. are new in 1.7. 42 - GUILE_GIT_CHECK_DECLARATION([GIT_OPT_SET_SERVER_CONNECT_TIMEOUT]) 43 - 44 - diff --git a/git/configuration.scm.in b/git/configuration.scm.in 45 - index 864b9ff..1e82c24 100644 46 - --- a/git/configuration.scm.in 47 - +++ b/git/configuration.scm.in 48 - @@ -25,6 +25,7 @@ 49 - %have-diff-options-oid-type? 50 - %have-config-entry-backend-type? 51 - %have-config-entry-free? 52 - + %have-remote-callbacks-update-refs? 53 - %have-GIT_OPT_SET_SERVER_CONNECT_TIMEOUT? 54 - %have-GIT_OPT_SET_HOMEDIR? 55 - %have-GIT_OPT_SET_USER_AGENT_PRODUCT?)) 56 - @@ -52,6 +53,9 @@ 57 - (define %have-config-entry-free? 58 - @HAVE_CONFIG_ENTRY_FREE@) 59 - 60 - +(define %have-remote-callbacks-update-refs? 61 - + @HAVE_REMOTE_CALLBACKS_UPDATE_REFS@) 62 - + 63 - (define %have-GIT_OPT_SET_SERVER_CONNECT_TIMEOUT? 64 - @HAVE_GIT_OPT_SET_SERVER_CONNECT_TIMEOUT@) 65 - 66 - diff --git a/git/structs.scm b/git/structs.scm 67 - index b35ae6d..664a7c1 100644 68 - --- a/git/structs.scm 69 - +++ b/git/structs.scm 70 - @@ -670,7 +670,10 @@ type to 'specified for this to take effect." 71 - (transport ,(bs:pointer uint8)) 72 - (remote-ready ,(bs:pointer void)) 73 - (payload ,(bs:pointer uint8)) 74 - - (resolve-url ,(bs:pointer uint8))))) 75 - + (resolve-url ,(bs:pointer uint8)) 76 - + ,@(if %have-remote-callbacks-update-refs? 77 - + `((update-refs ,(bs:pointer uint8))) 78 - + '())))) 79 - 80 - (define-record-type <remote-callbacks> 81 - (%make-remote-callbacks bytestructure) 82 - -- 83 - 2.47.0 84 -
+8 -13
pkgs/by-name/gu/guile-git/package.nix
··· 10 10 texinfo, 11 11 }: 12 12 13 - stdenv.mkDerivation rec { 13 + stdenv.mkDerivation (finalAttrs: { 14 14 pname = "guile-git"; 15 - version = "0.9.0"; 15 + version = "0.10.0"; 16 16 17 17 src = fetchFromGitLab { 18 18 owner = "guile-git"; 19 19 repo = "guile-git"; 20 - rev = "v${version}"; 21 - hash = "sha256-lFBoA1VBJRHcZkP3h2gnlXQrMjDFWS4jl9RlF8VVf/Q="; 20 + tag = "v${finalAttrs.version}"; 21 + hash = "sha256-ihKpEnng6Uemrguecbd25vElEhIu2Efb86aM8679TAc="; 22 22 }; 23 - 24 - patches = [ 25 - ./0001-structs-Omit-free-field-from-config-entry-on-libgit2.patch 26 - ./0002-structs-Add-update-refs-field-to-remote-callbacks-on.patch 27 - ]; 28 23 29 24 strictDeps = true; 30 25 nativeBuildInputs = [ ··· 52 47 53 48 __darwinAllowLocalNetworking = true; 54 49 55 - meta = with lib; { 50 + meta = { 56 51 description = "Bindings to Libgit2 for GNU Guile"; 57 52 homepage = "https://gitlab.com/guile-git/guile-git"; 58 - license = licenses.gpl3Plus; 59 - maintainers = with maintainers; [ ethancedwards8 ]; 53 + license = lib.licenses.gpl3Plus; 54 + maintainers = with lib.maintainers; [ ethancedwards8 ]; 60 55 platforms = guile.meta.platforms; 61 56 }; 62 - } 57 + })
+5 -5
pkgs/by-name/ha/hamrs-pro/package.nix
··· 8 8 9 9 let 10 10 pname = "hamrs-pro"; 11 - version = "2.40.0"; 11 + version = "2.41.1"; 12 12 13 13 throwSystem = throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"; 14 14 15 15 srcs = { 16 16 x86_64-linux = fetchurl { 17 17 url = "https://hamrs-dist.s3.amazonaws.com/hamrs-pro-${version}-linux-x86_64.AppImage"; 18 - hash = "sha256-DUqaF8DQu+iSpC6nnHT7l7kurN/L9yAhKOF47khkoDw="; 18 + hash = "sha256-HJXuxqIZU1dHf+ABb4rXnQkbQ1x7khpYiYq+0/HKZTs="; 19 19 }; 20 20 21 21 aarch64-linux = fetchurl { 22 22 url = "https://hamrs-dist.s3.amazonaws.com/hamrs-pro-${version}-linux-arm64.AppImage"; 23 - hash = "sha256-YloMNPvtprJzQ5/w0I9n7DtQLqyuzgVnQ60Yf6ueOjk="; 23 + hash = "sha256-pgMXAlOKxxzxJHMfM1fSfwmdKq2K1o7UVBQdeAwEIKE="; 24 24 }; 25 25 26 26 x86_64-darwin = fetchurl { 27 27 url = "https://hamrs-dist.s3.amazonaws.com/hamrs-pro-${version}-mac-x64.dmg"; 28 - hash = "sha256-wgCXf6vTWZtlRjZCJYb5xYuWk7bpqiCDxVCTWR2ASxc="; 28 + hash = "sha256-kIvw18jvZCBJqdIL9fikSpKmZw+NDqFhCNvEO9gkvMA="; 29 29 }; 30 30 31 31 aarch64-darwin = fetchurl { 32 32 url = "https://hamrs-dist.s3.amazonaws.com/hamrs-pro-${version}-mac-arm64.dmg"; 33 - hash = "sha256-WOWIjeQtOGwpa/vR8n/irzU491C5sb0VUKn1vBckpvs="; 33 + hash = "sha256-+zMXF8p/KcJrMbeFF2uHLBpqEmUtzN9rNVBD8+h1PG0="; 34 34 }; 35 35 }; 36 36
+2 -2
pkgs/by-name/lu/luau-lsp/package.nix
··· 9 9 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "luau-lsp"; 12 - version = "1.49.1"; 12 + version = "1.52.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "JohnnyMorganz"; 16 16 repo = "luau-lsp"; 17 17 tag = finalAttrs.version; 18 - hash = "sha256-CRfDJXAgofDV9yeF0C91rTLVVa+cqBvqbzlR90AYfVU="; 18 + hash = "sha256-ndHzpENa2VldaLLs9F8mgw+Ra7TQmEki12fTwpiqsEU="; 19 19 fetchSubmodules = true; 20 20 }; 21 21
+3 -1
pkgs/by-name/no/notion-app/package.nix
··· 5 5 unzip, 6 6 }: 7 7 let 8 - info = (lib.importJSON ./info.json)."${stdenvNoCC.hostPlatform.parsed.cpu.name}-darwin"; 8 + info = 9 + (lib.importJSON ./info.json)."${stdenvNoCC.hostPlatform.parsed.cpu.name}-darwin" 10 + or (throw "Unsupported CPU architecture: ${stdenvNoCC.hostPlatform.parsed.cpu.name}"); 9 11 in 10 12 stdenvNoCC.mkDerivation (finalAttrs: { 11 13 pname = "notion-app";
+3 -3
pkgs/by-name/qi/qir-runner/package.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "qir-runner"; 14 - version = "0.8.2"; 14 + version = "0.8.3"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "qir-alliance"; 18 18 repo = "qir-runner"; 19 19 tag = "v${version}"; 20 - hash = "sha256-KskBPvRlTw4ITuoAXyY+CyFfgTW0RtbLWDa97ftFOTA="; 20 + hash = "sha256-k93I/DE8Jx0DbloBVNhKKay/L26H5TPX5yvkHKe/yBg="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ llvmPackages_19.llvm ]; ··· 28 28 ]; 29 29 30 30 useFetchCargoVendor = true; 31 - cargoHash = "sha256-3Ww5PEvk1CqiJTqEUdinmcAfcHLQjctrlM4F3BPBWQw="; 31 + cargoHash = "sha256-U/9oDOPhlSL1ViW1n5C4MWRvUvU4c/cuATLNIx7FkiM="; 32 32 33 33 meta = { 34 34 description = "QIR bytecode runner to assist with QIR development and validation";
+3 -3
pkgs/by-name/ty/typstyle/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage (finalAttrs: { 10 10 pname = "typstyle"; 11 - version = "0.13.13"; 11 + version = "0.13.14"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "typstyle-rs"; 15 15 repo = "typstyle"; 16 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-IAKCwKekeFekHBjfdC4pi74SXJzCDFoby3n1Z0Pu5q4="; 17 + hash = "sha256-rIbLYV4f+XaEkyIFkJL1Biwg+TnjHi7e9kvIlroiNNA="; 18 18 }; 19 19 20 20 useFetchCargoVendor = true; 21 - cargoHash = "sha256-7TkL/bYcTFAPvr4gu5XPxcJdIuwpTyZ6aOEj/YB9F4I="; 21 + cargoHash = "sha256-YRsCuGvfSAUz0qsETIUcTKIchdkvleP3xJy0Hz+2BM0="; 22 22 23 23 # Disabling tests requiring network access 24 24 checkFlags = [
+2 -2
pkgs/by-name/un/unstructured-api/package.nix
··· 144 144 ++ google-api-core.optional-dependencies.grpc 145 145 ++ unstructured.optional-dependencies.all-docs 146 146 ); 147 - version = "0.0.87"; 147 + version = "0.0.89"; 148 148 unstructured_api_nltk_data = python3.pkgs.nltk.dataDir (d: [ 149 149 d.punkt 150 150 d.averaged-perceptron-tagger ··· 158 158 owner = "Unstructured-IO"; 159 159 repo = "unstructured-api"; 160 160 rev = version; 161 - hash = "sha256-yb5m62OJWAGTwQBzCRGfeRc6/BCqGiYKYgdG/cslzgs="; 161 + hash = "sha256-FxWOR13wZwowZny2t4Frwl+cLMv+6nkHxQm9Xc4Y9Kw="; 162 162 }; 163 163 164 164 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/by-name/ux/uxplay/package.nix
··· 15 15 16 16 stdenv.mkDerivation (finalAttrs: { 17 17 pname = "uxplay"; 18 - version = "1.72.1"; 18 + version = "1.72.2"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "FDH2"; 22 22 repo = "UxPlay"; 23 23 rev = "v${finalAttrs.version}"; 24 - hash = "sha256-qb4wsVPdT4rRQxHjLnft0C1D41IhA7M0ZqiLL65r3Ns="; 24 + hash = "sha256-xXYaaLYOlFoPObYOnBnj1LghTRaCSsOvQ7d019gyx9c="; 25 25 }; 26 26 27 27 postPatch = ''
+3 -1
pkgs/by-name/wk/wkhtmltopdf/package.nix
··· 124 124 }; 125 125 } 126 126 // lib.optionalAttrs (stdenv.hostPlatform.isDarwin) darwinAttrs 127 - // lib.optionalAttrs (stdenv.hostPlatform.isLinux) linuxAttrs.${stdenv.system} 127 + // 128 + lib.optionalAttrs (stdenv.hostPlatform.isLinux) 129 + linuxAttrs.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}") 128 130 )
+2 -2
pkgs/by-name/wx/wxGTK32/package.nix
··· 47 47 in 48 48 stdenv.mkDerivation rec { 49 49 pname = "wxwidgets"; 50 - version = "3.2.7.1"; 50 + version = "3.2.8.1"; 51 51 52 52 src = fetchFromGitHub { 53 53 owner = "wxWidgets"; 54 54 repo = "wxWidgets"; 55 55 rev = "v${version}"; 56 - hash = "sha256-CKU0Aa78YrtGKLE9/MF9VNc2fmzPZ1j4lviX1aAv9cQ="; 56 + hash = "sha256-aXI59oN5qqds6u2/6MI7BYLbFPy3Yrfn2FGTfxlPG7o="; 57 57 }; 58 58 59 59 nativeBuildInputs = [ pkg-config ];
+3 -1
pkgs/by-name/ze/zenn-cli/package.nix
··· 24 24 go-turbo = stdenv.mkDerivation { 25 25 pname = "go-turbo"; 26 26 version = go-turbo-version; 27 - src = go-turbo-srcs.${stdenv.hostPlatform.system}; 27 + src = 28 + go-turbo-srcs.${stdenv.hostPlatform.system} 29 + or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 28 30 nativeBuildInputs = [ autoPatchelfHook ]; 29 31 dontBuild = true; 30 32 installPhase = ''
+1
pkgs/development/compilers/swift/compiler/default.nix
··· 484 484 "aarch64" = "AArch64"; 485 485 } 486 486 .${targetPlatform.parsed.cpu.name} 487 + or (throw "Unsupported CPU architecture: ${targetPlatform.parsed.cpu.name}") 487 488 } 488 489 " 489 490 buildProject llvm llvm-project/llvm
+8 -12
pkgs/development/python-modules/chart-studio/default.nix
··· 10 10 pytestCheckHook, 11 11 }: 12 12 13 - buildPythonPackage rec { 13 + buildPythonPackage { 14 14 pname = "chart-studio"; 15 - version = "1.1.0-unstable-2024-07-23"; 15 + version = "1.1.0-unstable-2025-01-30"; 16 16 pyproject = true; 17 17 18 - # chart-studio was split from plotly 19 18 src = fetchFromGitHub { 20 19 owner = "plotly"; 21 - repo = "plotly.py"; 22 - # We use plotly's upstream version as it's the same repo, but chart studio has its own version number. 23 - rev = "v5.23.0"; 24 - hash = "sha256-K1hEs00AGBCe2fgytyPNWqE5M0jU5ESTzynP55kc05Y="; 20 + repo = "chart-studio"; 21 + rev = "44c7c43be0fe7e031ec281c86ee7dae0efa0619e"; 22 + hash = "sha256-RekcZzUcunIqXOSriW+RvpLdvATQWTeRAiR8LFodfQg="; 25 23 }; 26 - 27 - sourceRoot = "${src.name}/packages/python/chart-studio"; 28 24 29 25 build-system = [ setuptools ]; 30 26 ··· 36 32 37 33 nativeCheckInputs = [ 38 34 mock 35 + plotly 39 36 pytestCheckHook 40 37 ]; 41 38 ··· 46 43 # most tests talk to a network service, so only run ones that don't do that. 47 44 enabledTestPaths = [ 48 45 "chart_studio/tests/test_core" 49 - "chart_studio/tests/test_plot_ly/test_api" 50 46 ]; 51 47 52 48 meta = { 53 49 description = "Utilities for interfacing with Plotly's Chart Studio service"; 54 - homepage = "https://github.com/plotly/plotly.py/tree/master/packages/python/chart-studio"; 50 + homepage = "https://github.com/plotly/chart-studio"; 55 51 license = with lib.licenses; [ mit ]; 56 - maintainers = [ ]; 52 + maintainers = with lib.maintainers; [ sarahec ]; 57 53 }; 58 54 }
+2
pkgs/development/python-modules/cx-freeze/default.nix
··· 55 55 56 56 buildInputs = [ ncurses ]; 57 57 58 + pythonRelaxDeps = [ "setuptools" ]; 59 + 58 60 pythonRemoveDeps = [ "patchelf" ]; 59 61 60 62 dependencies =
+2 -2
pkgs/development/python-modules/huggingface-hub/default.nix
··· 40 40 41 41 buildPythonPackage rec { 42 42 pname = "huggingface-hub"; 43 - version = "0.33.2"; 43 + version = "0.33.4"; 44 44 pyproject = true; 45 45 46 46 src = fetchFromGitHub { 47 47 owner = "huggingface"; 48 48 repo = "huggingface_hub"; 49 49 tag = "v${version}"; 50 - hash = "sha256-Com5lLcQqIPRvsXyqD5S3SW/1KmKEc85Rjxyc9iG5SY="; 50 + hash = "sha256-AYTK/PO4fcG0g3I03Vf8FAbeqegijNMeFDCHCcXASac="; 51 51 }; 52 52 53 53 build-system = [ setuptools ];
+6 -3
pkgs/development/python-modules/llama-cpp-python/default.nix
··· 39 39 in 40 40 buildPythonPackage rec { 41 41 pname = "llama-cpp-python"; 42 - version = "0.3.9"; 42 + version = "0.3.12"; 43 43 pyproject = true; 44 44 45 45 src = fetchFromGitHub { 46 46 owner = "abetlen"; 47 47 repo = "llama-cpp-python"; 48 48 tag = "v${version}"; 49 - hash = "sha256-iw9teWZ612gUNM2Zm5WGdFTq7aNo8QRRIGeHoFpXdfQ="; 49 + hash = "sha256-TTGweGfav1uI2+87iUYc1Esmuor9sEZdZqSU2YVPCdQ="; 50 50 fetchSubmodules = true; 51 51 }; 52 52 # src = /home/gaetan/llama-cpp-python; ··· 118 118 pythonImportsCheck = [ "llama_cpp" ]; 119 119 120 120 passthru = { 121 - updateScript = gitUpdater { rev-prefix = "v"; }; 121 + updateScript = gitUpdater { 122 + rev-prefix = "v"; 123 + allowedVersions = "^[.0-9]+$"; 124 + }; 122 125 tests = lib.optionalAttrs stdenvTarget.hostPlatform.isLinux { 123 126 withCuda = llama-cpp-python.override { 124 127 cudaSupport = true;
+34 -24
pkgs/development/python-modules/plotly/default.nix
··· 38 38 39 39 buildPythonPackage rec { 40 40 pname = "plotly"; 41 - version = "6.1.2"; 41 + version = "6.2.0"; 42 42 pyproject = true; 43 43 44 44 src = fetchFromGitHub { 45 45 owner = "plotly"; 46 46 repo = "plotly.py"; 47 47 tag = "v${version}"; 48 - hash = "sha256-+vIq//pDLaaTmRGW+oytho3TfMmLCtuIoHeFenLVcek="; 48 + hash = "sha256-Vfj5jG0AkBjivExOx7oMoocTopWl0yMc1INpEbtlgTc="; 49 49 }; 50 50 51 51 postPatch = '' ··· 105 105 106 106 __darwinAllowLocalNetworking = true; 107 107 108 - disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ 109 - # fails to launch kaleido subprocess 110 - "tests/test_optional/test_kaleido" 111 - # numpy2 related error, RecursionError 112 - # See: https://github.com/plotly/plotly.py/issues/4852 113 - "tests/test_plotly_utils/validators/test_angle_validator.py" 114 - "tests/test_plotly_utils/validators/test_any_validator.py" 115 - "tests/test_plotly_utils/validators/test_color_validator.py" 116 - "tests/test_plotly_utils/validators/test_colorlist_validator.py" 117 - "tests/test_plotly_utils/validators/test_colorscale_validator.py" 118 - "tests/test_plotly_utils/validators/test_dataarray_validator.py" 119 - "tests/test_plotly_utils/validators/test_enumerated_validator.py" 120 - "tests/test_plotly_utils/validators/test_fig_deepcopy.py" 121 - "tests/test_plotly_utils/validators/test_flaglist_validator.py" 122 - "tests/test_plotly_utils/validators/test_infoarray_validator.py" 123 - "tests/test_plotly_utils/validators/test_integer_validator.py" 124 - "tests/test_plotly_utils/validators/test_number_validator.py" 125 - "tests/test_plotly_utils/validators/test_pandas_series_input.py" 126 - "tests/test_plotly_utils/validators/test_string_validator.py" 127 - "tests/test_plotly_utils/validators/test_xarray_input.py" 128 - ]; 108 + disabledTestPaths = 109 + [ 110 + # Broken imports 111 + "plotly/matplotlylib/mplexporter/tests" 112 + # Fails to catch error when serializing document 113 + "tests/test_optional/test_kaleido/test_kaleido.py::test_defaults" 114 + ] 115 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 116 + # fails to launch kaleido subprocess 117 + "tests/test_optional/test_kaleido" 118 + # numpy2 related error, RecursionError 119 + # See: https://github.com/plotly/plotly.py/issues/4852 120 + "tests/test_plotly_utils/validators/test_angle_validator.py" 121 + "tests/test_plotly_utils/validators/test_any_validator.py" 122 + "tests/test_plotly_utils/validators/test_color_validator.py" 123 + "tests/test_plotly_utils/validators/test_colorlist_validator.py" 124 + "tests/test_plotly_utils/validators/test_colorscale_validator.py" 125 + "tests/test_plotly_utils/validators/test_dataarray_validator.py" 126 + "tests/test_plotly_utils/validators/test_enumerated_validator.py" 127 + "tests/test_plotly_utils/validators/test_fig_deepcopy.py" 128 + "tests/test_plotly_utils/validators/test_flaglist_validator.py" 129 + "tests/test_plotly_utils/validators/test_infoarray_validator.py" 130 + "tests/test_plotly_utils/validators/test_integer_validator.py" 131 + "tests/test_plotly_utils/validators/test_number_validator.py" 132 + "tests/test_plotly_utils/validators/test_pandas_series_input.py" 133 + "tests/test_plotly_utils/validators/test_string_validator.py" 134 + "tests/test_plotly_utils/validators/test_xarray_input.py" 135 + ]; 129 136 130 137 pythonImportsCheck = [ "plotly" ]; 131 138 ··· 135 142 downloadPage = "https://github.com/plotly/plotly.py"; 136 143 changelog = "https://github.com/plotly/plotly.py/blob/master/CHANGELOG.md"; 137 144 license = lib.licenses.mit; 138 - maintainers = with lib.maintainers; [ pandapip1 ]; 145 + maintainers = with lib.maintainers; [ 146 + pandapip1 147 + sarahec 148 + ]; 139 149 }; 140 150 }
+2 -2
pkgs/development/python-modules/pymilvus/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "pymilvus"; 26 - version = "2.5.11"; 26 + version = "2.5.12"; 27 27 pyproject = true; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "milvus-io"; 31 31 repo = "pymilvus"; 32 32 tag = "v${version}"; 33 - hash = "sha256-O8037LYuR6PX57s78OawPFyPrIi0ZFRX2vV3lC+wT0I="; 33 + hash = "sha256-IazZ/Cuy37k/gqLvM/2zqpx2IoL9uoWmiGtMWaTINg4="; 34 34 }; 35 35 36 36 build-system = [
+2 -2
pkgs/development/python-modules/transformers/default.nix
··· 59 59 60 60 buildPythonPackage rec { 61 61 pname = "transformers"; 62 - version = "4.53.1"; 62 + version = "4.53.2"; 63 63 pyproject = true; 64 64 65 65 src = fetchFromGitHub { 66 66 owner = "huggingface"; 67 67 repo = "transformers"; 68 68 tag = "v${version}"; 69 - hash = "sha256-u9/wxvAJcLl4n7Netf1MZqRS3fajRWZAgciFSsXpZ9s="; 69 + hash = "sha256-uipCL3xY8+thCA9+zVop5+MZr4pY4UVB7uEHa4hzLYo="; 70 70 }; 71 71 72 72 build-system = [ setuptools ];
+5 -2
pkgs/development/python-modules/tritonclient/default.nix
··· 35 35 inherit pname version format; 36 36 python = "py3"; 37 37 dist = "py3"; 38 - platform = platforms.${stdenv.hostPlatform.system} or { }; 39 - sha256 = hashes.${stdenv.hostPlatform.system} or { }; 38 + platform = 39 + platforms.${stdenv.hostPlatform.system} 40 + or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 41 + sha256 = 42 + hashes.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 40 43 }; 41 44 42 45 propagatedBuildInputs = [
+3 -1
pkgs/development/python-modules/vl-convert-python/librusty_v8.nix
··· 10 10 fetchurl { 11 11 name = "librusty_v8-${args.version}"; 12 12 url = "https://github.com/denoland/rusty_v8/releases/download/v${args.version}/librusty_v8_release_${stdenv.hostPlatform.rust.rustcTarget}.a.gz"; 13 - sha256 = args.shas.${stdenv.hostPlatform.system}; 13 + sha256 = 14 + args.shas.${stdenv.hostPlatform.system} 15 + or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 14 16 meta = { 15 17 inherit (args) version; 16 18 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
+24 -10
pkgs/development/python-modules/wandb/default.nix
··· 279 279 "--timeout=1024" 280 280 ]; 281 281 282 - disabledTestPaths = [ 283 - # Require docker access 284 - "tests/system_tests" 282 + disabledTestPaths = 283 + [ 284 + # Require docker access 285 + "tests/system_tests" 285 286 286 - # broke somewhere between sentry-sdk 2.15.0 and 2.22.0 287 - "tests/unit_tests/test_analytics/test_sentry.py" 287 + # broke somewhere between sentry-sdk 2.15.0 and 2.22.0 288 + "tests/unit_tests/test_analytics/test_sentry.py" 288 289 289 - # Server connection times out under load 290 - "tests/unit_tests/test_wandb_login.py" 290 + # Server connection times out under load 291 + "tests/unit_tests/test_wandb_login.py" 291 292 292 - # PermissionError: unable to write to .cache/wandb/artifacts 293 - "tests/unit_tests/test_artifacts/test_wandb_artifacts.py" 294 - ]; 293 + # PermissionError: unable to write to .cache/wandb/artifacts 294 + "tests/unit_tests/test_artifacts/test_wandb_artifacts.py" 295 + ] 296 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 297 + # Breaks in sandbox: "Timed out waiting for wandb service to start" 298 + "tests/unit_tests/test_job_builder.py" 299 + ]; 295 300 296 301 disabledTests = 297 302 [ ··· 391 396 392 397 # RuntimeError: *** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[1] 393 398 "test_wandb_image_with_matplotlib_figure" 399 + 400 + # AssertionError: assert 'did you mean https://api.wandb.ai' in '1' 401 + "test_login_bad_host" 402 + 403 + # Asserttion error: 1 != 0 (testing system exit code) 404 + "test_login_host_trailing_slash_fix_invalid" 405 + 406 + # Breaks in sandbox: "Timed out waiting for wandb service to start" 407 + "test_setup_offline" 394 408 ]; 395 409 396 410 pythonImportsCheck = [ "wandb" ];
+1
pkgs/development/rocm-modules/6/llvm/default.nix
··· 170 170 "aarch64" = "AArch64"; 171 171 } 172 172 .${llvmStdenv.targetPlatform.parsed.cpu.name} 173 + or (throw "Unsupported CPU architecture: ${llvmStdenv.targetPlatform.parsed.cpu.name}") 173 174 }"; 174 175 # -ffat-lto-objects = emit LTO object files that are compatible with non-LTO-supporting builds too 175 176 # FatLTO objects are a special type of fat object file that contain LTO compatible IR in addition to generated object code,
+1
pkgs/top-level/aliases.nix
··· 532 532 deadpixi-sam = deadpixi-sam-unstable; 533 533 534 534 debugedit-unstable = throw "'debugedit-unstable' has been renamed to/replaced by 'debugedit'"; # Converted to throw 2024-10-17 535 + degit-rs = throw "'degit-rs' has been removed because it is unmaintained upstream and has vulnerable dependencies."; # Added 2025-07-11 535 536 deltachat-cursed = arcanechat-tui; # added 2025-02-25 536 537 deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2024-10-17 537 538
+2
pkgs/top-level/all-packages.nix
··· 1387 1387 pkgsCross.gnu32.callPackage ../applications/emulators/box86 args 1388 1388 else if stdenv.hostPlatform.isAarch64 then 1389 1389 pkgsCross.armv7l-hf-multiplatform.callPackage ../applications/emulators/box86 args 1390 + else if stdenv.hostPlatform.isRiscV64 then 1391 + pkgsCross.riscv32.callPackage ../applications/emulators/box86 args 1390 1392 else 1391 1393 throw "Don't know 32-bit platform for cross from: ${stdenv.hostPlatform.stdenv}"; 1392 1394
+2 -2
pkgs/top-level/python-packages.nix
··· 10657 10657 10658 10658 openai = callPackage ../development/python-modules/openai { }; 10659 10659 10660 + openai-agents = callPackage ../development/python-modules/openai-agents { }; 10661 + 10660 10662 openai-whisper = callPackage ../development/python-modules/openai-whisper { }; 10661 10663 10662 10664 openaiauth = callPackage ../development/python-modules/openaiauth { }; 10663 - 10664 - openai-agents = callPackage ../development/python-modules/openai-agents { }; 10665 10665 10666 10666 openant = callPackage ../development/python-modules/openant { }; 10667 10667