lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
7735ca98 ae47fafa

+3004 -146
+2 -1
nixos/modules/system/boot/systemd/initrd.nix
··· 103 103 fstab = pkgs.writeText "initrd-fstab" (lib.concatMapStringsSep "\n" 104 104 ({ fsType, mountPoint, device, options, autoFormat, autoResize, ... }@fs: let 105 105 opts = options ++ optional autoFormat "x-systemd.makefs" ++ optional autoResize "x-systemd.growfs"; 106 - in "${device} /sysroot${mountPoint} ${fsType} ${lib.concatStringsSep "," opts}") fileSystems); 106 + finalDevice = if (lib.elem "bind" options) then "/sysroot${device}" else device; 107 + in "${finalDevice} /sysroot${mountPoint} ${fsType} ${lib.concatStringsSep "," opts}") fileSystems); 107 108 108 109 needMakefs = lib.any (fs: fs.autoFormat) fileSystems; 109 110 needGrowfs = lib.any (fs: fs.autoResize) fileSystems;
+2 -2
pkgs/applications/audio/pipecontrol/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "pipecontrol"; 19 - version = "0.2.2"; 19 + version = "0.2.4"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "portaloffreedom"; 23 23 repo = pname; 24 24 rev = "v${version}"; 25 - sha256 = "sha256-BeubRDx82MQX1gB7GnGJlQ2FyYX1S83C3gqPZgIjgoM="; 25 + sha256 = "sha256-F3faJMkvjAY6A5ieNpAxjk6BHPb6uCvYYfwrI9/Iskg="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+3 -3
pkgs/applications/audio/plexamp/default.nix
··· 2 2 3 3 let 4 4 pname = "plexamp"; 5 - version = "4.2.1"; 5 + version = "4.3.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://plexamp.plex.tv/plexamp.plex.tv/desktop/Plexamp-${version}.AppImage"; 9 9 name="${pname}-${version}.AppImage"; 10 - sha512 = "S2/T+T24X6D0oTbGPMp2BVfWTvzsUCWS1xsigLT/vFr12PlZgPfOWgo987W3YE30WJJDdybLqnkTl+uhNndC+A=="; 10 + sha512 = "c9d2rp7tibb73tZdoFONW7eoy+u+GaUZ0RPhYWCBk5MYwtY81xrsdka64x60xzxOopWZ6JkmGs9AWI1XifqBTQ=="; 11 11 }; 12 12 13 13 appimageContents = appimageTools.extractType2 { ··· 33 33 meta = with lib; { 34 34 description = "A beautiful Plex music player for audiophiles, curators, and hipsters"; 35 35 homepage = "https://plexamp.com/"; 36 - changelog = "https://forums.plex.tv/t/plexamp-release-notes/221280/44"; 36 + changelog = "https://forums.plex.tv/t/plexamp-release-notes/221280/45"; 37 37 license = licenses.unfree; 38 38 maintainers = with maintainers; [ killercup synthetica ]; 39 39 platforms = [ "x86_64-linux" ];
+2 -2
pkgs/applications/misc/usql/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "usql"; 10 - version = "0.11.12"; 10 + version = "0.12.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "xo"; 14 14 repo = "usql"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-0uXcCwMIhr+8snH3HqQ+ZXtTrYD6ufCTVaZPi1+RwUw="; 16 + sha256 = "sha256-OOu3zWK/ccmaEVriXKl7SZUJLLYaJB3tgF+eR9p+TmM="; 17 17 }; 18 18 19 19 vendorSha256 = "sha256-9XyG0Fu3idxGG01MoBr5BMoQSz+dyZFEXRNvvb+XWjA=";
+2722
pkgs/applications/misc/zine/Cargo.lock.patch
··· 1 + +++ a/Cargo.lock 2022-08-05 16:01:20.004065609 +0530 2 + +++ b/Cargo.lock 2022-08-05 16:01:20.004065609 +0530 3 + @@ -0,0 +1,2719 @@ 4 + +# This file is automatically @generated by Cargo. 5 + +# It is not intended for manual editing. 6 + +version = 3 7 + + 8 + +[[package]] 9 + +name = "addr2line" 10 + +version = "0.17.0" 11 + +source = "registry+https://github.com/rust-lang/crates.io-index" 12 + +checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" 13 + +dependencies = [ 14 + + "gimli", 15 + +] 16 + + 17 + +[[package]] 18 + +name = "adler" 19 + +version = "1.0.2" 20 + +source = "registry+https://github.com/rust-lang/crates.io-index" 21 + +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 22 + + 23 + +[[package]] 24 + +name = "ahash" 25 + +version = "0.7.6" 26 + +source = "registry+https://github.com/rust-lang/crates.io-index" 27 + +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 28 + +dependencies = [ 29 + + "getrandom 0.2.7", 30 + + "once_cell", 31 + + "version_check", 32 + +] 33 + + 34 + +[[package]] 35 + +name = "aho-corasick" 36 + +version = "0.7.18" 37 + +source = "registry+https://github.com/rust-lang/crates.io-index" 38 + +checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 39 + +dependencies = [ 40 + + "memchr", 41 + +] 42 + + 43 + +[[package]] 44 + +name = "anyhow" 45 + +version = "1.0.59" 46 + +source = "registry+https://github.com/rust-lang/crates.io-index" 47 + +checksum = "c91f1f46651137be86f3a2b9a8359f9ab421d04d941c62b5982e1ca21113adf9" 48 + +dependencies = [ 49 + + "backtrace", 50 + +] 51 + + 52 + +[[package]] 53 + +name = "autocfg" 54 + +version = "1.1.0" 55 + +source = "registry+https://github.com/rust-lang/crates.io-index" 56 + +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 57 + + 58 + +[[package]] 59 + +name = "backtrace" 60 + +version = "0.3.66" 61 + +source = "registry+https://github.com/rust-lang/crates.io-index" 62 + +checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" 63 + +dependencies = [ 64 + + "addr2line", 65 + + "cc", 66 + + "cfg-if 1.0.0", 67 + + "libc", 68 + + "miniz_oxide", 69 + + "object", 70 + + "rustc-demangle", 71 + +] 72 + + 73 + +[[package]] 74 + +name = "base64" 75 + +version = "0.13.0" 76 + +source = "registry+https://github.com/rust-lang/crates.io-index" 77 + +checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 78 + + 79 + +[[package]] 80 + +name = "bincode" 81 + +version = "1.3.3" 82 + +source = "registry+https://github.com/rust-lang/crates.io-index" 83 + +checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 84 + +dependencies = [ 85 + + "serde", 86 + +] 87 + + 88 + +[[package]] 89 + +name = "bit-set" 90 + +version = "0.5.3" 91 + +source = "registry+https://github.com/rust-lang/crates.io-index" 92 + +checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 93 + +dependencies = [ 94 + + "bit-vec", 95 + +] 96 + + 97 + +[[package]] 98 + +name = "bit-vec" 99 + +version = "0.6.3" 100 + +source = "registry+https://github.com/rust-lang/crates.io-index" 101 + +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 102 + + 103 + +[[package]] 104 + +name = "bitflags" 105 + +version = "1.3.2" 106 + +source = "registry+https://github.com/rust-lang/crates.io-index" 107 + +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 108 + + 109 + +[[package]] 110 + +name = "block-buffer" 111 + +version = "0.10.2" 112 + +source = "registry+https://github.com/rust-lang/crates.io-index" 113 + +checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324" 114 + +dependencies = [ 115 + + "generic-array", 116 + +] 117 + + 118 + +[[package]] 119 + +name = "bstr" 120 + +version = "0.2.17" 121 + +source = "registry+https://github.com/rust-lang/crates.io-index" 122 + +checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 123 + +dependencies = [ 124 + + "memchr", 125 + +] 126 + + 127 + +[[package]] 128 + +name = "bumpalo" 129 + +version = "3.10.0" 130 + +source = "registry+https://github.com/rust-lang/crates.io-index" 131 + +checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3" 132 + + 133 + +[[package]] 134 + +name = "byteorder" 135 + +version = "1.4.3" 136 + +source = "registry+https://github.com/rust-lang/crates.io-index" 137 + +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 138 + + 139 + +[[package]] 140 + +name = "bytes" 141 + +version = "1.2.1" 142 + +source = "registry+https://github.com/rust-lang/crates.io-index" 143 + +checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" 144 + + 145 + +[[package]] 146 + +name = "cc" 147 + +version = "1.0.73" 148 + +source = "registry+https://github.com/rust-lang/crates.io-index" 149 + +checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 150 + + 151 + +[[package]] 152 + +name = "cfg-if" 153 + +version = "0.1.10" 154 + +source = "registry+https://github.com/rust-lang/crates.io-index" 155 + +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 156 + + 157 + +[[package]] 158 + +name = "cfg-if" 159 + +version = "1.0.0" 160 + +source = "registry+https://github.com/rust-lang/crates.io-index" 161 + +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 162 + + 163 + +[[package]] 164 + +name = "chrono" 165 + +version = "0.4.20" 166 + +source = "registry+https://github.com/rust-lang/crates.io-index" 167 + +checksum = "6127248204b9aba09a362f6c930ef6a78f2c1b2215f8a7b398c06e1083f17af0" 168 + +dependencies = [ 169 + + "js-sys", 170 + + "num-integer", 171 + + "num-traits", 172 + + "wasm-bindgen", 173 + + "winapi 0.3.9", 174 + +] 175 + + 176 + +[[package]] 177 + +name = "chrono-tz" 178 + +version = "0.6.3" 179 + +source = "registry+https://github.com/rust-lang/crates.io-index" 180 + +checksum = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde" 181 + +dependencies = [ 182 + + "chrono", 183 + + "chrono-tz-build", 184 + + "phf 0.11.0", 185 + +] 186 + + 187 + +[[package]] 188 + +name = "chrono-tz-build" 189 + +version = "0.0.3" 190 + +source = "registry+https://github.com/rust-lang/crates.io-index" 191 + +checksum = "6f509c3a87b33437b05e2458750a0700e5bdd6956176773e6c7d6dd15a283a0c" 192 + +dependencies = [ 193 + + "parse-zoneinfo", 194 + + "phf 0.11.0", 195 + + "phf_codegen 0.11.0", 196 + +] 197 + + 198 + +[[package]] 199 + +name = "clap" 200 + +version = "3.2.16" 201 + +source = "registry+https://github.com/rust-lang/crates.io-index" 202 + +checksum = "a3dbbb6653e7c55cc8595ad3e1f7be8f32aba4eb7ff7f0fd1163d4f3d137c0a9" 203 + +dependencies = [ 204 + + "bitflags", 205 + + "clap_derive", 206 + + "clap_lex", 207 + + "indexmap", 208 + + "once_cell", 209 + + "textwrap", 210 + +] 211 + + 212 + +[[package]] 213 + +name = "clap_derive" 214 + +version = "3.2.15" 215 + +source = "registry+https://github.com/rust-lang/crates.io-index" 216 + +checksum = "9ba52acd3b0a5c33aeada5cdaa3267cdc7c594a98731d4268cdc1532f4264cb4" 217 + +dependencies = [ 218 + + "heck", 219 + + "proc-macro-error", 220 + + "proc-macro2", 221 + + "quote", 222 + + "syn", 223 + +] 224 + + 225 + +[[package]] 226 + +name = "clap_lex" 227 + +version = "0.2.4" 228 + +source = "registry+https://github.com/rust-lang/crates.io-index" 229 + +checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 230 + +dependencies = [ 231 + + "os_str_bytes", 232 + +] 233 + + 234 + +[[package]] 235 + +name = "convert_case" 236 + +version = "0.4.0" 237 + +source = "registry+https://github.com/rust-lang/crates.io-index" 238 + +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 239 + + 240 + +[[package]] 241 + +name = "core-foundation" 242 + +version = "0.9.3" 243 + +source = "registry+https://github.com/rust-lang/crates.io-index" 244 + +checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 245 + +dependencies = [ 246 + + "core-foundation-sys", 247 + + "libc", 248 + +] 249 + + 250 + +[[package]] 251 + +name = "core-foundation-sys" 252 + +version = "0.8.3" 253 + +source = "registry+https://github.com/rust-lang/crates.io-index" 254 + +checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 255 + + 256 + +[[package]] 257 + +name = "cpufeatures" 258 + +version = "0.2.2" 259 + +source = "registry+https://github.com/rust-lang/crates.io-index" 260 + +checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b" 261 + +dependencies = [ 262 + + "libc", 263 + +] 264 + + 265 + +[[package]] 266 + +name = "crc32fast" 267 + +version = "1.3.2" 268 + +source = "registry+https://github.com/rust-lang/crates.io-index" 269 + +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 270 + +dependencies = [ 271 + + "cfg-if 1.0.0", 272 + +] 273 + + 274 + +[[package]] 275 + +name = "crossbeam-channel" 276 + +version = "0.5.6" 277 + +source = "registry+https://github.com/rust-lang/crates.io-index" 278 + +checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 279 + +dependencies = [ 280 + + "cfg-if 1.0.0", 281 + + "crossbeam-utils", 282 + +] 283 + + 284 + +[[package]] 285 + +name = "crossbeam-deque" 286 + +version = "0.8.2" 287 + +source = "registry+https://github.com/rust-lang/crates.io-index" 288 + +checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 289 + +dependencies = [ 290 + + "cfg-if 1.0.0", 291 + + "crossbeam-epoch", 292 + + "crossbeam-utils", 293 + +] 294 + + 295 + +[[package]] 296 + +name = "crossbeam-epoch" 297 + +version = "0.9.10" 298 + +source = "registry+https://github.com/rust-lang/crates.io-index" 299 + +checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1" 300 + +dependencies = [ 301 + + "autocfg", 302 + + "cfg-if 1.0.0", 303 + + "crossbeam-utils", 304 + + "memoffset", 305 + + "once_cell", 306 + + "scopeguard", 307 + +] 308 + + 309 + +[[package]] 310 + +name = "crossbeam-utils" 311 + +version = "0.8.11" 312 + +source = "registry+https://github.com/rust-lang/crates.io-index" 313 + +checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc" 314 + +dependencies = [ 315 + + "cfg-if 1.0.0", 316 + + "once_cell", 317 + +] 318 + + 319 + +[[package]] 320 + +name = "crypto-common" 321 + +version = "0.1.6" 322 + +source = "registry+https://github.com/rust-lang/crates.io-index" 323 + +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 324 + +dependencies = [ 325 + + "generic-array", 326 + + "typenum", 327 + +] 328 + + 329 + +[[package]] 330 + +name = "cssparser" 331 + +version = "0.27.2" 332 + +source = "registry+https://github.com/rust-lang/crates.io-index" 333 + +checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 334 + +dependencies = [ 335 + + "cssparser-macros", 336 + + "dtoa-short", 337 + + "itoa 0.4.8", 338 + + "matches", 339 + + "phf 0.8.0", 340 + + "proc-macro2", 341 + + "quote", 342 + + "smallvec", 343 + + "syn", 344 + +] 345 + + 346 + +[[package]] 347 + +name = "cssparser-macros" 348 + +version = "0.6.0" 349 + +source = "registry+https://github.com/rust-lang/crates.io-index" 350 + +checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 351 + +dependencies = [ 352 + + "quote", 353 + + "syn", 354 + +] 355 + + 356 + +[[package]] 357 + +name = "derive_more" 358 + +version = "0.99.17" 359 + +source = "registry+https://github.com/rust-lang/crates.io-index" 360 + +checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 361 + +dependencies = [ 362 + + "convert_case", 363 + + "proc-macro2", 364 + + "quote", 365 + + "rustc_version", 366 + + "syn", 367 + +] 368 + + 369 + +[[package]] 370 + +name = "deunicode" 371 + +version = "0.4.3" 372 + +source = "registry+https://github.com/rust-lang/crates.io-index" 373 + +checksum = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690" 374 + + 375 + +[[package]] 376 + +name = "digest" 377 + +version = "0.10.3" 378 + +source = "registry+https://github.com/rust-lang/crates.io-index" 379 + +checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 380 + +dependencies = [ 381 + + "block-buffer", 382 + + "crypto-common", 383 + +] 384 + + 385 + +[[package]] 386 + +name = "dtoa" 387 + +version = "0.4.8" 388 + +source = "registry+https://github.com/rust-lang/crates.io-index" 389 + +checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 390 + + 391 + +[[package]] 392 + +name = "dtoa-short" 393 + +version = "0.3.3" 394 + +source = "registry+https://github.com/rust-lang/crates.io-index" 395 + +checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 396 + +dependencies = [ 397 + + "dtoa", 398 + +] 399 + + 400 + +[[package]] 401 + +name = "either" 402 + +version = "1.7.0" 403 + +source = "registry+https://github.com/rust-lang/crates.io-index" 404 + +checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be" 405 + + 406 + +[[package]] 407 + +name = "encoding_rs" 408 + +version = "0.8.31" 409 + +source = "registry+https://github.com/rust-lang/crates.io-index" 410 + +checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 411 + +dependencies = [ 412 + + "cfg-if 1.0.0", 413 + +] 414 + + 415 + +[[package]] 416 + +name = "fancy-regex" 417 + +version = "0.7.1" 418 + +source = "registry+https://github.com/rust-lang/crates.io-index" 419 + +checksum = "9d6b8560a05112eb52f04b00e5d3790c0dd75d9d980eb8a122fb23b92a623ccf" 420 + +dependencies = [ 421 + + "bit-set", 422 + + "regex", 423 + +] 424 + + 425 + +[[package]] 426 + +name = "fastrand" 427 + +version = "1.8.0" 428 + +source = "registry+https://github.com/rust-lang/crates.io-index" 429 + +checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 430 + +dependencies = [ 431 + + "instant", 432 + +] 433 + + 434 + +[[package]] 435 + +name = "filetime" 436 + +version = "0.2.17" 437 + +source = "registry+https://github.com/rust-lang/crates.io-index" 438 + +checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c" 439 + +dependencies = [ 440 + + "cfg-if 1.0.0", 441 + + "libc", 442 + + "redox_syscall", 443 + + "windows-sys", 444 + +] 445 + + 446 + +[[package]] 447 + +name = "flate2" 448 + +version = "1.0.24" 449 + +source = "registry+https://github.com/rust-lang/crates.io-index" 450 + +checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 451 + +dependencies = [ 452 + + "crc32fast", 453 + + "miniz_oxide", 454 + +] 455 + + 456 + +[[package]] 457 + +name = "fluent" 458 + +version = "0.16.0" 459 + +source = "registry+https://github.com/rust-lang/crates.io-index" 460 + +checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7" 461 + +dependencies = [ 462 + + "fluent-bundle", 463 + + "unic-langid", 464 + +] 465 + + 466 + +[[package]] 467 + +name = "fluent-bundle" 468 + +version = "0.15.2" 469 + +source = "registry+https://github.com/rust-lang/crates.io-index" 470 + +checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd" 471 + +dependencies = [ 472 + + "fluent-langneg", 473 + + "fluent-syntax", 474 + + "intl-memoizer", 475 + + "intl_pluralrules", 476 + + "rustc-hash", 477 + + "self_cell", 478 + + "smallvec", 479 + + "unic-langid", 480 + +] 481 + + 482 + +[[package]] 483 + +name = "fluent-langneg" 484 + +version = "0.13.0" 485 + +source = "registry+https://github.com/rust-lang/crates.io-index" 486 + +checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94" 487 + +dependencies = [ 488 + + "unic-langid", 489 + +] 490 + + 491 + +[[package]] 492 + +name = "fluent-syntax" 493 + +version = "0.11.0" 494 + +source = "registry+https://github.com/rust-lang/crates.io-index" 495 + +checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78" 496 + +dependencies = [ 497 + + "thiserror", 498 + +] 499 + + 500 + +[[package]] 501 + +name = "fnv" 502 + +version = "1.0.7" 503 + +source = "registry+https://github.com/rust-lang/crates.io-index" 504 + +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 505 + + 506 + +[[package]] 507 + +name = "foreign-types" 508 + +version = "0.3.2" 509 + +source = "registry+https://github.com/rust-lang/crates.io-index" 510 + +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 511 + +dependencies = [ 512 + + "foreign-types-shared", 513 + +] 514 + + 515 + +[[package]] 516 + +name = "foreign-types-shared" 517 + +version = "0.1.1" 518 + +source = "registry+https://github.com/rust-lang/crates.io-index" 519 + +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 520 + + 521 + +[[package]] 522 + +name = "fsevent" 523 + +version = "0.4.0" 524 + +source = "registry+https://github.com/rust-lang/crates.io-index" 525 + +checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6" 526 + +dependencies = [ 527 + + "bitflags", 528 + + "fsevent-sys", 529 + +] 530 + + 531 + +[[package]] 532 + +name = "fsevent-sys" 533 + +version = "2.0.1" 534 + +source = "registry+https://github.com/rust-lang/crates.io-index" 535 + +checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0" 536 + +dependencies = [ 537 + + "libc", 538 + +] 539 + + 540 + +[[package]] 541 + +name = "fuchsia-zircon" 542 + +version = "0.3.3" 543 + +source = "registry+https://github.com/rust-lang/crates.io-index" 544 + +checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 545 + +dependencies = [ 546 + + "bitflags", 547 + + "fuchsia-zircon-sys", 548 + +] 549 + + 550 + +[[package]] 551 + +name = "fuchsia-zircon-sys" 552 + +version = "0.3.3" 553 + +source = "registry+https://github.com/rust-lang/crates.io-index" 554 + +checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 555 + + 556 + +[[package]] 557 + +name = "futf" 558 + +version = "0.1.5" 559 + +source = "registry+https://github.com/rust-lang/crates.io-index" 560 + +checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 561 + +dependencies = [ 562 + + "mac", 563 + + "new_debug_unreachable", 564 + +] 565 + + 566 + +[[package]] 567 + +name = "futures-channel" 568 + +version = "0.3.21" 569 + +source = "registry+https://github.com/rust-lang/crates.io-index" 570 + +checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" 571 + +dependencies = [ 572 + + "futures-core", 573 + +] 574 + + 575 + +[[package]] 576 + +name = "futures-core" 577 + +version = "0.3.21" 578 + +source = "registry+https://github.com/rust-lang/crates.io-index" 579 + +checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" 580 + + 581 + +[[package]] 582 + +name = "futures-sink" 583 + +version = "0.3.21" 584 + +source = "registry+https://github.com/rust-lang/crates.io-index" 585 + +checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" 586 + + 587 + +[[package]] 588 + +name = "futures-task" 589 + +version = "0.3.21" 590 + +source = "registry+https://github.com/rust-lang/crates.io-index" 591 + +checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" 592 + + 593 + +[[package]] 594 + +name = "futures-util" 595 + +version = "0.3.21" 596 + +source = "registry+https://github.com/rust-lang/crates.io-index" 597 + +checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" 598 + +dependencies = [ 599 + + "futures-core", 600 + + "futures-task", 601 + + "pin-project-lite", 602 + + "pin-utils", 603 + +] 604 + + 605 + +[[package]] 606 + +name = "fxhash" 607 + +version = "0.2.1" 608 + +source = "registry+https://github.com/rust-lang/crates.io-index" 609 + +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 610 + +dependencies = [ 611 + + "byteorder", 612 + +] 613 + + 614 + +[[package]] 615 + +name = "generic-array" 616 + +version = "0.14.6" 617 + +source = "registry+https://github.com/rust-lang/crates.io-index" 618 + +checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 619 + +dependencies = [ 620 + + "typenum", 621 + + "version_check", 622 + +] 623 + + 624 + +[[package]] 625 + +name = "getopts" 626 + +version = "0.2.21" 627 + +source = "registry+https://github.com/rust-lang/crates.io-index" 628 + +checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 629 + +dependencies = [ 630 + + "unicode-width", 631 + +] 632 + + 633 + +[[package]] 634 + +name = "getrandom" 635 + +version = "0.1.16" 636 + +source = "registry+https://github.com/rust-lang/crates.io-index" 637 + +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 638 + +dependencies = [ 639 + + "cfg-if 1.0.0", 640 + + "libc", 641 + + "wasi 0.9.0+wasi-snapshot-preview1", 642 + +] 643 + + 644 + +[[package]] 645 + +name = "getrandom" 646 + +version = "0.2.7" 647 + +source = "registry+https://github.com/rust-lang/crates.io-index" 648 + +checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 649 + +dependencies = [ 650 + + "cfg-if 1.0.0", 651 + + "libc", 652 + + "wasi 0.11.0+wasi-snapshot-preview1", 653 + +] 654 + + 655 + +[[package]] 656 + +name = "gimli" 657 + +version = "0.26.2" 658 + +source = "registry+https://github.com/rust-lang/crates.io-index" 659 + +checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" 660 + + 661 + +[[package]] 662 + +name = "globset" 663 + +version = "0.4.9" 664 + +source = "registry+https://github.com/rust-lang/crates.io-index" 665 + +checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a" 666 + +dependencies = [ 667 + + "aho-corasick", 668 + + "bstr", 669 + + "fnv", 670 + + "log", 671 + + "regex", 672 + +] 673 + + 674 + +[[package]] 675 + +name = "globwalk" 676 + +version = "0.8.1" 677 + +source = "registry+https://github.com/rust-lang/crates.io-index" 678 + +checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc" 679 + +dependencies = [ 680 + + "bitflags", 681 + + "ignore", 682 + + "walkdir", 683 + +] 684 + + 685 + +[[package]] 686 + +name = "hashbrown" 687 + +version = "0.12.3" 688 + +source = "registry+https://github.com/rust-lang/crates.io-index" 689 + +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 690 + +dependencies = [ 691 + + "ahash", 692 + +] 693 + + 694 + +[[package]] 695 + +name = "heck" 696 + +version = "0.4.0" 697 + +source = "registry+https://github.com/rust-lang/crates.io-index" 698 + +checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 699 + + 700 + +[[package]] 701 + +name = "hermit-abi" 702 + +version = "0.1.19" 703 + +source = "registry+https://github.com/rust-lang/crates.io-index" 704 + +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 705 + +dependencies = [ 706 + + "libc", 707 + +] 708 + + 709 + +[[package]] 710 + +name = "html5ever" 711 + +version = "0.25.2" 712 + +source = "registry+https://github.com/rust-lang/crates.io-index" 713 + +checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 714 + +dependencies = [ 715 + + "log", 716 + + "mac", 717 + + "markup5ever", 718 + + "proc-macro2", 719 + + "quote", 720 + + "syn", 721 + +] 722 + + 723 + +[[package]] 724 + +name = "http" 725 + +version = "0.2.8" 726 + +source = "registry+https://github.com/rust-lang/crates.io-index" 727 + +checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 728 + +dependencies = [ 729 + + "bytes", 730 + + "fnv", 731 + + "itoa 1.0.3", 732 + +] 733 + + 734 + +[[package]] 735 + +name = "http-body" 736 + +version = "0.4.5" 737 + +source = "registry+https://github.com/rust-lang/crates.io-index" 738 + +checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 739 + +dependencies = [ 740 + + "bytes", 741 + + "http", 742 + + "pin-project-lite", 743 + +] 744 + + 745 + +[[package]] 746 + +name = "http-range-header" 747 + +version = "0.3.0" 748 + +source = "registry+https://github.com/rust-lang/crates.io-index" 749 + +checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" 750 + + 751 + +[[package]] 752 + +name = "httparse" 753 + +version = "1.7.1" 754 + +source = "registry+https://github.com/rust-lang/crates.io-index" 755 + +checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" 756 + + 757 + +[[package]] 758 + +name = "httpdate" 759 + +version = "1.0.2" 760 + +source = "registry+https://github.com/rust-lang/crates.io-index" 761 + +checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 762 + + 763 + +[[package]] 764 + +name = "humansize" 765 + +version = "1.1.1" 766 + +source = "registry+https://github.com/rust-lang/crates.io-index" 767 + +checksum = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026" 768 + + 769 + +[[package]] 770 + +name = "hyper" 771 + +version = "0.14.20" 772 + +source = "registry+https://github.com/rust-lang/crates.io-index" 773 + +checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac" 774 + +dependencies = [ 775 + + "bytes", 776 + + "futures-channel", 777 + + "futures-core", 778 + + "futures-util", 779 + + "http", 780 + + "http-body", 781 + + "httparse", 782 + + "httpdate", 783 + + "itoa 1.0.3", 784 + + "pin-project-lite", 785 + + "socket2", 786 + + "tokio", 787 + + "tower-service", 788 + + "tracing", 789 + + "want", 790 + +] 791 + + 792 + +[[package]] 793 + +name = "hyper-tls" 794 + +version = "0.5.0" 795 + +source = "registry+https://github.com/rust-lang/crates.io-index" 796 + +checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 797 + +dependencies = [ 798 + + "bytes", 799 + + "hyper", 800 + + "native-tls", 801 + + "tokio", 802 + + "tokio-native-tls", 803 + +] 804 + + 805 + +[[package]] 806 + +name = "ignore" 807 + +version = "0.4.18" 808 + +source = "registry+https://github.com/rust-lang/crates.io-index" 809 + +checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 810 + +dependencies = [ 811 + + "crossbeam-utils", 812 + + "globset", 813 + + "lazy_static", 814 + + "log", 815 + + "memchr", 816 + + "regex", 817 + + "same-file", 818 + + "thread_local", 819 + + "walkdir", 820 + + "winapi-util", 821 + +] 822 + + 823 + +[[package]] 824 + +name = "include_dir" 825 + +version = "0.7.2" 826 + +source = "registry+https://github.com/rust-lang/crates.io-index" 827 + +checksum = "482a2e29200b7eed25d7fdbd14423326760b7f6658d21a4cf12d55a50713c69f" 828 + +dependencies = [ 829 + + "include_dir_macros", 830 + +] 831 + + 832 + +[[package]] 833 + +name = "include_dir_macros" 834 + +version = "0.7.2" 835 + +source = "registry+https://github.com/rust-lang/crates.io-index" 836 + +checksum = "5e074c19deab2501407c91ba1860fa3d6820bfde307db6d8cb851b55a10be89b" 837 + +dependencies = [ 838 + + "proc-macro2", 839 + + "quote", 840 + +] 841 + + 842 + +[[package]] 843 + +name = "indexmap" 844 + +version = "1.9.1" 845 + +source = "registry+https://github.com/rust-lang/crates.io-index" 846 + +checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 847 + +dependencies = [ 848 + + "autocfg", 849 + + "hashbrown", 850 + +] 851 + + 852 + +[[package]] 853 + +name = "inotify" 854 + +version = "0.7.1" 855 + +source = "registry+https://github.com/rust-lang/crates.io-index" 856 + +checksum = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f" 857 + +dependencies = [ 858 + + "bitflags", 859 + + "inotify-sys", 860 + + "libc", 861 + +] 862 + + 863 + +[[package]] 864 + +name = "inotify-sys" 865 + +version = "0.1.5" 866 + +source = "registry+https://github.com/rust-lang/crates.io-index" 867 + +checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 868 + +dependencies = [ 869 + + "libc", 870 + +] 871 + + 872 + +[[package]] 873 + +name = "instant" 874 + +version = "0.1.12" 875 + +source = "registry+https://github.com/rust-lang/crates.io-index" 876 + +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 877 + +dependencies = [ 878 + + "cfg-if 1.0.0", 879 + +] 880 + + 881 + +[[package]] 882 + +name = "intl-memoizer" 883 + +version = "0.5.1" 884 + +source = "registry+https://github.com/rust-lang/crates.io-index" 885 + +checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f" 886 + +dependencies = [ 887 + + "type-map", 888 + + "unic-langid", 889 + +] 890 + + 891 + +[[package]] 892 + +name = "intl_pluralrules" 893 + +version = "7.0.1" 894 + +source = "registry+https://github.com/rust-lang/crates.io-index" 895 + +checksum = "b18f988384267d7066cc2be425e6faf352900652c046b6971d2e228d3b1c5ecf" 896 + +dependencies = [ 897 + + "tinystr", 898 + + "unic-langid", 899 + +] 900 + + 901 + +[[package]] 902 + +name = "iovec" 903 + +version = "0.1.4" 904 + +source = "registry+https://github.com/rust-lang/crates.io-index" 905 + +checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" 906 + +dependencies = [ 907 + + "libc", 908 + +] 909 + + 910 + +[[package]] 911 + +name = "itoa" 912 + +version = "0.4.8" 913 + +source = "registry+https://github.com/rust-lang/crates.io-index" 914 + +checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 915 + + 916 + +[[package]] 917 + +name = "itoa" 918 + +version = "1.0.3" 919 + +source = "registry+https://github.com/rust-lang/crates.io-index" 920 + +checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" 921 + + 922 + +[[package]] 923 + +name = "js-sys" 924 + +version = "0.3.59" 925 + +source = "registry+https://github.com/rust-lang/crates.io-index" 926 + +checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2" 927 + +dependencies = [ 928 + + "wasm-bindgen", 929 + +] 930 + + 931 + +[[package]] 932 + +name = "kernel32-sys" 933 + +version = "0.2.2" 934 + +source = "registry+https://github.com/rust-lang/crates.io-index" 935 + +checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 936 + +dependencies = [ 937 + + "winapi 0.2.8", 938 + + "winapi-build", 939 + +] 940 + + 941 + +[[package]] 942 + +name = "lazy_static" 943 + +version = "1.4.0" 944 + +source = "registry+https://github.com/rust-lang/crates.io-index" 945 + +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 946 + + 947 + +[[package]] 948 + +name = "lazycell" 949 + +version = "1.3.0" 950 + +source = "registry+https://github.com/rust-lang/crates.io-index" 951 + +checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 952 + + 953 + +[[package]] 954 + +name = "libc" 955 + +version = "0.2.127" 956 + +source = "registry+https://github.com/rust-lang/crates.io-index" 957 + +checksum = "505e71a4706fa491e9b1b55f51b95d4037d0821ee40131190475f692b35b009b" 958 + + 959 + +[[package]] 960 + +name = "line-wrap" 961 + +version = "0.1.1" 962 + +source = "registry+https://github.com/rust-lang/crates.io-index" 963 + +checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 964 + +dependencies = [ 965 + + "safemem", 966 + +] 967 + + 968 + +[[package]] 969 + +name = "linked-hash-map" 970 + +version = "0.5.6" 971 + +source = "registry+https://github.com/rust-lang/crates.io-index" 972 + +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 973 + + 974 + +[[package]] 975 + +name = "lock_api" 976 + +version = "0.4.7" 977 + +source = "registry+https://github.com/rust-lang/crates.io-index" 978 + +checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" 979 + +dependencies = [ 980 + + "autocfg", 981 + + "scopeguard", 982 + +] 983 + + 984 + +[[package]] 985 + +name = "log" 986 + +version = "0.4.17" 987 + +source = "registry+https://github.com/rust-lang/crates.io-index" 988 + +checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 989 + +dependencies = [ 990 + + "cfg-if 1.0.0", 991 + +] 992 + + 993 + +[[package]] 994 + +name = "lol_html" 995 + +version = "0.3.1" 996 + +source = "registry+https://github.com/rust-lang/crates.io-index" 997 + +checksum = "09ff2adf9c54f4de7d66a9177ea7d27d5b8108503bb03d5b719869b8f4bc2ab2" 998 + +dependencies = [ 999 + + "bitflags", 1000 + + "cfg-if 1.0.0", 1001 + + "cssparser", 1002 + + "encoding_rs", 1003 + + "hashbrown", 1004 + + "lazy_static", 1005 + + "lazycell", 1006 + + "memchr", 1007 + + "safemem", 1008 + + "selectors", 1009 + + "thiserror", 1010 + +] 1011 + + 1012 + +[[package]] 1013 + +name = "mac" 1014 + +version = "0.1.1" 1015 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1016 + +checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1017 + + 1018 + +[[package]] 1019 + +name = "markup5ever" 1020 + +version = "0.10.1" 1021 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1022 + +checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1023 + +dependencies = [ 1024 + + "log", 1025 + + "phf 0.8.0", 1026 + + "phf_codegen 0.8.0", 1027 + + "string_cache", 1028 + + "string_cache_codegen", 1029 + + "tendril", 1030 + +] 1031 + + 1032 + +[[package]] 1033 + +name = "markup5ever_rcdom" 1034 + +version = "0.1.0" 1035 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1036 + +checksum = "f015da43bcd8d4f144559a3423f4591d69b8ce0652c905374da7205df336ae2b" 1037 + +dependencies = [ 1038 + + "html5ever", 1039 + + "markup5ever", 1040 + + "tendril", 1041 + + "xml5ever", 1042 + +] 1043 + + 1044 + +[[package]] 1045 + +name = "matches" 1046 + +version = "0.1.9" 1047 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1048 + +checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1049 + + 1050 + +[[package]] 1051 + +name = "memchr" 1052 + +version = "2.5.0" 1053 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1054 + +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1055 + + 1056 + +[[package]] 1057 + +name = "memoffset" 1058 + +version = "0.6.5" 1059 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1060 + +checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1061 + +dependencies = [ 1062 + + "autocfg", 1063 + +] 1064 + + 1065 + +[[package]] 1066 + +name = "mime" 1067 + +version = "0.3.16" 1068 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1069 + +checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1070 + + 1071 + +[[package]] 1072 + +name = "mime_guess" 1073 + +version = "2.0.4" 1074 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1075 + +checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1076 + +dependencies = [ 1077 + + "mime", 1078 + + "unicase", 1079 + +] 1080 + + 1081 + +[[package]] 1082 + +name = "miniz_oxide" 1083 + +version = "0.5.3" 1084 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1085 + +checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc" 1086 + +dependencies = [ 1087 + + "adler", 1088 + +] 1089 + + 1090 + +[[package]] 1091 + +name = "mio" 1092 + +version = "0.6.23" 1093 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1094 + +checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" 1095 + +dependencies = [ 1096 + + "cfg-if 0.1.10", 1097 + + "fuchsia-zircon", 1098 + + "fuchsia-zircon-sys", 1099 + + "iovec", 1100 + + "kernel32-sys", 1101 + + "libc", 1102 + + "log", 1103 + + "miow", 1104 + + "net2", 1105 + + "slab", 1106 + + "winapi 0.2.8", 1107 + +] 1108 + + 1109 + +[[package]] 1110 + +name = "mio" 1111 + +version = "0.8.4" 1112 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1113 + +checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf" 1114 + +dependencies = [ 1115 + + "libc", 1116 + + "log", 1117 + + "wasi 0.11.0+wasi-snapshot-preview1", 1118 + + "windows-sys", 1119 + +] 1120 + + 1121 + +[[package]] 1122 + +name = "mio-extras" 1123 + +version = "2.0.6" 1124 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1125 + +checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" 1126 + +dependencies = [ 1127 + + "lazycell", 1128 + + "log", 1129 + + "mio 0.6.23", 1130 + + "slab", 1131 + +] 1132 + + 1133 + +[[package]] 1134 + +name = "miow" 1135 + +version = "0.2.2" 1136 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1137 + +checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" 1138 + +dependencies = [ 1139 + + "kernel32-sys", 1140 + + "net2", 1141 + + "winapi 0.2.8", 1142 + + "ws2_32-sys", 1143 + +] 1144 + + 1145 + +[[package]] 1146 + +name = "native-tls" 1147 + +version = "0.2.10" 1148 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1149 + +checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" 1150 + +dependencies = [ 1151 + + "lazy_static", 1152 + + "libc", 1153 + + "log", 1154 + + "openssl", 1155 + + "openssl-probe", 1156 + + "openssl-sys", 1157 + + "schannel", 1158 + + "security-framework", 1159 + + "security-framework-sys", 1160 + + "tempfile", 1161 + +] 1162 + + 1163 + +[[package]] 1164 + +name = "net2" 1165 + +version = "0.2.37" 1166 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1167 + +checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae" 1168 + +dependencies = [ 1169 + + "cfg-if 0.1.10", 1170 + + "libc", 1171 + + "winapi 0.3.9", 1172 + +] 1173 + + 1174 + +[[package]] 1175 + +name = "new_debug_unreachable" 1176 + +version = "1.0.4" 1177 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1178 + +checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1179 + + 1180 + +[[package]] 1181 + +name = "nodrop" 1182 + +version = "0.1.14" 1183 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1184 + +checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1185 + + 1186 + +[[package]] 1187 + +name = "notify" 1188 + +version = "4.0.17" 1189 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1190 + +checksum = "ae03c8c853dba7bfd23e571ff0cff7bc9dceb40a4cd684cd1681824183f45257" 1191 + +dependencies = [ 1192 + + "bitflags", 1193 + + "filetime", 1194 + + "fsevent", 1195 + + "fsevent-sys", 1196 + + "inotify", 1197 + + "libc", 1198 + + "mio 0.6.23", 1199 + + "mio-extras", 1200 + + "walkdir", 1201 + + "winapi 0.3.9", 1202 + +] 1203 + + 1204 + +[[package]] 1205 + +name = "num-integer" 1206 + +version = "0.1.45" 1207 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1208 + +checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1209 + +dependencies = [ 1210 + + "autocfg", 1211 + + "num-traits", 1212 + +] 1213 + + 1214 + +[[package]] 1215 + +name = "num-traits" 1216 + +version = "0.2.15" 1217 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1218 + +checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1219 + +dependencies = [ 1220 + + "autocfg", 1221 + +] 1222 + + 1223 + +[[package]] 1224 + +name = "num_cpus" 1225 + +version = "1.13.1" 1226 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1227 + +checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 1228 + +dependencies = [ 1229 + + "hermit-abi", 1230 + + "libc", 1231 + +] 1232 + + 1233 + +[[package]] 1234 + +name = "num_threads" 1235 + +version = "0.1.6" 1236 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1237 + +checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 1238 + +dependencies = [ 1239 + + "libc", 1240 + +] 1241 + + 1242 + +[[package]] 1243 + +name = "object" 1244 + +version = "0.29.0" 1245 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1246 + +checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" 1247 + +dependencies = [ 1248 + + "memchr", 1249 + +] 1250 + + 1251 + +[[package]] 1252 + +name = "once_cell" 1253 + +version = "1.13.0" 1254 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1255 + +checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" 1256 + + 1257 + +[[package]] 1258 + +name = "openssl" 1259 + +version = "0.10.41" 1260 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1261 + +checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0" 1262 + +dependencies = [ 1263 + + "bitflags", 1264 + + "cfg-if 1.0.0", 1265 + + "foreign-types", 1266 + + "libc", 1267 + + "once_cell", 1268 + + "openssl-macros", 1269 + + "openssl-sys", 1270 + +] 1271 + + 1272 + +[[package]] 1273 + +name = "openssl-macros" 1274 + +version = "0.1.0" 1275 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1276 + +checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1277 + +dependencies = [ 1278 + + "proc-macro2", 1279 + + "quote", 1280 + + "syn", 1281 + +] 1282 + + 1283 + +[[package]] 1284 + +name = "openssl-probe" 1285 + +version = "0.1.5" 1286 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1287 + +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1288 + + 1289 + +[[package]] 1290 + +name = "openssl-src" 1291 + +version = "111.22.0+1.1.1q" 1292 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1293 + +checksum = "8f31f0d509d1c1ae9cada2f9539ff8f37933831fd5098879e482aa687d659853" 1294 + +dependencies = [ 1295 + + "cc", 1296 + +] 1297 + + 1298 + +[[package]] 1299 + +name = "openssl-sys" 1300 + +version = "0.9.75" 1301 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1302 + +checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f" 1303 + +dependencies = [ 1304 + + "autocfg", 1305 + + "cc", 1306 + + "libc", 1307 + + "openssl-src", 1308 + + "pkg-config", 1309 + + "vcpkg", 1310 + +] 1311 + + 1312 + +[[package]] 1313 + +name = "os_str_bytes" 1314 + +version = "6.2.0" 1315 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1316 + +checksum = "648001efe5d5c0102d8cea768e348da85d90af8ba91f0bea908f157951493cd4" 1317 + + 1318 + +[[package]] 1319 + +name = "parking_lot" 1320 + +version = "0.12.1" 1321 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1322 + +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1323 + +dependencies = [ 1324 + + "lock_api", 1325 + + "parking_lot_core", 1326 + +] 1327 + + 1328 + +[[package]] 1329 + +name = "parking_lot_core" 1330 + +version = "0.9.3" 1331 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1332 + +checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929" 1333 + +dependencies = [ 1334 + + "cfg-if 1.0.0", 1335 + + "libc", 1336 + + "redox_syscall", 1337 + + "smallvec", 1338 + + "windows-sys", 1339 + +] 1340 + + 1341 + +[[package]] 1342 + +name = "parse-zoneinfo" 1343 + +version = "0.3.0" 1344 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1345 + +checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41" 1346 + +dependencies = [ 1347 + + "regex", 1348 + +] 1349 + + 1350 + +[[package]] 1351 + +name = "percent-encoding" 1352 + +version = "2.1.0" 1353 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1354 + +checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 1355 + + 1356 + +[[package]] 1357 + +name = "pest" 1358 + +version = "2.2.1" 1359 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1360 + +checksum = "69486e2b8c2d2aeb9762db7b4e00b0331156393555cff467f4163ff06821eef8" 1361 + +dependencies = [ 1362 + + "thiserror", 1363 + + "ucd-trie", 1364 + +] 1365 + + 1366 + +[[package]] 1367 + +name = "pest_derive" 1368 + +version = "2.2.1" 1369 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1370 + +checksum = "b13570633aff33c6d22ce47dd566b10a3b9122c2fe9d8e7501895905be532b91" 1371 + +dependencies = [ 1372 + + "pest", 1373 + + "pest_generator", 1374 + +] 1375 + + 1376 + +[[package]] 1377 + +name = "pest_generator" 1378 + +version = "2.2.1" 1379 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1380 + +checksum = "b3c567e5702efdc79fb18859ea74c3eb36e14c43da7b8c1f098a4ed6514ec7a0" 1381 + +dependencies = [ 1382 + + "pest", 1383 + + "pest_meta", 1384 + + "proc-macro2", 1385 + + "quote", 1386 + + "syn", 1387 + +] 1388 + + 1389 + +[[package]] 1390 + +name = "pest_meta" 1391 + +version = "2.2.1" 1392 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1393 + +checksum = "5eb32be5ee3bbdafa8c7a18b0a8a8d962b66cfa2ceee4037f49267a50ee821fe" 1394 + +dependencies = [ 1395 + + "once_cell", 1396 + + "pest", 1397 + + "sha-1", 1398 + +] 1399 + + 1400 + +[[package]] 1401 + +name = "phf" 1402 + +version = "0.8.0" 1403 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1404 + +checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 1405 + +dependencies = [ 1406 + + "phf_macros", 1407 + + "phf_shared 0.8.0", 1408 + + "proc-macro-hack", 1409 + +] 1410 + + 1411 + +[[package]] 1412 + +name = "phf" 1413 + +version = "0.11.0" 1414 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1415 + +checksum = "4724fa946c8d1e7cd881bd3dbee63ce32fc1e9e191e35786b3dc1320a3f68131" 1416 + +dependencies = [ 1417 + + "phf_shared 0.11.0", 1418 + +] 1419 + + 1420 + +[[package]] 1421 + +name = "phf_codegen" 1422 + +version = "0.8.0" 1423 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1424 + +checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 1425 + +dependencies = [ 1426 + + "phf_generator 0.8.0", 1427 + + "phf_shared 0.8.0", 1428 + +] 1429 + + 1430 + +[[package]] 1431 + +name = "phf_codegen" 1432 + +version = "0.11.0" 1433 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1434 + +checksum = "32ba0c43d7a1b6492b2924a62290cfd83987828af037b0743b38e6ab092aee58" 1435 + +dependencies = [ 1436 + + "phf_generator 0.11.0", 1437 + + "phf_shared 0.11.0", 1438 + +] 1439 + + 1440 + +[[package]] 1441 + +name = "phf_generator" 1442 + +version = "0.8.0" 1443 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1444 + +checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 1445 + +dependencies = [ 1446 + + "phf_shared 0.8.0", 1447 + + "rand 0.7.3", 1448 + +] 1449 + + 1450 + +[[package]] 1451 + +name = "phf_generator" 1452 + +version = "0.10.0" 1453 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1454 + +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1455 + +dependencies = [ 1456 + + "phf_shared 0.10.0", 1457 + + "rand 0.8.5", 1458 + +] 1459 + + 1460 + +[[package]] 1461 + +name = "phf_generator" 1462 + +version = "0.11.0" 1463 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1464 + +checksum = "5b450720b6f75cfbfabc195814bd3765f337a4f9a83186f8537297cac12f6705" 1465 + +dependencies = [ 1466 + + "phf_shared 0.11.0", 1467 + + "rand 0.8.5", 1468 + +] 1469 + + 1470 + +[[package]] 1471 + +name = "phf_macros" 1472 + +version = "0.8.0" 1473 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1474 + +checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 1475 + +dependencies = [ 1476 + + "phf_generator 0.8.0", 1477 + + "phf_shared 0.8.0", 1478 + + "proc-macro-hack", 1479 + + "proc-macro2", 1480 + + "quote", 1481 + + "syn", 1482 + +] 1483 + + 1484 + +[[package]] 1485 + +name = "phf_shared" 1486 + +version = "0.8.0" 1487 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1488 + +checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 1489 + +dependencies = [ 1490 + + "siphasher", 1491 + +] 1492 + + 1493 + +[[package]] 1494 + +name = "phf_shared" 1495 + +version = "0.10.0" 1496 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1497 + +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1498 + +dependencies = [ 1499 + + "siphasher", 1500 + +] 1501 + + 1502 + +[[package]] 1503 + +name = "phf_shared" 1504 + +version = "0.11.0" 1505 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1506 + +checksum = "9dd5609d4b2df87167f908a32e1b146ce309c16cf35df76bc11f440b756048e4" 1507 + +dependencies = [ 1508 + + "siphasher", 1509 + + "uncased", 1510 + +] 1511 + + 1512 + +[[package]] 1513 + +name = "pin-project" 1514 + +version = "1.0.11" 1515 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1516 + +checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260" 1517 + +dependencies = [ 1518 + + "pin-project-internal", 1519 + +] 1520 + + 1521 + +[[package]] 1522 + +name = "pin-project-internal" 1523 + +version = "1.0.11" 1524 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1525 + +checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74" 1526 + +dependencies = [ 1527 + + "proc-macro2", 1528 + + "quote", 1529 + + "syn", 1530 + +] 1531 + + 1532 + +[[package]] 1533 + +name = "pin-project-lite" 1534 + +version = "0.2.9" 1535 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1536 + +checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1537 + + 1538 + +[[package]] 1539 + +name = "pin-utils" 1540 + +version = "0.1.0" 1541 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1542 + +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1543 + + 1544 + +[[package]] 1545 + +name = "pkg-config" 1546 + +version = "0.3.25" 1547 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1548 + +checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" 1549 + + 1550 + +[[package]] 1551 + +name = "plist" 1552 + +version = "1.3.1" 1553 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1554 + +checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225" 1555 + +dependencies = [ 1556 + + "base64", 1557 + + "indexmap", 1558 + + "line-wrap", 1559 + + "serde", 1560 + + "time 0.3.12", 1561 + + "xml-rs", 1562 + +] 1563 + + 1564 + +[[package]] 1565 + +name = "ppv-lite86" 1566 + +version = "0.2.16" 1567 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1568 + +checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 1569 + + 1570 + +[[package]] 1571 + +name = "precomputed-hash" 1572 + +version = "0.1.1" 1573 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1574 + +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1575 + + 1576 + +[[package]] 1577 + +name = "proc-macro-error" 1578 + +version = "1.0.4" 1579 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1580 + +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1581 + +dependencies = [ 1582 + + "proc-macro-error-attr", 1583 + + "proc-macro2", 1584 + + "quote", 1585 + + "syn", 1586 + + "version_check", 1587 + +] 1588 + + 1589 + +[[package]] 1590 + +name = "proc-macro-error-attr" 1591 + +version = "1.0.4" 1592 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1593 + +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1594 + +dependencies = [ 1595 + + "proc-macro2", 1596 + + "quote", 1597 + + "version_check", 1598 + +] 1599 + + 1600 + +[[package]] 1601 + +name = "proc-macro-hack" 1602 + +version = "0.5.19" 1603 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1604 + +checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 1605 + + 1606 + +[[package]] 1607 + +name = "proc-macro2" 1608 + +version = "1.0.43" 1609 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1610 + +checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab" 1611 + +dependencies = [ 1612 + + "unicode-ident", 1613 + +] 1614 + + 1615 + +[[package]] 1616 + +name = "pulldown-cmark" 1617 + +version = "0.9.2" 1618 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1619 + +checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63" 1620 + +dependencies = [ 1621 + + "bitflags", 1622 + + "getopts", 1623 + + "memchr", 1624 + + "unicase", 1625 + +] 1626 + + 1627 + +[[package]] 1628 + +name = "quote" 1629 + +version = "1.0.21" 1630 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1631 + +checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 1632 + +dependencies = [ 1633 + + "proc-macro2", 1634 + +] 1635 + + 1636 + +[[package]] 1637 + +name = "rand" 1638 + +version = "0.7.3" 1639 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1640 + +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 1641 + +dependencies = [ 1642 + + "getrandom 0.1.16", 1643 + + "libc", 1644 + + "rand_chacha 0.2.2", 1645 + + "rand_core 0.5.1", 1646 + + "rand_hc", 1647 + + "rand_pcg", 1648 + +] 1649 + + 1650 + +[[package]] 1651 + +name = "rand" 1652 + +version = "0.8.5" 1653 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1654 + +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1655 + +dependencies = [ 1656 + + "libc", 1657 + + "rand_chacha 0.3.1", 1658 + + "rand_core 0.6.3", 1659 + +] 1660 + + 1661 + +[[package]] 1662 + +name = "rand_chacha" 1663 + +version = "0.2.2" 1664 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1665 + +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 1666 + +dependencies = [ 1667 + + "ppv-lite86", 1668 + + "rand_core 0.5.1", 1669 + +] 1670 + + 1671 + +[[package]] 1672 + +name = "rand_chacha" 1673 + +version = "0.3.1" 1674 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1675 + +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1676 + +dependencies = [ 1677 + + "ppv-lite86", 1678 + + "rand_core 0.6.3", 1679 + +] 1680 + + 1681 + +[[package]] 1682 + +name = "rand_core" 1683 + +version = "0.5.1" 1684 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1685 + +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 1686 + +dependencies = [ 1687 + + "getrandom 0.1.16", 1688 + +] 1689 + + 1690 + +[[package]] 1691 + +name = "rand_core" 1692 + +version = "0.6.3" 1693 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1694 + +checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 1695 + +dependencies = [ 1696 + + "getrandom 0.2.7", 1697 + +] 1698 + + 1699 + +[[package]] 1700 + +name = "rand_hc" 1701 + +version = "0.2.0" 1702 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1703 + +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 1704 + +dependencies = [ 1705 + + "rand_core 0.5.1", 1706 + +] 1707 + + 1708 + +[[package]] 1709 + +name = "rand_pcg" 1710 + +version = "0.2.1" 1711 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1712 + +checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 1713 + +dependencies = [ 1714 + + "rand_core 0.5.1", 1715 + +] 1716 + + 1717 + +[[package]] 1718 + +name = "rayon" 1719 + +version = "1.5.3" 1720 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1721 + +checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d" 1722 + +dependencies = [ 1723 + + "autocfg", 1724 + + "crossbeam-deque", 1725 + + "either", 1726 + + "rayon-core", 1727 + +] 1728 + + 1729 + +[[package]] 1730 + +name = "rayon-core" 1731 + +version = "1.9.3" 1732 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1733 + +checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f" 1734 + +dependencies = [ 1735 + + "crossbeam-channel", 1736 + + "crossbeam-deque", 1737 + + "crossbeam-utils", 1738 + + "num_cpus", 1739 + +] 1740 + + 1741 + +[[package]] 1742 + +name = "redox_syscall" 1743 + +version = "0.2.16" 1744 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1745 + +checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1746 + +dependencies = [ 1747 + + "bitflags", 1748 + +] 1749 + + 1750 + +[[package]] 1751 + +name = "regex" 1752 + +version = "1.6.0" 1753 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1754 + +checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" 1755 + +dependencies = [ 1756 + + "aho-corasick", 1757 + + "memchr", 1758 + + "regex-syntax", 1759 + +] 1760 + + 1761 + +[[package]] 1762 + +name = "regex-syntax" 1763 + +version = "0.6.27" 1764 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1765 + +checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" 1766 + + 1767 + +[[package]] 1768 + +name = "remove_dir_all" 1769 + +version = "0.5.3" 1770 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1771 + +checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1772 + +dependencies = [ 1773 + + "winapi 0.3.9", 1774 + +] 1775 + + 1776 + +[[package]] 1777 + +name = "rustc-demangle" 1778 + +version = "0.1.21" 1779 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1780 + +checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 1781 + + 1782 + +[[package]] 1783 + +name = "rustc-hash" 1784 + +version = "1.1.0" 1785 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1786 + +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1787 + + 1788 + +[[package]] 1789 + +name = "rustc_version" 1790 + +version = "0.4.0" 1791 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1792 + +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1793 + +dependencies = [ 1794 + + "semver", 1795 + +] 1796 + + 1797 + +[[package]] 1798 + +name = "ryu" 1799 + +version = "1.0.11" 1800 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1801 + +checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 1802 + + 1803 + +[[package]] 1804 + +name = "safemem" 1805 + +version = "0.3.3" 1806 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1807 + +checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 1808 + + 1809 + +[[package]] 1810 + +name = "same-file" 1811 + +version = "1.0.6" 1812 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1813 + +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1814 + +dependencies = [ 1815 + + "winapi-util", 1816 + +] 1817 + + 1818 + +[[package]] 1819 + +name = "schannel" 1820 + +version = "0.1.20" 1821 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1822 + +checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 1823 + +dependencies = [ 1824 + + "lazy_static", 1825 + + "windows-sys", 1826 + +] 1827 + + 1828 + +[[package]] 1829 + +name = "scopeguard" 1830 + +version = "1.1.0" 1831 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1832 + +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1833 + + 1834 + +[[package]] 1835 + +name = "security-framework" 1836 + +version = "2.6.1" 1837 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1838 + +checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc" 1839 + +dependencies = [ 1840 + + "bitflags", 1841 + + "core-foundation", 1842 + + "core-foundation-sys", 1843 + + "libc", 1844 + + "security-framework-sys", 1845 + +] 1846 + + 1847 + +[[package]] 1848 + +name = "security-framework-sys" 1849 + +version = "2.6.1" 1850 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1851 + +checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 1852 + +dependencies = [ 1853 + + "core-foundation-sys", 1854 + + "libc", 1855 + +] 1856 + + 1857 + +[[package]] 1858 + +name = "selectors" 1859 + +version = "0.22.0" 1860 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1861 + +checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 1862 + +dependencies = [ 1863 + + "bitflags", 1864 + + "cssparser", 1865 + + "derive_more", 1866 + + "fxhash", 1867 + + "log", 1868 + + "matches", 1869 + + "phf 0.8.0", 1870 + + "phf_codegen 0.8.0", 1871 + + "precomputed-hash", 1872 + + "servo_arc", 1873 + + "smallvec", 1874 + + "thin-slice", 1875 + +] 1876 + + 1877 + +[[package]] 1878 + +name = "self_cell" 1879 + +version = "0.10.2" 1880 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1881 + +checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af" 1882 + + 1883 + +[[package]] 1884 + +name = "semver" 1885 + +version = "1.0.13" 1886 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1887 + +checksum = "93f6841e709003d68bb2deee8c343572bf446003ec20a583e76f7b15cebf3711" 1888 + + 1889 + +[[package]] 1890 + +name = "serde" 1891 + +version = "1.0.142" 1892 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1893 + +checksum = "e590c437916fb6b221e1d00df6e3294f3fccd70ca7e92541c475d6ed6ef5fee2" 1894 + +dependencies = [ 1895 + + "serde_derive", 1896 + +] 1897 + + 1898 + +[[package]] 1899 + +name = "serde_derive" 1900 + +version = "1.0.142" 1901 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1902 + +checksum = "34b5b8d809babe02f538c2cfec6f2c1ed10804c0e5a6a041a049a4f5588ccc2e" 1903 + +dependencies = [ 1904 + + "proc-macro2", 1905 + + "quote", 1906 + + "syn", 1907 + +] 1908 + + 1909 + +[[package]] 1910 + +name = "serde_json" 1911 + +version = "1.0.83" 1912 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1913 + +checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7" 1914 + +dependencies = [ 1915 + + "itoa 1.0.3", 1916 + + "ryu", 1917 + + "serde", 1918 + +] 1919 + + 1920 + +[[package]] 1921 + +name = "servo_arc" 1922 + +version = "0.1.1" 1923 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1924 + +checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 1925 + +dependencies = [ 1926 + + "nodrop", 1927 + + "stable_deref_trait", 1928 + +] 1929 + + 1930 + +[[package]] 1931 + +name = "sha-1" 1932 + +version = "0.10.0" 1933 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1934 + +checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f" 1935 + +dependencies = [ 1936 + + "cfg-if 1.0.0", 1937 + + "cpufeatures", 1938 + + "digest", 1939 + +] 1940 + + 1941 + +[[package]] 1942 + +name = "signal-hook-registry" 1943 + +version = "1.4.0" 1944 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1945 + +checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 1946 + +dependencies = [ 1947 + + "libc", 1948 + +] 1949 + + 1950 + +[[package]] 1951 + +name = "siphasher" 1952 + +version = "0.3.10" 1953 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1954 + +checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 1955 + + 1956 + +[[package]] 1957 + +name = "slab" 1958 + +version = "0.4.7" 1959 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1960 + +checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 1961 + +dependencies = [ 1962 + + "autocfg", 1963 + +] 1964 + + 1965 + +[[package]] 1966 + +name = "slug" 1967 + +version = "0.1.4" 1968 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1969 + +checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373" 1970 + +dependencies = [ 1971 + + "deunicode", 1972 + +] 1973 + + 1974 + +[[package]] 1975 + +name = "smallvec" 1976 + +version = "1.9.0" 1977 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1978 + +checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" 1979 + + 1980 + +[[package]] 1981 + +name = "socket2" 1982 + +version = "0.4.4" 1983 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1984 + +checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" 1985 + +dependencies = [ 1986 + + "libc", 1987 + + "winapi 0.3.9", 1988 + +] 1989 + + 1990 + +[[package]] 1991 + +name = "stable_deref_trait" 1992 + +version = "1.2.0" 1993 + +source = "registry+https://github.com/rust-lang/crates.io-index" 1994 + +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 1995 + + 1996 + +[[package]] 1997 + +name = "string_cache" 1998 + +version = "0.8.4" 1999 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2000 + +checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 2001 + +dependencies = [ 2002 + + "new_debug_unreachable", 2003 + + "once_cell", 2004 + + "parking_lot", 2005 + + "phf_shared 0.10.0", 2006 + + "precomputed-hash", 2007 + + "serde", 2008 + +] 2009 + + 2010 + +[[package]] 2011 + +name = "string_cache_codegen" 2012 + +version = "0.5.2" 2013 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2014 + +checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2015 + +dependencies = [ 2016 + + "phf_generator 0.10.0", 2017 + + "phf_shared 0.10.0", 2018 + + "proc-macro2", 2019 + + "quote", 2020 + +] 2021 + + 2022 + +[[package]] 2023 + +name = "syn" 2024 + +version = "1.0.99" 2025 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2026 + +checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13" 2027 + +dependencies = [ 2028 + + "proc-macro2", 2029 + + "quote", 2030 + + "unicode-ident", 2031 + +] 2032 + + 2033 + +[[package]] 2034 + +name = "syntect" 2035 + +version = "4.6.0" 2036 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2037 + +checksum = "8b20815bbe80ee0be06e6957450a841185fcf690fe0178f14d77a05ce2caa031" 2038 + +dependencies = [ 2039 + + "bincode", 2040 + + "bitflags", 2041 + + "fancy-regex", 2042 + + "flate2", 2043 + + "fnv", 2044 + + "lazy_static", 2045 + + "lazycell", 2046 + + "plist", 2047 + + "regex-syntax", 2048 + + "serde", 2049 + + "serde_derive", 2050 + + "serde_json", 2051 + + "walkdir", 2052 + + "yaml-rust", 2053 + +] 2054 + + 2055 + +[[package]] 2056 + +name = "tempfile" 2057 + +version = "3.3.0" 2058 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2059 + +checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 2060 + +dependencies = [ 2061 + + "cfg-if 1.0.0", 2062 + + "fastrand", 2063 + + "libc", 2064 + + "redox_syscall", 2065 + + "remove_dir_all", 2066 + + "winapi 0.3.9", 2067 + +] 2068 + + 2069 + +[[package]] 2070 + +name = "tendril" 2071 + +version = "0.4.3" 2072 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2073 + +checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 2074 + +dependencies = [ 2075 + + "futf", 2076 + + "mac", 2077 + + "utf-8", 2078 + +] 2079 + + 2080 + +[[package]] 2081 + +name = "tera" 2082 + +version = "1.16.0" 2083 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2084 + +checksum = "7c9783d6ff395ae80cf17ed9a25360e7ba37742a79fa8fddabb073c5c7c8856d" 2085 + +dependencies = [ 2086 + + "chrono", 2087 + + "chrono-tz", 2088 + + "globwalk", 2089 + + "humansize", 2090 + + "lazy_static", 2091 + + "percent-encoding", 2092 + + "pest", 2093 + + "pest_derive", 2094 + + "rand 0.8.5", 2095 + + "regex", 2096 + + "serde", 2097 + + "serde_json", 2098 + + "slug", 2099 + + "unic-segment", 2100 + +] 2101 + + 2102 + +[[package]] 2103 + +name = "test-case" 2104 + +version = "2.2.1" 2105 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2106 + +checksum = "07aea929e9488998b64adc414c29fe5620398f01c2e3f58164122b17e567a6d5" 2107 + +dependencies = [ 2108 + + "test-case-macros", 2109 + +] 2110 + + 2111 + +[[package]] 2112 + +name = "test-case-macros" 2113 + +version = "2.2.1" 2114 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2115 + +checksum = "c95968eedc6fc4f5c21920e0f4264f78ec5e4c56bb394f319becc1a5830b3e54" 2116 + +dependencies = [ 2117 + + "cfg-if 1.0.0", 2118 + + "proc-macro-error", 2119 + + "proc-macro2", 2120 + + "quote", 2121 + + "syn", 2122 + +] 2123 + + 2124 + +[[package]] 2125 + +name = "textwrap" 2126 + +version = "0.15.0" 2127 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2128 + +checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" 2129 + + 2130 + +[[package]] 2131 + +name = "thin-slice" 2132 + +version = "0.1.1" 2133 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2134 + +checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 2135 + + 2136 + +[[package]] 2137 + +name = "thiserror" 2138 + +version = "1.0.32" 2139 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2140 + +checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994" 2141 + +dependencies = [ 2142 + + "thiserror-impl", 2143 + +] 2144 + + 2145 + +[[package]] 2146 + +name = "thiserror-impl" 2147 + +version = "1.0.32" 2148 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2149 + +checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21" 2150 + +dependencies = [ 2151 + + "proc-macro2", 2152 + + "quote", 2153 + + "syn", 2154 + +] 2155 + + 2156 + +[[package]] 2157 + +name = "thread_local" 2158 + +version = "1.1.4" 2159 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2160 + +checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 2161 + +dependencies = [ 2162 + + "once_cell", 2163 + +] 2164 + + 2165 + +[[package]] 2166 + +name = "time" 2167 + +version = "0.1.44" 2168 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2169 + +checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" 2170 + +dependencies = [ 2171 + + "libc", 2172 + + "wasi 0.10.0+wasi-snapshot-preview1", 2173 + + "winapi 0.3.9", 2174 + +] 2175 + + 2176 + +[[package]] 2177 + +name = "time" 2178 + +version = "0.3.12" 2179 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2180 + +checksum = "74b7cc93fc23ba97fde84f7eea56c55d1ba183f495c6715defdfc7b9cb8c870f" 2181 + +dependencies = [ 2182 + + "itoa 1.0.3", 2183 + + "js-sys", 2184 + + "libc", 2185 + + "num_threads", 2186 + + "serde", 2187 + +] 2188 + + 2189 + +[[package]] 2190 + +name = "tinystr" 2191 + +version = "0.3.4" 2192 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2193 + +checksum = "29738eedb4388d9ea620eeab9384884fc3f06f586a2eddb56bedc5885126c7c1" 2194 + + 2195 + +[[package]] 2196 + +name = "tokio" 2197 + +version = "1.20.1" 2198 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2199 + +checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" 2200 + +dependencies = [ 2201 + + "autocfg", 2202 + + "bytes", 2203 + + "libc", 2204 + + "memchr", 2205 + + "mio 0.8.4", 2206 + + "num_cpus", 2207 + + "once_cell", 2208 + + "pin-project-lite", 2209 + + "signal-hook-registry", 2210 + + "socket2", 2211 + + "tokio-macros", 2212 + + "winapi 0.3.9", 2213 + +] 2214 + + 2215 + +[[package]] 2216 + +name = "tokio-macros" 2217 + +version = "1.8.0" 2218 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2219 + +checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" 2220 + +dependencies = [ 2221 + + "proc-macro2", 2222 + + "quote", 2223 + + "syn", 2224 + +] 2225 + + 2226 + +[[package]] 2227 + +name = "tokio-native-tls" 2228 + +version = "0.3.0" 2229 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2230 + +checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" 2231 + +dependencies = [ 2232 + + "native-tls", 2233 + + "tokio", 2234 + +] 2235 + + 2236 + +[[package]] 2237 + +name = "tokio-util" 2238 + +version = "0.7.3" 2239 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2240 + +checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45" 2241 + +dependencies = [ 2242 + + "bytes", 2243 + + "futures-core", 2244 + + "futures-sink", 2245 + + "pin-project-lite", 2246 + + "tokio", 2247 + +] 2248 + + 2249 + +[[package]] 2250 + +name = "toml" 2251 + +version = "0.5.9" 2252 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2253 + +checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 2254 + +dependencies = [ 2255 + + "serde", 2256 + +] 2257 + + 2258 + +[[package]] 2259 + +name = "tower" 2260 + +version = "0.4.13" 2261 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2262 + +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 2263 + +dependencies = [ 2264 + + "futures-core", 2265 + + "futures-util", 2266 + + "pin-project", 2267 + + "pin-project-lite", 2268 + + "tokio", 2269 + + "tower-layer", 2270 + + "tower-service", 2271 + + "tracing", 2272 + +] 2273 + + 2274 + +[[package]] 2275 + +name = "tower-http" 2276 + +version = "0.2.5" 2277 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2278 + +checksum = "aba3f3efabf7fb41fae8534fc20a817013dd1c12cb45441efb6c82e6556b4cd8" 2279 + +dependencies = [ 2280 + + "bitflags", 2281 + + "bytes", 2282 + + "futures-core", 2283 + + "futures-util", 2284 + + "http", 2285 + + "http-body", 2286 + + "http-range-header", 2287 + + "httpdate", 2288 + + "mime", 2289 + + "mime_guess", 2290 + + "percent-encoding", 2291 + + "pin-project-lite", 2292 + + "tokio", 2293 + + "tokio-util", 2294 + + "tower-layer", 2295 + + "tower-service", 2296 + +] 2297 + + 2298 + +[[package]] 2299 + +name = "tower-layer" 2300 + +version = "0.3.1" 2301 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2302 + +checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62" 2303 + + 2304 + +[[package]] 2305 + +name = "tower-service" 2306 + +version = "0.3.2" 2307 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2308 + +checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2309 + + 2310 + +[[package]] 2311 + +name = "tracing" 2312 + +version = "0.1.36" 2313 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2314 + +checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307" 2315 + +dependencies = [ 2316 + + "cfg-if 1.0.0", 2317 + + "log", 2318 + + "pin-project-lite", 2319 + + "tracing-core", 2320 + +] 2321 + + 2322 + +[[package]] 2323 + +name = "tracing-core" 2324 + +version = "0.1.29" 2325 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2326 + +checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7" 2327 + +dependencies = [ 2328 + + "once_cell", 2329 + +] 2330 + + 2331 + +[[package]] 2332 + +name = "try-lock" 2333 + +version = "0.2.3" 2334 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2335 + +checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 2336 + + 2337 + +[[package]] 2338 + +name = "type-map" 2339 + +version = "0.4.0" 2340 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2341 + +checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46" 2342 + +dependencies = [ 2343 + + "rustc-hash", 2344 + +] 2345 + + 2346 + +[[package]] 2347 + +name = "typenum" 2348 + +version = "1.15.0" 2349 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2350 + +checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 2351 + + 2352 + +[[package]] 2353 + +name = "ucd-trie" 2354 + +version = "0.1.4" 2355 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2356 + +checksum = "89570599c4fe5585de2b388aab47e99f7fa4e9238a1399f707a02e356058141c" 2357 + + 2358 + +[[package]] 2359 + +name = "uncased" 2360 + +version = "0.9.7" 2361 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2362 + +checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622" 2363 + +dependencies = [ 2364 + + "version_check", 2365 + +] 2366 + + 2367 + +[[package]] 2368 + +name = "unic-char-property" 2369 + +version = "0.9.0" 2370 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2371 + +checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 2372 + +dependencies = [ 2373 + + "unic-char-range", 2374 + +] 2375 + + 2376 + +[[package]] 2377 + +name = "unic-char-range" 2378 + +version = "0.9.0" 2379 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2380 + +checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 2381 + + 2382 + +[[package]] 2383 + +name = "unic-common" 2384 + +version = "0.9.0" 2385 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2386 + +checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 2387 + + 2388 + +[[package]] 2389 + +name = "unic-langid" 2390 + +version = "0.9.0" 2391 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2392 + +checksum = "73328fcd730a030bdb19ddf23e192187a6b01cd98be6d3140622a89129459ce5" 2393 + +dependencies = [ 2394 + + "unic-langid-impl", 2395 + +] 2396 + + 2397 + +[[package]] 2398 + +name = "unic-langid-impl" 2399 + +version = "0.9.0" 2400 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2401 + +checksum = "1a4a8eeaf0494862c1404c95ec2f4c33a2acff5076f64314b465e3ddae1b934d" 2402 + +dependencies = [ 2403 + + "tinystr", 2404 + +] 2405 + + 2406 + +[[package]] 2407 + +name = "unic-segment" 2408 + +version = "0.9.0" 2409 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2410 + +checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23" 2411 + +dependencies = [ 2412 + + "unic-ucd-segment", 2413 + +] 2414 + + 2415 + +[[package]] 2416 + +name = "unic-ucd-segment" 2417 + +version = "0.9.0" 2418 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2419 + +checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700" 2420 + +dependencies = [ 2421 + + "unic-char-property", 2422 + + "unic-char-range", 2423 + + "unic-ucd-version", 2424 + +] 2425 + + 2426 + +[[package]] 2427 + +name = "unic-ucd-version" 2428 + +version = "0.9.0" 2429 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2430 + +checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 2431 + +dependencies = [ 2432 + + "unic-common", 2433 + +] 2434 + + 2435 + +[[package]] 2436 + +name = "unicase" 2437 + +version = "2.6.0" 2438 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2439 + +checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 2440 + +dependencies = [ 2441 + + "version_check", 2442 + +] 2443 + + 2444 + +[[package]] 2445 + +name = "unicode-ident" 2446 + +version = "1.0.3" 2447 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2448 + +checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf" 2449 + + 2450 + +[[package]] 2451 + +name = "unicode-width" 2452 + +version = "0.1.9" 2453 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2454 + +checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" 2455 + + 2456 + +[[package]] 2457 + +name = "utf-8" 2458 + +version = "0.7.6" 2459 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2460 + +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 2461 + + 2462 + +[[package]] 2463 + +name = "vcpkg" 2464 + +version = "0.2.15" 2465 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2466 + +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2467 + + 2468 + +[[package]] 2469 + +name = "version_check" 2470 + +version = "0.9.4" 2471 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2472 + +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2473 + + 2474 + +[[package]] 2475 + +name = "walkdir" 2476 + +version = "2.3.2" 2477 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2478 + +checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 2479 + +dependencies = [ 2480 + + "same-file", 2481 + + "winapi 0.3.9", 2482 + + "winapi-util", 2483 + +] 2484 + + 2485 + +[[package]] 2486 + +name = "want" 2487 + +version = "0.3.0" 2488 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2489 + +checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 2490 + +dependencies = [ 2491 + + "log", 2492 + + "try-lock", 2493 + +] 2494 + + 2495 + +[[package]] 2496 + +name = "wasi" 2497 + +version = "0.9.0+wasi-snapshot-preview1" 2498 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2499 + +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 2500 + + 2501 + +[[package]] 2502 + +name = "wasi" 2503 + +version = "0.10.0+wasi-snapshot-preview1" 2504 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2505 + +checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 2506 + + 2507 + +[[package]] 2508 + +name = "wasi" 2509 + +version = "0.11.0+wasi-snapshot-preview1" 2510 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2511 + +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2512 + + 2513 + +[[package]] 2514 + +name = "wasm-bindgen" 2515 + +version = "0.2.82" 2516 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2517 + +checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d" 2518 + +dependencies = [ 2519 + + "cfg-if 1.0.0", 2520 + + "wasm-bindgen-macro", 2521 + +] 2522 + + 2523 + +[[package]] 2524 + +name = "wasm-bindgen-backend" 2525 + +version = "0.2.82" 2526 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2527 + +checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f" 2528 + +dependencies = [ 2529 + + "bumpalo", 2530 + + "log", 2531 + + "once_cell", 2532 + + "proc-macro2", 2533 + + "quote", 2534 + + "syn", 2535 + + "wasm-bindgen-shared", 2536 + +] 2537 + + 2538 + +[[package]] 2539 + +name = "wasm-bindgen-macro" 2540 + +version = "0.2.82" 2541 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2542 + +checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602" 2543 + +dependencies = [ 2544 + + "quote", 2545 + + "wasm-bindgen-macro-support", 2546 + +] 2547 + + 2548 + +[[package]] 2549 + +name = "wasm-bindgen-macro-support" 2550 + +version = "0.2.82" 2551 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2552 + +checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da" 2553 + +dependencies = [ 2554 + + "proc-macro2", 2555 + + "quote", 2556 + + "syn", 2557 + + "wasm-bindgen-backend", 2558 + + "wasm-bindgen-shared", 2559 + +] 2560 + + 2561 + +[[package]] 2562 + +name = "wasm-bindgen-shared" 2563 + +version = "0.2.82" 2564 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2565 + +checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a" 2566 + + 2567 + +[[package]] 2568 + +name = "winapi" 2569 + +version = "0.2.8" 2570 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2571 + +checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 2572 + + 2573 + +[[package]] 2574 + +name = "winapi" 2575 + +version = "0.3.9" 2576 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2577 + +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2578 + +dependencies = [ 2579 + + "winapi-i686-pc-windows-gnu", 2580 + + "winapi-x86_64-pc-windows-gnu", 2581 + +] 2582 + + 2583 + +[[package]] 2584 + +name = "winapi-build" 2585 + +version = "0.1.1" 2586 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2587 + +checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 2588 + + 2589 + +[[package]] 2590 + +name = "winapi-i686-pc-windows-gnu" 2591 + +version = "0.4.0" 2592 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2593 + +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2594 + + 2595 + +[[package]] 2596 + +name = "winapi-util" 2597 + +version = "0.1.5" 2598 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2599 + +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 2600 + +dependencies = [ 2601 + + "winapi 0.3.9", 2602 + +] 2603 + + 2604 + +[[package]] 2605 + +name = "winapi-x86_64-pc-windows-gnu" 2606 + +version = "0.4.0" 2607 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2608 + +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2609 + + 2610 + +[[package]] 2611 + +name = "windows-sys" 2612 + +version = "0.36.1" 2613 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2614 + +checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 2615 + +dependencies = [ 2616 + + "windows_aarch64_msvc", 2617 + + "windows_i686_gnu", 2618 + + "windows_i686_msvc", 2619 + + "windows_x86_64_gnu", 2620 + + "windows_x86_64_msvc", 2621 + +] 2622 + + 2623 + +[[package]] 2624 + +name = "windows_aarch64_msvc" 2625 + +version = "0.36.1" 2626 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2627 + +checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 2628 + + 2629 + +[[package]] 2630 + +name = "windows_i686_gnu" 2631 + +version = "0.36.1" 2632 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2633 + +checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 2634 + + 2635 + +[[package]] 2636 + +name = "windows_i686_msvc" 2637 + +version = "0.36.1" 2638 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2639 + +checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 2640 + + 2641 + +[[package]] 2642 + +name = "windows_x86_64_gnu" 2643 + +version = "0.36.1" 2644 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2645 + +checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 2646 + + 2647 + +[[package]] 2648 + +name = "windows_x86_64_msvc" 2649 + +version = "0.36.1" 2650 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2651 + +checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 2652 + + 2653 + +[[package]] 2654 + +name = "ws2_32-sys" 2655 + +version = "0.2.1" 2656 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2657 + +checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" 2658 + +dependencies = [ 2659 + + "winapi 0.2.8", 2660 + + "winapi-build", 2661 + +] 2662 + + 2663 + +[[package]] 2664 + +name = "xml-rs" 2665 + +version = "0.8.4" 2666 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2667 + +checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" 2668 + + 2669 + +[[package]] 2670 + +name = "xml5ever" 2671 + +version = "0.16.2" 2672 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2673 + +checksum = "9234163818fd8e2418fcde330655e757900d4236acd8cc70fef345ef91f6d865" 2674 + +dependencies = [ 2675 + + "log", 2676 + + "mac", 2677 + + "markup5ever", 2678 + + "time 0.1.44", 2679 + +] 2680 + + 2681 + +[[package]] 2682 + +name = "yaml-rust" 2683 + +version = "0.4.5" 2684 + +source = "registry+https://github.com/rust-lang/crates.io-index" 2685 + +checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 2686 + +dependencies = [ 2687 + + "linked-hash-map", 2688 + +] 2689 + + 2690 + +[[package]] 2691 + +name = "zine" 2692 + +version = "0.6.0" 2693 + +dependencies = [ 2694 + + "anyhow", 2695 + + "clap", 2696 + + "fluent", 2697 + + "html5ever", 2698 + + "http-body", 2699 + + "hyper", 2700 + + "hyper-tls", 2701 + + "include_dir", 2702 + + "intl-memoizer", 2703 + + "lol_html", 2704 + + "markup5ever_rcdom", 2705 + + "notify", 2706 + + "once_cell", 2707 + + "parking_lot", 2708 + + "pulldown-cmark", 2709 + + "rayon", 2710 + + "regex", 2711 + + "serde", 2712 + + "serde_json", 2713 + + "syntect", 2714 + + "tera", 2715 + + "test-case", 2716 + + "time 0.3.12", 2717 + + "tokio", 2718 + + "toml", 2719 + + "tower", 2720 + + "tower-http", 2721 + + "walkdir", 2722 + +]
+36
pkgs/applications/misc/zine/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , rustPlatform 5 + , pkg-config 6 + , openssl 7 + }: 8 + rustPlatform.buildRustPackage rec { 9 + pname = "zine"; 10 + version = "0.6.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "zineland"; 14 + repo = pname; 15 + rev = "v${version}"; 16 + sha256 = "sha256-Pd/UAg6O9bOvrdvbY46Vf8cxFzjonEwcwPaaW59vH6E="; 17 + }; 18 + 19 + cargoPatches = [ ./Cargo.lock.patch ]; # Repo does not provide Cargo.lock 20 + 21 + cargoSha256 = "sha256-qpzBDyNSZblmdimnnL4T/wS+6EXpduJ1U2+bfxM7piM="; 22 + 23 + nativeBuildInputs = [ 24 + pkg-config 25 + ]; 26 + buildInputs = [ 27 + openssl 28 + ]; 29 + 30 + meta = with lib; { 31 + description = "A simple and opinionated tool to build your own magazine"; 32 + homepage = "https://github.com/zineland/zine"; 33 + license = licenses.asl20; 34 + maintainers = with maintainers; [ dit7ya ]; 35 + }; 36 + }
-1
pkgs/applications/networking/browsers/chromium/ungoogled-flags.toml
··· 7 7 enable_mdns=false 8 8 enable_mse_mpeg2ts_stream_parser=true 9 9 enable_nacl=false 10 - enable_one_click_signin=false 11 10 enable_reading_list=false 12 11 enable_remoting=false 13 12 enable_reporting=false
+8 -8
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 45 45 } 46 46 }, 47 47 "ungoogled-chromium": { 48 - "version": "103.0.5060.134", 49 - "sha256": "0wdmy15602qxrb403p8yyx69k7py85fbawdsgap1l6z4h4j2g2p4", 50 - "sha256bin64": "143jc70cyns2bh5cizy32fdsfl6hq22rphx216vywhncdsd96cnw", 48 + "version": "104.0.5112.81", 49 + "sha256": "0x17jzzvn2aqx3ahqyi6ijyn70sn79kg648r0ks9m5gib1bbgf0y", 50 + "sha256bin64": null, 51 51 "deps": { 52 52 "gn": { 53 - "version": "2022-05-11", 53 + "version": "2022-06-08", 54 54 "url": "https://gn.googlesource.com/gn", 55 - "rev": "578a7fe4c3c6b0bc2ae1fd2e37f14857d09895bf", 56 - "sha256": "03dqfrdpf5xxl64dby3qmbwpzdq2gsa8g7xl438py3a629rgxg63" 55 + "rev": "2ecd43a10266bd091c98e6dcde507c64f6a0dad3", 56 + "sha256": "1q06vsz9b4bb764wy1wy8n177z2pgpm97kq3rl1hmq185mz5fhra" 57 57 }, 58 58 "ungoogled-patches": { 59 - "rev": "103.0.5060.134-1", 60 - "sha256": "00mpmyaa8bqxf1f4vhk1waxhjbhcwab8m1x1vf341al64f6bmr1r" 59 + "rev": "104.0.5112.81-1", 60 + "sha256": "0dvwh470h06x5a4p8kw22pi4lvch16knh90i2kh10y0wfggqz78w" 61 61 } 62 62 } 63 63 }
+2 -2
pkgs/applications/networking/cluster/argocd-autopilot/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "argocd-autopilot"; 5 - version = "0.4.2"; 5 + version = "0.4.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "argoproj-labs"; 9 9 repo = "argocd-autopilot"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-xwcETaeoxnfZqW48IJRpJkONuPNuFR5ngUYAMDKWMtk="; 11 + sha256 = "sha256-24PWSW0qXTUqAmIAb2a/cNs3y5lXnhvzp4y92OlIaxE="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-rJj9GFNX9OUMzkdr9D9dzucSZe10iW2LpqybhXD0m6s=";
+2 -2
pkgs/applications/networking/cluster/cilium/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cilium-cli"; 5 - version = "0.12.0"; 5 + version = "0.12.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cilium"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-/fVPo9aO2UhX/qsyjFUykFz4am7R2USmdvYqhQcT7q8="; 11 + sha256 = "sha256-WCOZuHJBssRM75+EO9s11t7ASkLxHbsVe+qmb/glFWU="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+3 -3
pkgs/applications/networking/cluster/civo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "civo"; 5 - version = "1.0.30"; 5 + version = "1.0.31"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "civo"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-7UEnp42IHW7CyfnUr+j8HP9qV1vtIk9j5mDOXOTi4LY="; 11 + sha256 = "sha256-QyGsO8rvc+noAbG2IN4uvTaX1PGW5zHv3YRbYGm2Iq4="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-2vbjYki+i7DfegvdTFo7XNf9droNeLDzAP2skpLDjDU="; 14 + vendorSha256 = "sha256-2D+MJK8vf0AlLUHjR2elaHlIcvmrVovYsBfy0ax0aXg="; 15 15 16 16 CGO_ENABLED = 0; 17 17
+3 -3
pkgs/applications/networking/cluster/k9s/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "k9s"; 5 - version = "0.26.1"; 5 + version = "0.26.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "derailed"; 9 9 repo = "k9s"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Ta4gKtqYquylSLZ6pALYEnPXQG6jJuaabyr7sepNL5A="; 11 + sha256 = "sha256-Czjx6YTyFKAP8ZuwBpTpRfjDdRdd8GQ0ggbe5LMb8uA="; 12 12 }; 13 13 14 14 ldflags = [ ··· 20 20 21 21 tags = [ "netgo" ]; 22 22 23 - vendorSha256 = "sha256-17jyQXF8O5iNFR/5L+51W3LcPrSQ6gPf9M6qqV4otn0="; 23 + vendorSha256 = "sha256-rnROcJA4f0YjDGKEncrMmf/43VKrbgpmM3TvV1MMiWU="; 24 24 25 25 # TODO investigate why some config tests are failing 26 26 doCheck = !(stdenv.isDarwin && stdenv.isAarch64);
+2 -2
pkgs/applications/networking/cluster/kubeone/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "kubeone"; 9 - version = "1.4.5"; 9 + version = "1.4.6"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "kubermatic"; 13 13 repo = "kubeone"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-2+67ctiFkEV4UU7vcF/s+qJWDpdzSRaiy9pa9zt+ccA="; 15 + sha256 = "sha256-2abuKLAqOaRceokmNb7YG0qg/iYbPhSTG75Rs5mwHDU="; 16 16 }; 17 17 18 18 vendorSha256 = "sha256-kI5i1us3Ooh603HOz9Y+HlfPUy/1J8z89/jvKEenpLw=";
+3 -3
pkgs/applications/networking/cluster/nerdctl/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "nerdctl"; 13 - version = "0.22.1"; 13 + version = "0.22.2"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "containerd"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-B9C35uxu/l4hFaSnjvXn7SChsCvXok/LcHkiwcndyts="; 19 + sha256 = "sha256-D5NnCJrQQ2Iam9A5rxuiT6XOf00x/LOiwEC8SjSZdt0="; 20 20 }; 21 21 22 - vendorSha256 = "sha256-cwtjjb0a1VsZbTyz0TintD5Hdc8K0j7EBiE4UwhGU7c="; 22 + vendorSha256 = "sha256-5QcltDNvhfyzUsFNbSjVnh0OMTxj+JU0VnDADSWTD48="; 23 23 24 24 nativeBuildInputs = [ makeWrapper installShellFiles ]; 25 25
+3 -3
pkgs/applications/networking/cluster/werf/default.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "werf"; 14 - version = "1.2.144"; 14 + version = "1.2.146"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "werf"; 18 18 repo = "werf"; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-5hfXHoU7hmiuLaS9nS6MAS6tJAmTwxE9VqBZ29hv56A="; 20 + sha256 = "sha256-6OIV9vs0XWlhosWrKX/GL5q2REYzX5UMd1IHEiM1/qA="; 21 21 }; 22 22 23 - vendorSha256 = "sha256-m+qt+pqLzQyzQkKzEbBkzgTlRjpaqJNF8tcirBx4Htc="; 23 + vendorSha256 = "sha256-yWKIaH0KXiJR1EVu/htqeDi7qEGu8IvD6m1GcMUdgJo="; 24 24 25 25 proxyVendor = true; 26 26
+3
pkgs/applications/networking/instant-messengers/ferdi/default.nix
··· 31 31 maintainers = with maintainers; [ davidtwco ma27 ]; 32 32 platforms = [ "x86_64-linux" ]; 33 33 hydraPlatforms = [ ]; 34 + knownVulnerabilities = [ 35 + "CVE-2022-32320" 36 + ]; 34 37 }; 35 38 }
+1 -1
pkgs/applications/networking/seahub/default.nix
··· 40 40 propagatedBuildInputs = with python.pkgs; [ 41 41 django 42 42 future 43 + django-compressor 43 44 django-statici18n 44 45 django-webpack-loader 45 46 django-simple-captcha ··· 48 49 mysqlclient 49 50 pillow 50 51 python-dateutil 51 - django_compressor 52 52 djangorestframework 53 53 openpyxl 54 54 requests
+3 -3
pkgs/applications/version-management/gitlab/update.py
··· 1 1 #!/usr/bin/env nix-shell 2 - #! nix-shell -I nixpkgs=../../../.. -i python3 -p bundix bundler nix-update nix nix-universal-prefetch python3 python3Packages.requests python3Packages.click python3Packages.click-log prefetch-yarn-deps 2 + #! nix-shell -I nixpkgs=../../../.. -i python3 -p bundix bundler nix-update nix nix-universal-prefetch python3 python3Packages.requests python3Packages.click python3Packages.click-log python3Packages.packaging prefetch-yarn-deps 3 3 4 4 import click 5 5 import click_log ··· 10 10 import json 11 11 import pathlib 12 12 import tempfile 13 - from distutils.version import LooseVersion 13 + from packaging.version import Version 14 14 from typing import Iterable 15 15 16 16 import requests ··· 37 37 versions = list(filter(self.version_regex.match, tags)) 38 38 39 39 # sort, but ignore v and -ee for sorting comparisons 40 - versions.sort(key=lambda x: LooseVersion(x.replace("v", "").replace("-ee", "")), reverse=True) 40 + versions.sort(key=lambda x: Version(x.replace("v", "").replace("-ee", "")), reverse=True) 41 41 return versions 42 42 43 43 def get_git_hash(self, rev: str):
+2 -2
pkgs/applications/virtualization/containerd/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "containerd"; 13 - version = "1.6.6"; 13 + version = "1.6.7"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "containerd"; 17 17 repo = "containerd"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-cmarbad6VzcGTCHT/NtApkYsK/oo6WZQ//q8Fvh+ez8="; 19 + sha256 = "sha256-JrpsASeDz6sUpYdBlkTvPdsl4LQ7PcUwFss5uWFEO84="; 20 20 }; 21 21 22 22 vendorSha256 = null;
+4 -3
pkgs/development/interpreters/wasmtime/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "wasmtime"; 5 - version = "0.38.0"; 5 + version = "0.39.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bytecodealliance"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-q+6w22MbI3HRpmkybZXXWbkK7jbd6lyxodC3EpSovRI="; 11 + sha256 = "sha256-cU03wm1+V++mV7j7VyMtjAYrPldzTysNzpJ8m0q4Rx8="; 12 12 fetchSubmodules = true; 13 13 }; 14 14 15 - cargoSha256 = "sha256-uuhGb0/RDz1/3O8WYiyGIUQFh0WZWJgujqtvH+hgbdA="; 15 + cargoSha256 = "sha256-DnThste0SbBdpGAUYhmwbdQFNEB3LozyDf0X8r2A90Q="; 16 16 17 17 doCheck = true; 18 18 checkFlags = [ 19 19 "--skip=cli_tests::run_cwasm" 20 + "--skip=commands::compile::test::test_unsupported_flags_compile" 20 21 "--skip=commands::compile::test::test_aarch64_flags_compile" 21 22 "--skip=commands::compile::test::test_successful_compile" 22 23 "--skip=commands::compile::test::test_x64_flags_compile"
+2 -2
pkgs/development/libraries/ncnn/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "ncnn"; 14 - version = "20220721"; 14 + version = "20220729"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "Tencent"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "sha256-35OwvYYZtfugvujWl6bL8p8HU+z1kQsvnJ+aQOgO8V8="; 20 + sha256 = "sha256-hZVeW3svuVpwQhQz67uqTPZ7B9pisLCwHhXB2zMLygo="; 21 21 }; 22 22 23 23 patches = [
+2 -2
pkgs/development/libraries/qtstyleplugin-kvantum/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "qtstyleplugin-kvantum"; 8 - version = "1.0.3"; 8 + version = "1.0.4"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "tsujan"; 12 12 repo = "Kvantum"; 13 13 rev = "V${version}"; 14 - sha256 = "hY8QQVcP3E+GAdLOqtVbqCWBcxS2M6sMOr/vr+DryyQ="; 14 + sha256 = "chdtcx73mfr/b1P3yVevx0m7HkMFzEYG7YLuhSyG7rk="; 15 15 }; 16 16 17 17 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/xmlsec/default.nix
··· 4 4 lib.fix (self: 5 5 stdenv.mkDerivation rec { 6 6 pname = "xmlsec"; 7 - version = "1.2.33"; 7 + version = "1.2.34"; 8 8 9 9 src = fetchurl { 10 10 url = "https://www.aleksey.com/xmlsec/download/xmlsec1-${version}.tar.gz"; 11 - sha256 = "sha256-JgQdNaIKJF7Vovue4HXxCCVmTSdCIMtRkDQPqHpNCTE="; 11 + sha256 = "sha256-Us7UlD81vX0IGKOCmMFSjKSsilRED9cRNKB9LRNwomI="; 12 12 }; 13 13 14 14 patches = [
+2 -2
pkgs/development/python-modules/ansible/default.nix
··· 20 20 21 21 let 22 22 pname = "ansible"; 23 - version = "6.1.0"; 23 + version = "6.2.0"; 24 24 in 25 25 buildPythonPackage { 26 26 inherit pname version; ··· 30 30 31 31 src = fetchPypi { 32 32 inherit pname version; 33 - sha256 = "sha256-keSyOUXxkKqhI8a6T4rMuOf4kFmRvTuxm4mvvcpFaCI="; 33 + sha256 = "sha256-va8rL9km/xifveL+/nI0cz8yw2/EEwM/pdk5RfvcBqY="; 34 34 }; 35 35 36 36 postPatch = ''
+2 -2
pkgs/development/python-modules/cock/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "cock"; 5 - version = "0.9.0"; 5 + version = "0.10.0"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "0d9021c2d9ce0dbf495a3c5ef960a9996a0681bb96ff6099f37302a3813a184e"; 9 + sha256 = "sha256-B6r6+b+x5vEp4+yfhV03dfjlVjRbW2W6Pm91PC0Tb+o="; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ click sortedcontainers pyyaml ];
+55
pkgs/development/python-modules/django-compressor/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , rcssmin 5 + , rjsmin 6 + , django-appconf 7 + , beautifulsoup4 8 + , brotli 9 + , pytestCheckHook 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "django-compressor"; 14 + version = "4.1"; 15 + format = "setuptools"; 16 + 17 + src = fetchPypi { 18 + pname = "django_compressor"; 19 + inherit version; 20 + hash = "sha256-js5iHSqY9sZjVIDLizcB24kKmfeT+VyiDLAKvBlNMx0="; 21 + }; 22 + 23 + postPatch = '' 24 + substituteInPlace setup.py \ 25 + --replace "rcssmin == 1.1.0" "rcssmin>=1.1.0" \ 26 + --replace "rjsmin == 1.2.0" "rjsmin>=1.2.0" 27 + ''; 28 + 29 + propagatedBuildInputs = [ 30 + rcssmin 31 + rjsmin 32 + django-appconf 33 + ]; 34 + 35 + pythonImportsCheck = [ 36 + "compressor" 37 + ]; 38 + 39 + doCheck = false; # missing package django-sekizai 40 + 41 + checkInputs = [ 42 + beautifulsoup4 43 + brotli 44 + pytestCheckHook 45 + ]; 46 + 47 + DJANGO_SETTINGS_MODULE = "compressor.test_settings"; 48 + 49 + meta = with lib; { 50 + description = "Compresses linked and inline JavaScript or CSS into single cached files"; 51 + homepage = "https://django-compressor.readthedocs.org/en/latest/"; 52 + license = licenses.mit; 53 + maintainers = with maintainers; [ desiderius ]; 54 + }; 55 + }
+2 -2
pkgs/development/python-modules/django-mailman3/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, django-gravatar2, django_compressor 1 + { lib, buildPythonPackage, fetchPypi, django-gravatar2, django-compressor 2 2 , django-allauth, mailmanclient, django, mock 3 3 }: 4 4 ··· 12 12 }; 13 13 14 14 propagatedBuildInputs = [ 15 - django-gravatar2 django_compressor django-allauth mailmanclient 15 + django-gravatar2 django-compressor django-allauth mailmanclient 16 16 ]; 17 17 checkInputs = [ django mock ]; 18 18
-29
pkgs/development/python-modules/django_compressor/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, 2 - rcssmin, rjsmin, django-appconf }: 3 - 4 - buildPythonPackage rec { 5 - pname = "django_compressor"; 6 - version = "4.0"; 7 - 8 - src = fetchPypi { 9 - inherit pname version; 10 - sha256 = "sha256-HbkbbQQpNjami9Eyjce7kNY2sClfZ7HMbU+hArn9JfY="; 11 - }; 12 - postPatch = '' 13 - substituteInPlace setup.py \ 14 - --replace 'rcssmin == 1.0.6' 'rcssmin' \ 15 - --replace 'rjsmin == 1.1.0' 'rjsmin' 16 - ''; 17 - 18 - # requires django-sekizai, which we don't have packaged yet 19 - doCheck = false; 20 - 21 - propagatedBuildInputs = [ rcssmin rjsmin django-appconf ]; 22 - 23 - meta = with lib; { 24 - description = "Compresses linked and inline JavaScript or CSS into single cached files"; 25 - homepage = "https://django-compressor.readthedocs.org/en/latest/"; 26 - license = licenses.mit; 27 - maintainers = with maintainers; [ desiderius ]; 28 - }; 29 - }
+2 -2
pkgs/development/python-modules/nclib/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "nclib"; 9 - version = "1.0.1"; 9 + version = "1.0.2"; 10 10 disabled = pythonOlder "3.5"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "9d41adb7df01a3fead10bc9698a175936b263d6bd18997078ed17e4fa61734d1"; 14 + sha256 = "sha256-rA8oeYvMhw8HURxPLBRqpMHnAez/xBjyPFoKXIIvBjg="; 15 15 }; 16 16 17 17 # Project has no tests
+2 -2
pkgs/development/python-modules/nocasedict/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "nocasedict"; 10 - version = "1.0.3"; 10 + version = "1.0.4"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "sha256-giC5e6BrCOst7e13TEBsd+DKDVNSrnEkn2+dHyoXvXs="; 14 + sha256 = "sha256-fBEdpM79JEQzy2M3ev8IGkD4S92unm83bGfwhsD4Bto="; 15 15 }; 16 16 17 17 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/nocaselist/default.nix
··· 4 4 5 5 buildPythonPackage rec { 6 6 pname = "nocaselist"; 7 - version = "1.0.5"; 7 + version = "1.0.6"; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "sha256-4cEsoq6dNFs0lI8sj2DjiUYZ4r4u0otOzF5/HeoRfR0="; 11 + sha256 = "sha256-SPBn+MuEEkXzTQMSC8G6mQDxOxnLUbzGx77gF/fIdNo="; 12 12 }; 13 13 14 14 checkInputs = [
+2 -2
pkgs/development/python-modules/pytest-mpl/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pytest-mpl"; 15 - version = "0.16.0"; 15 + version = "0.16.1"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "sha256-TTqagfB15FEAxk+VWsEfaELT+B6Tw0wtXFi3wD2kD/0="; 19 + sha256 = "sha256-LVcWgRJOj/X04rnA0EfTfQSZ1rbY8vSaG1DN2ZMQRGk="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/rcssmin/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi }: 2 2 buildPythonPackage rec { 3 3 pname = "rcssmin"; 4 - version = "1.1.0"; 4 + version = "1.1.1"; 5 5 6 6 src = fetchPypi { 7 7 inherit pname version; 8 - sha256 = "27fc400627fd3d328b7fe95af2a01f5d0af6b5af39731af5d071826a1f08e362"; 8 + sha256 = "sha256-T5QAtDZtKfX1RG9Y54VJr6gzjmpZdAxzEV6fasQT3GQ="; 9 9 }; 10 10 11 11 # The package does not ship tests, and the setup machinary confuses
+2 -2
pkgs/development/python-modules/rjsmin/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi }: 2 2 buildPythonPackage rec { 3 3 pname = "rjsmin"; 4 - version = "1.2.0"; 4 + version = "1.2.1"; 5 5 6 6 src = fetchPypi { 7 7 inherit pname version; 8 - sha256 = "6c529feb6c400984452494c52dd9fdf59185afeacca2afc5174a28ab37751a1b"; 8 + sha256 = "sha256-H5gr6OARQ4d3qUMHJ5tAE0o5NfwPB5MS7imXJbivVBE="; 9 9 }; 10 10 11 11 # The package does not ship tests, and the setup machinary confuses
+2 -2
pkgs/development/python-modules/setuptools-declarative-requirements/default.nix
··· 3 3 4 4 buildPythonPackage rec { 5 5 pname = "setuptools-declarative-requirements"; 6 - version = "1.2.0"; 6 + version = "1.3.0"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "1l8zmcnp9h8sp8hsw7b81djaa1a9yig0y7i4phh5pihqz1gdn7yi"; 10 + sha256 = "sha256-V6W5u5rTUMJ46Kpr5M3rvNklubpx1qcSoXimGM+4mPc="; 11 11 }; 12 12 13 13 buildInputs = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/zeroc-ice/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "zeroc-ice"; 5 - version = "3.7.7"; 5 + version = "3.7.8"; 6 6 7 7 src = fetchPypi { 8 8 inherit version pname; 9 - sha256 = "415f4a673009fe9a5ef67b61c4469ddf14b73857b6d40f02d6b74f02ad935147"; 9 + sha256 = "sha256-kodRHIkMXdFUBGNVRtSyjbVqGQRxPaHqgp6ddFT5ZIY="; 10 10 }; 11 11 12 12 buildInputs = [ openssl bzip2 ];
+2 -2
pkgs/development/tools/analysis/tflint/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tflint"; 5 - version = "0.39.1"; 5 + version = "0.39.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "terraform-linters"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ELf1keTf/iznOBZNvyliAH/4UQo5w8CNEJNf0Z6eDV8="; 11 + sha256 = "sha256-TOI3rkh6v0Ewo+gPo8N7at1orbSTjQkEZKA6sYDv0u8="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-6sk1bFuSCrKt9uMrrwOpX/SBZrjFvtqVPFylbRNHpz4=";
+2 -2
pkgs/development/tools/buildah/default.nix
··· 14 14 15 15 buildGoModule rec { 16 16 pname = "buildah"; 17 - version = "1.26.2"; 17 + version = "1.26.4"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "containers"; 21 21 repo = "buildah"; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-FQ0fYiQBz+Ba8Xe8PWIYpIKyWOYa+NlTNJqzBC64O6M="; 23 + sha256 = "sha256-9cTV1CEf1784oEPns5QULFtcC+w3yU4uafnMCCgpVqQ="; 24 24 }; 25 25 26 26 outputs = [ "out" "man" ];
+11 -1
pkgs/development/tools/continuous-integration/woodpecker/cli.nix
··· 1 - { lib, buildGoModule, callPackage, fetchFromGitHub }: 1 + { lib, buildGoModule, callPackage, fetchFromGitHub, fetchpatch }: 2 2 let 3 3 common = callPackage ./common.nix { }; 4 4 in ··· 6 6 pname = "woodpecker-cli"; 7 7 inherit (common) version src ldflags postBuild; 8 8 vendorSha256 = null; 9 + 10 + patches = [ 11 + # Fixes https://github.com/NixOS/nixpkgs/issues/184875, until a new version 12 + # is released. 13 + (fetchpatch { 14 + name = "display-system-ca-error-only-if-there-is-an-error.patch"; 15 + url = "https://github.com/woodpecker-ci/woodpecker/commit/1fb800329488de74c9db7cfc5dc43fb5a4efbad8.patch"; 16 + sha256 = "sha256-wKI/7PhbxsAD/qrl4nnkHyyQhQcvGlySysnxytGJzfU="; 17 + }) 18 + ]; 9 19 10 20 subPackages = "cmd/cli"; 11 21
+28
pkgs/development/tools/cuelsp/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "cuelsp"; 5 + version = "0.3.3"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "dagger"; 9 + repo = "cuelsp"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-78snbfxm6nSNDQRhj7cC4FSkKeOEUw+wfjhJtP/CpwY="; 12 + }; 13 + 14 + vendorSha256 = "sha256-zg4aXPY2InY5VEX1GLJkGhMlfa5EezObAjIuX/bGvlc="; 15 + 16 + doCheck = false; 17 + 18 + subPackages = [ 19 + "cmd/cuelsp" 20 + ]; 21 + 22 + meta = with lib; { 23 + description = "Language Server implementation for CUE, with built-in support for Dagger"; 24 + homepage = "https://github.com/dagger/cuelsp"; 25 + license = licenses.asl20; 26 + maintainers = with maintainers; [ sagikazarmark ]; 27 + }; 28 + }
+3 -3
pkgs/development/tools/earthly/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "earthly"; 5 - version = "0.6.20"; 5 + version = "0.6.21"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "earthly"; 9 9 repo = "earthly"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-2tdmAoHh9sqX3zWrerNqnwluQB79iZHPuE0xsPOB09w="; 11 + sha256 = "sha256-i/iMrIvslxK+iqTKL7vEZc1ir8A9a0WVQ0J/KfSGyxo="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-LHpmzQeonLFLCs2D1gRACZSdAtRkzzQ7Ftq/2D+PI80="; 14 + vendorSha256 = "sha256-oK8fWi7zThzd1TrN6yd08T9QyVCOA4SAKZ2OPJTcgY8="; 15 15 16 16 ldflags = [ 17 17 "-s" "-w"
+3 -3
pkgs/development/tools/go-task/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "go-task"; 5 - version = "3.14.0"; 5 + version = "3.14.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = pname; 9 9 repo = "task"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-J/pWx/osqP29GERBdzWwPNeA4Rzo6CYdW7GrmspevwM="; 11 + sha256 = "sha256-GbCrMsMxhSjJOsZX4Gq9ZzBJ+F5vXDMi9vSyFrHNt44="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-NlQ/5ibRgmuGDcuiUdzvuexYGnR/34v9fw1DUe3yXxE="; 14 + vendorSha256 = "sha256-xp1s1aixPyXq9oVD8IZYSlUiL8UkIx5c8gYJRpIRD7I="; 15 15 16 16 doCheck = false; 17 17
+3 -3
pkgs/games/pokete/default.nix
··· 7 7 8 8 python3.pkgs.buildPythonApplication rec { 9 9 pname = "pokete"; 10 - version = "0.8.0"; 10 + version = "0.8.2"; 11 11 12 12 format = "other"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "lxgr-linux"; 16 16 repo = "pokete"; 17 - rev = version; 18 - sha256 = "sha256-DDKqxscXtl/i+YKiXAoFHXsGBQpcUvyHfOqwpe0hSgg="; 17 + rev = "v${version}"; 18 + sha256 = "sha256-carQ/m7akdXLO4h5o0cE0EiQmsAyarMAV4AtG3KATYQ="; 19 19 }; 20 20 21 21 pythonPath = with python3.pkgs; [
+10 -10
pkgs/servers/adguardhome/bins.nix
··· 1 1 { fetchurl, fetchzip }: 2 2 { 3 3 x86_64-darwin = fetchzip { 4 - sha256 = "sha256-PYq6AKX3Ifo8vMnPYGjqHwFejOBuQjhfDG5nXnccfvE="; 5 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.8/AdGuardHome_darwin_amd64.zip"; 4 + sha256 = "sha256-SLGzciTzzvW0DTG8v6lNb1IovbOjxBFgFVjNY6MEyKY="; 5 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.9/AdGuardHome_darwin_amd64.zip"; 6 6 }; 7 7 aarch64-darwin = fetchzip { 8 - sha256 = "sha256-ep5/VMO7LmfD6+chG2SGwkc5awoeqACQeP04YpMXI1s="; 9 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.8/AdGuardHome_darwin_arm64.zip"; 8 + sha256 = "sha256-d7hnCM7BJuYfSH89jv516uVyKTMueQmVKQxEeTGIDUE="; 9 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.9/AdGuardHome_darwin_arm64.zip"; 10 10 }; 11 11 i686-linux = fetchurl { 12 - sha256 = "sha256-rD5UDkAMeBfnrEpxfZWgDQEUN+82D6Ul2gjclS8A8CU="; 13 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.8/AdGuardHome_linux_386.tar.gz"; 12 + sha256 = "sha256-wTmUF6NHWis4dyw/bPjAjvZ0aQ1l1BCDlm6eLu4m/0o="; 13 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.9/AdGuardHome_linux_386.tar.gz"; 14 14 }; 15 15 x86_64-linux = fetchurl { 16 - sha256 = "sha256-buBp5WZ1jIzQDbxzVOZC/t3iv1Dw0P/PN3wGBbGaYvU="; 17 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.8/AdGuardHome_linux_amd64.tar.gz"; 16 + sha256 = "sha256-Mxe9Gb1ErrZZl3a+0SqC/0ghoeV51X93YxIOs9gM2lY="; 17 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.9/AdGuardHome_linux_amd64.tar.gz"; 18 18 }; 19 19 aarch64-linux = fetchurl { 20 - sha256 = "sha256-d6Z46L6qeXi5UNPY3/nlTJvVCuQ0lamtR49Z73O87Wc="; 21 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.8/AdGuardHome_linux_arm64.tar.gz"; 20 + sha256 = "sha256-SyHuzXAe24Nf0v9Ds3Z+cbXoIVLCJSj243I6B0XWBlM="; 21 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.9/AdGuardHome_linux_arm64.tar.gz"; 22 22 }; 23 23 }
+1 -1
pkgs/servers/adguardhome/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "adguardhome"; 10 - version = "0.107.8"; 10 + version = "0.107.9"; 11 11 src = sources.${system} or (throw "Source for ${pname} is not available for ${system}"); 12 12 13 13 installPhase = ''
+1 -1
pkgs/servers/mail/mailman/hyperkitty.nix
··· 46 46 django-haystack 47 47 django-mailman3 48 48 django-q 49 - django_compressor 49 + django-compressor 50 50 django-extensions 51 51 djangorestframework 52 52 flufl_lock
+3 -3
pkgs/servers/monitoring/cadvisor/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cadvisor"; 5 - version = "0.44.1"; 5 + version = "0.45.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "google"; 9 9 repo = "cadvisor"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-OVUKQGP9zzlzoC/25BHNbJuP6ELstBMaRFAzUnDSR0U="; 11 + sha256 = "sha256-hH3unhGRrB8IegVaX+j2idY0woMqzchEEXZB/ppzIf0="; 12 12 }; 13 13 14 14 modRoot = "./cmd"; 15 15 16 - vendorSha256 = "sha256-LGMouB76GT/ZvG3kLoo/jmnHT0CEeND9pObTOKaS9T0="; 16 + vendorSha256 = "sha256-Mcelh/nYFcNTrI1Kq9KqkJeSnbgJhd7HfbexhNYbPFg="; 17 17 18 18 ldflags = [ "-s" "-w" "-X github.com/google/cadvisor/version.Version=${version}" ]; 19 19
+3 -3
pkgs/servers/soft-serve/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "soft-serve"; 5 - version = "0.3.2"; 5 + version = "0.3.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "charmbracelet"; 9 9 repo = "soft-serve"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-W/2MNiECzwgRv3jJG0To8vsQjQs8amaEP+dgig6JnOg="; 11 + sha256 = "sha256-LxtVum/yM+G3lyGSsOv3bICQrQC6kZKIMoAA7AnQ8VY="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-98YT0UiVX+ONP+Vgsxf0UWOLF0VV4glEOfHYkGwB3Dg="; 14 + vendorSha256 = "sha256-KUB6w03Dw57baRYhRK1wWVWFvjMLx3KOJnS/YLbE7GE="; 15 15 16 16 doCheck = false; 17 17
+1 -1
pkgs/servers/web-apps/healthchecks/default.nix
··· 38 38 cronsim 39 39 cryptography 40 40 django 41 - django_compressor 41 + django-compressor 42 42 fido2 43 43 minio 44 44 psycopg2
+2 -2
pkgs/servers/web-apps/wallabag/default.nix
··· 15 15 16 16 let 17 17 pname = "wallabag"; 18 - version = "2.5.0"; 18 + version = "2.5.1"; 19 19 in 20 20 stdenv.mkDerivation { 21 21 inherit pname version; ··· 23 23 # GitHub distribution does not include vendored files 24 24 src = fetchurl { 25 25 url = "https://static.wallabag.org/releases/wallabag-release-${version}.tar.gz"; 26 - hash = "sha256-fE/4bVwImQ03wrfdrx6AlulO2xU1M2HIaSOGpTAb02E="; 26 + hash = "sha256-vurjWI5Sh/SFPtxd5cHaaw7edcAzNub/duhOUF+Wshk="; 27 27 }; 28 28 29 29 patches = [
+2 -2
pkgs/servers/web-apps/wordpress/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wordpress"; 5 - version = "6.0"; 5 + version = "6.0.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://wordpress.org/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-GIfzIj2wHW2Ijfd+oLO43eTGJDlhprSG0b7hvpMkvwg="; 9 + sha256 = "sha256-9nhZaASqidfNySgIYpOEZOqyWurr/vqRrhdeFao+8FQ="; 10 10 }; 11 11 12 12 installPhase = ''
+2 -2
pkgs/tools/misc/mongodb-compass/default.nix
··· 33 33 }: 34 34 35 35 let 36 - version = "1.32.5"; 36 + version = "1.32.6"; 37 37 38 38 rpath = lib.makeLibraryPath [ 39 39 alsa-lib ··· 82 82 if stdenv.hostPlatform.system == "x86_64-linux" then 83 83 fetchurl { 84 84 url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb"; 85 - sha256 = "sha256-ANktXRokO0rIkiSj6OQDepB+UfTItBMDkEhD9ia52s4="; 85 + sha256 = "sha256-lrdDy8wtkIBQC/OPdSoKmOFIuajKeu1qtyRHOLZSSVI="; 86 86 } 87 87 else 88 88 throw "MongoDB compass is not supported on ${stdenv.hostPlatform.system}";
+26
pkgs/tools/networking/sipexer/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "sipexer"; 8 + version = "1.0.3"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "miconda"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "sha256-cM40hxHMBH0wT1prSRipAZscSBxkZX7riwCrnLQUT0k="; 15 + }; 16 + 17 + vendorSha256 = "sha256-q2uNqKZc6Zye7YimPDrg40o68Fo4ux4fygjVjJdhqQU="; 18 + 19 + meta = with lib; { 20 + description = "Modern and flexible SIP CLI tool"; 21 + homepage = "https://github.com/miconda/sipexer"; 22 + changelog = "https://github.com/miconda/sipexer/releases/tag/v${version}"; 23 + license = licenses.gpl3Only; 24 + maintainers = with maintainers; [ astro ]; 25 + }; 26 + }
+2 -2
pkgs/tools/networking/strongswan/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "strongswan"; 21 - version = "5.9.5"; # Make sure to also update <nixpkgs/nixos/modules/services/networking/strongswan-swanctl/swanctl-params.nix> when upgrading! 21 + version = "5.9.7"; # Make sure to also update <nixpkgs/nixos/modules/services/networking/strongswan-swanctl/swanctl-params.nix> when upgrading! 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "strongswan"; 25 25 repo = "strongswan"; 26 26 rev = version; 27 - sha256 = "sha256-Jx0Wd/xgkl/WrBfcEvZPogPAQp0MW9HE+AQR2anP5Vo="; 27 + sha256 = "sha256-4FOeY3a6DyftrbFtBqtY0nLxdIXPnY91wMAVIBm/KvY="; 28 28 }; 29 29 30 30 dontPatchELF = true;
+3 -3
pkgs/tools/security/cosign/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cosign"; 5 - version = "1.10.0"; 5 + version = "1.10.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sigstore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-EJ1NOaGLLBkEkWLWn8wfyFA6Kgsb9mctkw4G2um9cWE="; 11 + sha256 = "sha256-DMNjzTor22uyTzieWsni9wvscfU7uCFuf3AXOYP4LRo="; 12 12 }; 13 13 14 14 buildInputs = lib.optional (stdenv.isLinux && pivKeySupport) (lib.getDev pcsclite) ··· 16 16 17 17 nativeBuildInputs = [ pkg-config installShellFiles ]; 18 18 19 - vendorSha256 = "sha256-JL7bqdLrNwOQPVUhlIktRM1cAPycq0PVpB1xXXiJiKM="; 19 + vendorSha256 = "sha256-onRfo3ZK/+uEa0xR7P9IlEsd2aXy9foJjZl0UBO/cbs="; 20 20 21 21 subPackages = [ 22 22 "cmd/cosign"
+6
pkgs/top-level/all-packages.nix
··· 2307 2307 2308 2308 cue = callPackage ../development/tools/cue { }; 2309 2309 2310 + cuelsp = callPackage ../development/tools/cuelsp {}; 2311 + 2310 2312 cyclone-scheme = callPackage ../development/interpreters/cyclone { }; 2311 2313 2312 2314 cyclonedx-python = callPackage ../tools/misc/cyclonedx-python { }; ··· 10662 10664 simpleproxy = callPackage ../tools/networking/simpleproxy { }; 10663 10665 10664 10666 simplescreenrecorder = libsForQt5.callPackage ../applications/video/simplescreenrecorder { }; 10667 + 10668 + sipexer = callPackage ../tools/networking/sipexer { }; 10665 10669 10666 10670 sipsak = callPackage ../tools/networking/sipsak { }; 10667 10671 ··· 31796 31800 }; 31797 31801 31798 31802 zim = callPackage ../applications/office/zim { }; 31803 + 31804 + zine = callPackage ../applications/misc/zine { }; 31799 31805 31800 31806 zita-ajbridge = callPackage ../applications/audio/zita-ajbridge { }; 31801 31807
+1 -1
pkgs/top-level/python-packages.nix
··· 2386 2386 2387 2387 django_compat = callPackage ../development/python-modules/django-compat { }; 2388 2388 2389 - django_compressor = callPackage ../development/python-modules/django_compressor { }; 2389 + django-compressor = callPackage ../development/python-modules/django-compressor { }; 2390 2390 2391 2391 django-configurations = callPackage ../development/python-modules/django-configurations { }; 2392 2392