Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 5557fcff a288d73b

+6135 -732
+1
maintainers/scripts/luarocks-packages.csv
··· 40 40 lrexlib-posix,,,,,, 41 41 lua-cjson,,,,,, 42 42 lua-cmsgpack,,,,,, 43 + lua-curl,,,,,, 43 44 lua-iconv,,,,,, 44 45 lua-lsp,,,,,, 45 46 lua-messagepack,,,,,,
+2
nixos/doc/manual/release-notes/rl-2305.section.md
··· 274 274 replacement. It stores backups as volume dump files and thus better integrates 275 275 into contemporary backup solutions. 276 276 277 + - `services.maddy` now allows to configure users and their credentials using `services.maddy.ensureCredentials`. 278 + 277 279 - The `dnsmasq` service now takes configuration via the 278 280 `services.dnsmasq.settings` attribute set. The option 279 281 `services.dnsmasq.extraConfig` will be deprecated when NixOS 22.11 reaches
+36 -2
nixos/modules/services/mail/maddy.nix
··· 228 228 default = []; 229 229 description = lib.mdDoc '' 230 230 List of IMAP accounts which get automatically created. Note that for 231 - a complete setup, user credentials for these accounts are required too 232 - and can be created using the command `maddyctl creds`. 231 + a complete setup, user credentials for these accounts are required 232 + and can be created using the `ensureCredentials` option. 233 233 This option does not delete accounts which are not (anymore) listed. 234 234 ''; 235 235 example = [ ··· 238 238 ]; 239 239 }; 240 240 241 + ensureCredentials = mkOption { 242 + default = {}; 243 + description = lib.mdDoc '' 244 + List of user accounts which get automatically created if they don't 245 + exist yet. Note that for a complete setup, corresponding mail boxes 246 + have to get created using the `ensureAccounts` option. 247 + This option does not delete accounts which are not (anymore) listed. 248 + ''; 249 + example = { 250 + "user1@localhost".passwordFile = /secrets/user1-localhost; 251 + "user2@localhost".passwordFile = /secrets/user2-localhost; 252 + }; 253 + type = types.attrsOf (types.submodule { 254 + options = { 255 + passwordFile = mkOption { 256 + type = types.path; 257 + example = "/path/to/file"; 258 + default = null; 259 + description = lib.mdDoc '' 260 + Specifies the path to a file containing the 261 + clear text password for the user. 262 + ''; 263 + }; 264 + }; 265 + }); 266 + }; 267 + 241 268 }; 242 269 }; 243 270 ··· 264 291 ${pkgs.maddy}/bin/maddyctl imap-acct create ${account} 265 292 fi 266 293 '') cfg.ensureAccounts} 294 + ''} 295 + ${optionalString (cfg.ensureCredentials != {}) '' 296 + ${concatStringsSep "\n" (mapAttrsToList (name: cfg: '' 297 + if ! ${pkgs.maddy}/bin/maddyctl creds list | grep "${name}"; then 298 + ${pkgs.maddy}/bin/maddyctl creds create --password $(cat ${escapeShellArg cfg.passwordFile}) ${name} 299 + fi 300 + '') cfg.ensureCredentials)} 267 301 ''} 268 302 ''; 269 303 serviceConfig = {
+1 -1
nixos/modules/services/monitoring/grafana-agent.nix
··· 140 140 # We can't use Environment=HOSTNAME=%H, as it doesn't include the domain part. 141 141 export HOSTNAME=$(< /proc/sys/kernel/hostname) 142 142 143 - exec ${cfg.package}/bin/agent -config.expand-env -config.file ${configFile} 143 + exec ${lib.getExe cfg.package} -config.expand-env -config.file ${configFile} 144 144 ''; 145 145 serviceConfig = { 146 146 Restart = "always";
+6 -6
nixos/modules/services/monitoring/prometheus/exporters/smartctl.nix
··· 4 4 5 5 let 6 6 cfg = config.services.prometheus.exporters.smartctl; 7 - args = concatStrings [ 8 - "--web.listen-address=\"${cfg.listenAddress}:${toString cfg.port}\" " 9 - "--smartctl.path=\"${pkgs.smartmontools}/bin/smartctl\" " 10 - "--smartctl.interval=\"${cfg.maxInterval}\" " 11 - "${concatMapStringsSep " " (device: "--smartctl.device=${device}") cfg.devices}" 12 - ] ++ cfg.extraFlags; 7 + args = lib.escapeShellArgs ([ 8 + "--web.listen-address=${cfg.listenAddress}:${toString cfg.port}" 9 + "--smartctl.path=${pkgs.smartmontools}/bin/smartctl" 10 + "--smartctl.interval=${cfg.maxInterval}" 11 + ] ++ map (device: "--smartctl.device=${device}") cfg.devices 12 + ++ cfg.extraFlags); 13 13 in { 14 14 port = 9633; 15 15
+5 -3
nixos/tests/maddy.nix
··· 10 10 primaryDomain = "server"; 11 11 openFirewall = true; 12 12 ensureAccounts = [ "postmaster@server" ]; 13 + ensureCredentials = { 14 + # Do not use this in production. This will make passwords world-readable 15 + # in the Nix store 16 + "postmaster@server".passwordFile = "${pkgs.writeText "postmaster" "test"}"; 17 + }; 13 18 }; 14 19 }; 15 20 ··· 49 54 server.wait_for_unit("maddy.service") 50 55 server.wait_for_open_port(143) 51 56 server.wait_for_open_port(587) 52 - 53 - server.succeed("maddyctl creds create --password test postmaster@server") 54 - 55 57 client.succeed("send-testmail") 56 58 client.succeed("test-imap") 57 59 '';
+280 -277
pkgs/applications/blockchains/polkadot/Cargo.lock
··· 466 466 [[package]] 467 467 name = "binary-merkle-tree" 468 468 version = "4.0.0-dev" 469 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 469 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 470 470 dependencies = [ 471 471 "hash-db", 472 472 "log", ··· 2295 2295 [[package]] 2296 2296 name = "fork-tree" 2297 2297 version = "3.0.0" 2298 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2298 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2299 2299 dependencies = [ 2300 2300 "parity-scale-codec", 2301 2301 ] ··· 2318 2318 [[package]] 2319 2319 name = "frame-benchmarking" 2320 2320 version = "4.0.0-dev" 2321 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2321 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2322 2322 dependencies = [ 2323 2323 "frame-support", 2324 2324 "frame-support-procedural", ··· 2343 2343 [[package]] 2344 2344 name = "frame-benchmarking-cli" 2345 2345 version = "4.0.0-dev" 2346 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2346 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2347 2347 dependencies = [ 2348 2348 "Inflector", 2349 2349 "array-bytes", ··· 2390 2390 [[package]] 2391 2391 name = "frame-election-provider-solution-type" 2392 2392 version = "4.0.0-dev" 2393 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2393 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2394 2394 dependencies = [ 2395 2395 "proc-macro-crate", 2396 2396 "proc-macro2", ··· 2401 2401 [[package]] 2402 2402 name = "frame-election-provider-support" 2403 2403 version = "4.0.0-dev" 2404 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2404 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2405 2405 dependencies = [ 2406 2406 "frame-election-provider-solution-type", 2407 2407 "frame-support", ··· 2418 2418 [[package]] 2419 2419 name = "frame-executive" 2420 2420 version = "4.0.0-dev" 2421 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2421 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2422 2422 dependencies = [ 2423 2423 "frame-support", 2424 2424 "frame-system", ··· 2447 2447 [[package]] 2448 2448 name = "frame-remote-externalities" 2449 2449 version = "0.10.0-dev" 2450 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2450 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2451 2451 dependencies = [ 2452 2452 "futures", 2453 2453 "log", ··· 2463 2463 [[package]] 2464 2464 name = "frame-support" 2465 2465 version = "4.0.0-dev" 2466 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2466 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2467 2467 dependencies = [ 2468 2468 "bitflags", 2469 2469 "environmental", ··· 2496 2496 [[package]] 2497 2497 name = "frame-support-procedural" 2498 2498 version = "4.0.0-dev" 2499 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2499 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2500 2500 dependencies = [ 2501 2501 "Inflector", 2502 2502 "cfg-expr", ··· 2511 2511 [[package]] 2512 2512 name = "frame-support-procedural-tools" 2513 2513 version = "4.0.0-dev" 2514 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2514 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2515 2515 dependencies = [ 2516 2516 "frame-support-procedural-tools-derive", 2517 2517 "proc-macro-crate", ··· 2523 2523 [[package]] 2524 2524 name = "frame-support-procedural-tools-derive" 2525 2525 version = "3.0.0" 2526 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2526 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2527 2527 dependencies = [ 2528 2528 "proc-macro2", 2529 2529 "quote", ··· 2533 2533 [[package]] 2534 2534 name = "frame-support-test" 2535 2535 version = "3.0.0" 2536 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2536 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2537 2537 dependencies = [ 2538 2538 "frame-benchmarking", 2539 2539 "frame-support", ··· 2557 2557 [[package]] 2558 2558 name = "frame-support-test-pallet" 2559 2559 version = "4.0.0-dev" 2560 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2560 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2561 2561 dependencies = [ 2562 2562 "frame-support", 2563 2563 "frame-system", ··· 2568 2568 [[package]] 2569 2569 name = "frame-system" 2570 2570 version = "4.0.0-dev" 2571 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2571 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2572 2572 dependencies = [ 2573 2573 "frame-support", 2574 2574 "log", ··· 2586 2586 [[package]] 2587 2587 name = "frame-system-benchmarking" 2588 2588 version = "4.0.0-dev" 2589 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2589 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2590 2590 dependencies = [ 2591 2591 "frame-benchmarking", 2592 2592 "frame-support", ··· 2601 2601 [[package]] 2602 2602 name = "frame-system-rpc-runtime-api" 2603 2603 version = "4.0.0-dev" 2604 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2604 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2605 2605 dependencies = [ 2606 2606 "parity-scale-codec", 2607 2607 "sp-api", ··· 2610 2610 [[package]] 2611 2611 name = "frame-try-runtime" 2612 2612 version = "0.10.0-dev" 2613 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2613 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2614 2614 dependencies = [ 2615 2615 "frame-support", 2616 2616 "parity-scale-codec", ··· 2792 2792 [[package]] 2793 2793 name = "generate-bags" 2794 2794 version = "4.0.0-dev" 2795 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 2795 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 2796 2796 dependencies = [ 2797 2797 "chrono", 2798 2798 "frame-election-provider-support", ··· 3584 3584 3585 3585 [[package]] 3586 3586 name = "kusama-runtime" 3587 - version = "0.9.40" 3587 + version = "0.9.41" 3588 3588 dependencies = [ 3589 3589 "bitvec", 3590 3590 "frame-benchmarking", ··· 3689 3689 3690 3690 [[package]] 3691 3691 name = "kusama-runtime-constants" 3692 - version = "0.9.40" 3692 + version = "0.9.41" 3693 3693 dependencies = [ 3694 3694 "frame-support", 3695 3695 "polkadot-primitives", ··· 4571 4571 [[package]] 4572 4572 name = "mmr-gadget" 4573 4573 version = "4.0.0-dev" 4574 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 4574 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 4575 4575 dependencies = [ 4576 4576 "futures", 4577 4577 "log", ··· 4590 4590 [[package]] 4591 4591 name = "mmr-rpc" 4592 4592 version = "4.0.0-dev" 4593 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 4593 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 4594 4594 dependencies = [ 4595 4595 "anyhow", 4596 4596 "jsonrpsee", ··· 5067 5067 5068 5068 [[package]] 5069 5069 name = "orchestra" 5070 - version = "0.2.0" 5070 + version = "0.0.5" 5071 5071 source = "registry+https://github.com/rust-lang/crates.io-index" 5072 - checksum = "ecae97f74ddeb5c6ff00c98ef368423b4ec9a4d5ab48c0d909e84b7594b09718" 5072 + checksum = "227585216d05ba65c7ab0a0450a3cf2cbd81a98862a54c4df8e14d5ac6adb015" 5073 5073 dependencies = [ 5074 5074 "async-trait", 5075 5075 "dyn-clonable", ··· 5084 5084 5085 5085 [[package]] 5086 5086 name = "orchestra-proc-macro" 5087 - version = "0.2.0" 5087 + version = "0.0.5" 5088 5088 source = "registry+https://github.com/rust-lang/crates.io-index" 5089 - checksum = "08a9846c70b1df02657dbe5b54fadbad0ea3b944623ebf3fcbf7f33ef859dcba" 5089 + checksum = "2871aadd82a2c216ee68a69837a526dfe788ecbe74c4c5038a6acdbff6653066" 5090 5090 dependencies = [ 5091 5091 "expander 0.0.6", 5092 5092 "itertools", ··· 5152 5152 [[package]] 5153 5153 name = "pallet-assets" 5154 5154 version = "4.0.0-dev" 5155 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5155 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5156 5156 dependencies = [ 5157 5157 "frame-benchmarking", 5158 5158 "frame-support", ··· 5167 5167 [[package]] 5168 5168 name = "pallet-authority-discovery" 5169 5169 version = "4.0.0-dev" 5170 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5170 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5171 5171 dependencies = [ 5172 5172 "frame-support", 5173 5173 "frame-system", ··· 5183 5183 [[package]] 5184 5184 name = "pallet-authorship" 5185 5185 version = "4.0.0-dev" 5186 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5186 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5187 5187 dependencies = [ 5188 5188 "frame-support", 5189 5189 "frame-system", ··· 5197 5197 [[package]] 5198 5198 name = "pallet-babe" 5199 5199 version = "4.0.0-dev" 5200 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5200 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5201 5201 dependencies = [ 5202 5202 "frame-benchmarking", 5203 5203 "frame-support", ··· 5221 5221 [[package]] 5222 5222 name = "pallet-bags-list" 5223 5223 version = "4.0.0-dev" 5224 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5224 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5225 5225 dependencies = [ 5226 5226 "frame-benchmarking", 5227 5227 "frame-election-provider-support", ··· 5241 5241 [[package]] 5242 5242 name = "pallet-bags-list-remote-tests" 5243 5243 version = "4.0.0-dev" 5244 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5244 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5245 5245 dependencies = [ 5246 5246 "frame-election-provider-support", 5247 5247 "frame-remote-externalities", ··· 5260 5260 [[package]] 5261 5261 name = "pallet-balances" 5262 5262 version = "4.0.0-dev" 5263 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5263 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5264 5264 dependencies = [ 5265 5265 "frame-benchmarking", 5266 5266 "frame-support", ··· 5275 5275 [[package]] 5276 5276 name = "pallet-beefy" 5277 5277 version = "4.0.0-dev" 5278 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5278 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5279 5279 dependencies = [ 5280 5280 "frame-support", 5281 5281 "frame-system", ··· 5294 5294 [[package]] 5295 5295 name = "pallet-beefy-mmr" 5296 5296 version = "4.0.0-dev" 5297 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5297 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5298 5298 dependencies = [ 5299 5299 "array-bytes", 5300 5300 "binary-merkle-tree", ··· 5318 5318 [[package]] 5319 5319 name = "pallet-bounties" 5320 5320 version = "4.0.0-dev" 5321 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5321 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5322 5322 dependencies = [ 5323 5323 "frame-benchmarking", 5324 5324 "frame-support", ··· 5336 5336 [[package]] 5337 5337 name = "pallet-child-bounties" 5338 5338 version = "4.0.0-dev" 5339 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5339 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5340 5340 dependencies = [ 5341 5341 "frame-benchmarking", 5342 5342 "frame-support", ··· 5355 5355 [[package]] 5356 5356 name = "pallet-collective" 5357 5357 version = "4.0.0-dev" 5358 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5358 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5359 5359 dependencies = [ 5360 5360 "frame-benchmarking", 5361 5361 "frame-support", ··· 5372 5372 [[package]] 5373 5373 name = "pallet-conviction-voting" 5374 5374 version = "4.0.0-dev" 5375 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5375 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5376 5376 dependencies = [ 5377 5377 "assert_matches", 5378 5378 "frame-benchmarking", ··· 5389 5389 [[package]] 5390 5390 name = "pallet-democracy" 5391 5391 version = "4.0.0-dev" 5392 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5392 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5393 5393 dependencies = [ 5394 5394 "frame-benchmarking", 5395 5395 "frame-support", ··· 5407 5407 [[package]] 5408 5408 name = "pallet-election-provider-multi-phase" 5409 5409 version = "4.0.0-dev" 5410 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5410 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5411 5411 dependencies = [ 5412 5412 "frame-benchmarking", 5413 5413 "frame-election-provider-support", ··· 5430 5430 [[package]] 5431 5431 name = "pallet-election-provider-support-benchmarking" 5432 5432 version = "4.0.0-dev" 5433 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5433 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5434 5434 dependencies = [ 5435 5435 "frame-benchmarking", 5436 5436 "frame-election-provider-support", ··· 5443 5443 [[package]] 5444 5444 name = "pallet-elections-phragmen" 5445 5445 version = "5.0.0-dev" 5446 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5446 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5447 5447 dependencies = [ 5448 5448 "frame-benchmarking", 5449 5449 "frame-support", ··· 5461 5461 [[package]] 5462 5462 name = "pallet-fast-unstake" 5463 5463 version = "4.0.0-dev" 5464 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5464 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5465 5465 dependencies = [ 5466 5466 "frame-benchmarking", 5467 5467 "frame-election-provider-support", ··· 5479 5479 [[package]] 5480 5480 name = "pallet-grandpa" 5481 5481 version = "4.0.0-dev" 5482 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5482 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5483 5483 dependencies = [ 5484 5484 "frame-benchmarking", 5485 5485 "frame-support", ··· 5502 5502 [[package]] 5503 5503 name = "pallet-identity" 5504 5504 version = "4.0.0-dev" 5505 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5505 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5506 5506 dependencies = [ 5507 5507 "enumflags2", 5508 5508 "frame-benchmarking", ··· 5518 5518 [[package]] 5519 5519 name = "pallet-im-online" 5520 5520 version = "4.0.0-dev" 5521 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5521 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5522 5522 dependencies = [ 5523 5523 "frame-benchmarking", 5524 5524 "frame-support", ··· 5538 5538 [[package]] 5539 5539 name = "pallet-indices" 5540 5540 version = "4.0.0-dev" 5541 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5541 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5542 5542 dependencies = [ 5543 5543 "frame-benchmarking", 5544 5544 "frame-support", ··· 5555 5555 [[package]] 5556 5556 name = "pallet-membership" 5557 5557 version = "4.0.0-dev" 5558 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5558 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5559 5559 dependencies = [ 5560 5560 "frame-benchmarking", 5561 5561 "frame-support", ··· 5572 5572 [[package]] 5573 5573 name = "pallet-mmr" 5574 5574 version = "4.0.0-dev" 5575 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5575 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5576 5576 dependencies = [ 5577 5577 "frame-benchmarking", 5578 5578 "frame-support", ··· 5589 5589 [[package]] 5590 5590 name = "pallet-multisig" 5591 5591 version = "4.0.0-dev" 5592 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5592 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5593 5593 dependencies = [ 5594 5594 "frame-benchmarking", 5595 5595 "frame-support", ··· 5605 5605 [[package]] 5606 5606 name = "pallet-nis" 5607 5607 version = "4.0.0-dev" 5608 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5608 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5609 5609 dependencies = [ 5610 5610 "frame-benchmarking", 5611 5611 "frame-support", ··· 5621 5621 [[package]] 5622 5622 name = "pallet-nomination-pools" 5623 5623 version = "1.0.0" 5624 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5624 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5625 5625 dependencies = [ 5626 5626 "frame-support", 5627 5627 "frame-system", ··· 5638 5638 [[package]] 5639 5639 name = "pallet-nomination-pools-benchmarking" 5640 5640 version = "1.0.0" 5641 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5641 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5642 5642 dependencies = [ 5643 5643 "frame-benchmarking", 5644 5644 "frame-election-provider-support", ··· 5658 5658 [[package]] 5659 5659 name = "pallet-nomination-pools-runtime-api" 5660 5660 version = "1.0.0-dev" 5661 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5661 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5662 5662 dependencies = [ 5663 5663 "pallet-nomination-pools", 5664 5664 "parity-scale-codec", ··· 5669 5669 [[package]] 5670 5670 name = "pallet-offences" 5671 5671 version = "4.0.0-dev" 5672 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5672 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5673 5673 dependencies = [ 5674 5674 "frame-support", 5675 5675 "frame-system", ··· 5686 5686 [[package]] 5687 5687 name = "pallet-offences-benchmarking" 5688 5688 version = "4.0.0-dev" 5689 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5689 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5690 5690 dependencies = [ 5691 5691 "frame-benchmarking", 5692 5692 "frame-election-provider-support", ··· 5710 5710 [[package]] 5711 5711 name = "pallet-preimage" 5712 5712 version = "4.0.0-dev" 5713 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5713 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5714 5714 dependencies = [ 5715 5715 "frame-benchmarking", 5716 5716 "frame-support", ··· 5727 5727 [[package]] 5728 5728 name = "pallet-proxy" 5729 5729 version = "4.0.0-dev" 5730 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5730 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5731 5731 dependencies = [ 5732 5732 "frame-benchmarking", 5733 5733 "frame-support", ··· 5742 5742 [[package]] 5743 5743 name = "pallet-ranked-collective" 5744 5744 version = "4.0.0-dev" 5745 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5745 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5746 5746 dependencies = [ 5747 5747 "frame-benchmarking", 5748 5748 "frame-support", ··· 5760 5760 [[package]] 5761 5761 name = "pallet-recovery" 5762 5762 version = "4.0.0-dev" 5763 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5763 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5764 5764 dependencies = [ 5765 5765 "frame-benchmarking", 5766 5766 "frame-support", ··· 5775 5775 [[package]] 5776 5776 name = "pallet-referenda" 5777 5777 version = "4.0.0-dev" 5778 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5778 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5779 5779 dependencies = [ 5780 5780 "assert_matches", 5781 5781 "frame-benchmarking", ··· 5794 5794 [[package]] 5795 5795 name = "pallet-scheduler" 5796 5796 version = "4.0.0-dev" 5797 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5797 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5798 5798 dependencies = [ 5799 5799 "frame-benchmarking", 5800 5800 "frame-support", ··· 5811 5811 [[package]] 5812 5812 name = "pallet-session" 5813 5813 version = "4.0.0-dev" 5814 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5814 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5815 5815 dependencies = [ 5816 5816 "frame-support", 5817 5817 "frame-system", ··· 5832 5832 [[package]] 5833 5833 name = "pallet-session-benchmarking" 5834 5834 version = "4.0.0-dev" 5835 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5835 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5836 5836 dependencies = [ 5837 5837 "frame-benchmarking", 5838 5838 "frame-support", ··· 5848 5848 [[package]] 5849 5849 name = "pallet-society" 5850 5850 version = "4.0.0-dev" 5851 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5851 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5852 5852 dependencies = [ 5853 5853 "frame-support", 5854 5854 "frame-system", ··· 5862 5862 [[package]] 5863 5863 name = "pallet-staking" 5864 5864 version = "4.0.0-dev" 5865 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5865 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5866 5866 dependencies = [ 5867 5867 "frame-benchmarking", 5868 5868 "frame-election-provider-support", ··· 5885 5885 [[package]] 5886 5886 name = "pallet-staking-reward-curve" 5887 5887 version = "4.0.0-dev" 5888 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5888 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5889 5889 dependencies = [ 5890 5890 "proc-macro-crate", 5891 5891 "proc-macro2", ··· 5896 5896 [[package]] 5897 5897 name = "pallet-staking-reward-fn" 5898 5898 version = "4.0.0-dev" 5899 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5899 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5900 5900 dependencies = [ 5901 5901 "log", 5902 5902 "sp-arithmetic", ··· 5905 5905 [[package]] 5906 5906 name = "pallet-staking-runtime-api" 5907 5907 version = "4.0.0-dev" 5908 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5908 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5909 5909 dependencies = [ 5910 5910 "parity-scale-codec", 5911 5911 "sp-api", ··· 5914 5914 [[package]] 5915 5915 name = "pallet-state-trie-migration" 5916 5916 version = "4.0.0-dev" 5917 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5917 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5918 5918 dependencies = [ 5919 5919 "frame-benchmarking", 5920 5920 "frame-support", ··· 5931 5931 [[package]] 5932 5932 name = "pallet-sudo" 5933 5933 version = "4.0.0-dev" 5934 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5934 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5935 5935 dependencies = [ 5936 5936 "frame-support", 5937 5937 "frame-system", ··· 5945 5945 [[package]] 5946 5946 name = "pallet-timestamp" 5947 5947 version = "4.0.0-dev" 5948 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5948 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5949 5949 dependencies = [ 5950 5950 "frame-benchmarking", 5951 5951 "frame-support", ··· 5963 5963 [[package]] 5964 5964 name = "pallet-tips" 5965 5965 version = "4.0.0-dev" 5966 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5966 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5967 5967 dependencies = [ 5968 5968 "frame-benchmarking", 5969 5969 "frame-support", ··· 5982 5982 [[package]] 5983 5983 name = "pallet-transaction-payment" 5984 5984 version = "4.0.0-dev" 5985 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 5985 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 5986 5986 dependencies = [ 5987 5987 "frame-support", 5988 5988 "frame-system", ··· 5998 5998 [[package]] 5999 5999 name = "pallet-transaction-payment-rpc" 6000 6000 version = "4.0.0-dev" 6001 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 6001 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 6002 6002 dependencies = [ 6003 6003 "jsonrpsee", 6004 6004 "pallet-transaction-payment-rpc-runtime-api", ··· 6014 6014 [[package]] 6015 6015 name = "pallet-transaction-payment-rpc-runtime-api" 6016 6016 version = "4.0.0-dev" 6017 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 6017 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 6018 6018 dependencies = [ 6019 6019 "pallet-transaction-payment", 6020 6020 "parity-scale-codec", ··· 6026 6026 [[package]] 6027 6027 name = "pallet-treasury" 6028 6028 version = "4.0.0-dev" 6029 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 6029 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 6030 6030 dependencies = [ 6031 6031 "frame-benchmarking", 6032 6032 "frame-support", ··· 6043 6043 [[package]] 6044 6044 name = "pallet-uniques" 6045 6045 version = "4.0.0-dev" 6046 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 6046 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 6047 6047 dependencies = [ 6048 6048 "frame-benchmarking", 6049 6049 "frame-support", ··· 6058 6058 [[package]] 6059 6059 name = "pallet-utility" 6060 6060 version = "4.0.0-dev" 6061 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 6061 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 6062 6062 dependencies = [ 6063 6063 "frame-benchmarking", 6064 6064 "frame-support", ··· 6074 6074 [[package]] 6075 6075 name = "pallet-vesting" 6076 6076 version = "4.0.0-dev" 6077 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 6077 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 6078 6078 dependencies = [ 6079 6079 "frame-benchmarking", 6080 6080 "frame-support", ··· 6089 6089 [[package]] 6090 6090 name = "pallet-whitelist" 6091 6091 version = "4.0.0-dev" 6092 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 6092 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 6093 6093 dependencies = [ 6094 6094 "frame-benchmarking", 6095 6095 "frame-support", ··· 6103 6103 6104 6104 [[package]] 6105 6105 name = "pallet-xcm" 6106 - version = "0.9.40" 6106 + version = "0.9.41" 6107 6107 dependencies = [ 6108 6108 "bounded-collections", 6109 6109 "frame-benchmarking", ··· 6127 6127 6128 6128 [[package]] 6129 6129 name = "pallet-xcm-benchmarks" 6130 - version = "0.9.40" 6130 + version = "0.9.41" 6131 6131 dependencies = [ 6132 6132 "frame-benchmarking", 6133 6133 "frame-support", ··· 6432 6432 6433 6433 [[package]] 6434 6434 name = "polkadot" 6435 - version = "0.9.40" 6435 + version = "0.9.41" 6436 6436 dependencies = [ 6437 6437 "assert_cmd", 6438 6438 "color-eyre", ··· 6449 6449 6450 6450 [[package]] 6451 6451 name = "polkadot-approval-distribution" 6452 - version = "0.9.40" 6452 + version = "0.9.41" 6453 6453 dependencies = [ 6454 6454 "assert_matches", 6455 6455 "env_logger 0.9.0", ··· 6474 6474 6475 6475 [[package]] 6476 6476 name = "polkadot-availability-bitfield-distribution" 6477 - version = "0.9.40" 6477 + version = "0.9.41" 6478 6478 dependencies = [ 6479 6479 "assert_matches", 6480 6480 "bitvec", ··· 6499 6499 6500 6500 [[package]] 6501 6501 name = "polkadot-availability-distribution" 6502 - version = "0.9.40" 6502 + version = "0.9.41" 6503 6503 dependencies = [ 6504 6504 "assert_matches", 6505 6505 "derive_more", ··· 6528 6528 6529 6529 [[package]] 6530 6530 name = "polkadot-availability-recovery" 6531 - version = "0.9.40" 6531 + version = "0.9.41" 6532 6532 dependencies = [ 6533 6533 "assert_matches", 6534 6534 "env_logger 0.9.0", ··· 6557 6557 6558 6558 [[package]] 6559 6559 name = "polkadot-cli" 6560 - version = "0.9.40" 6560 + version = "0.9.41" 6561 6561 dependencies = [ 6562 6562 "clap 4.0.15", 6563 6563 "frame-benchmarking-cli", ··· 6585 6585 6586 6586 [[package]] 6587 6587 name = "polkadot-client" 6588 - version = "0.9.40" 6588 + version = "0.9.41" 6589 6589 dependencies = [ 6590 6590 "async-trait", 6591 6591 "frame-benchmarking", ··· 6629 6629 6630 6630 [[package]] 6631 6631 name = "polkadot-collator-protocol" 6632 - version = "0.9.40" 6632 + version = "0.9.41" 6633 6633 dependencies = [ 6634 6634 "always-assert", 6635 6635 "assert_matches", ··· 6658 6658 6659 6659 [[package]] 6660 6660 name = "polkadot-core-primitives" 6661 - version = "0.9.40" 6661 + version = "0.9.41" 6662 6662 dependencies = [ 6663 6663 "parity-scale-codec", 6664 6664 "scale-info", ··· 6669 6669 6670 6670 [[package]] 6671 6671 name = "polkadot-dispute-distribution" 6672 - version = "0.9.40" 6672 + version = "0.9.41" 6673 6673 dependencies = [ 6674 6674 "assert_matches", 6675 6675 "async-trait", ··· 6701 6701 6702 6702 [[package]] 6703 6703 name = "polkadot-erasure-coding" 6704 - version = "0.9.40" 6704 + version = "0.9.41" 6705 6705 dependencies = [ 6706 6706 "criterion", 6707 6707 "parity-scale-codec", ··· 6715 6715 6716 6716 [[package]] 6717 6717 name = "polkadot-gossip-support" 6718 - version = "0.9.40" 6718 + version = "0.9.41" 6719 6719 dependencies = [ 6720 6720 "assert_matches", 6721 6721 "async-trait", ··· 6742 6742 6743 6743 [[package]] 6744 6744 name = "polkadot-network-bridge" 6745 - version = "0.9.40" 6745 + version = "0.9.41" 6746 6746 dependencies = [ 6747 6747 "always-assert", 6748 6748 "assert_matches", ··· 6771 6771 6772 6772 [[package]] 6773 6773 name = "polkadot-node-collation-generation" 6774 - version = "0.9.40" 6774 + version = "0.9.41" 6775 6775 dependencies = [ 6776 6776 "futures", 6777 6777 "parity-scale-codec", ··· 6790 6790 6791 6791 [[package]] 6792 6792 name = "polkadot-node-core-approval-voting" 6793 - version = "0.9.40" 6793 + version = "0.9.41" 6794 6794 dependencies = [ 6795 6795 "assert_matches", 6796 6796 "async-trait", ··· 6829 6829 6830 6830 [[package]] 6831 6831 name = "polkadot-node-core-av-store" 6832 - version = "0.9.40" 6832 + version = "0.9.41" 6833 6833 dependencies = [ 6834 6834 "assert_matches", 6835 6835 "bitvec", ··· 6858 6858 6859 6859 [[package]] 6860 6860 name = "polkadot-node-core-backing" 6861 - version = "0.9.40" 6861 + version = "0.9.41" 6862 6862 dependencies = [ 6863 6863 "assert_matches", 6864 6864 "bitvec", ··· 6884 6884 6885 6885 [[package]] 6886 6886 name = "polkadot-node-core-bitfield-signing" 6887 - version = "0.9.40" 6887 + version = "0.9.41" 6888 6888 dependencies = [ 6889 6889 "futures", 6890 6890 "polkadot-node-subsystem", ··· 6900 6900 6901 6901 [[package]] 6902 6902 name = "polkadot-node-core-candidate-validation" 6903 - version = "0.9.40" 6903 + version = "0.9.41" 6904 6904 dependencies = [ 6905 6905 "assert_matches", 6906 6906 "async-trait", ··· 6924 6924 6925 6925 [[package]] 6926 6926 name = "polkadot-node-core-chain-api" 6927 - version = "0.9.40" 6927 + version = "0.9.41" 6928 6928 dependencies = [ 6929 6929 "futures", 6930 6930 "maplit", ··· 6943 6943 6944 6944 [[package]] 6945 6945 name = "polkadot-node-core-chain-selection" 6946 - version = "0.9.40" 6946 + version = "0.9.41" 6947 6947 dependencies = [ 6948 6948 "assert_matches", 6949 6949 "futures", ··· 6964 6964 6965 6965 [[package]] 6966 6966 name = "polkadot-node-core-dispute-coordinator" 6967 - version = "0.9.40" 6967 + version = "0.9.41" 6968 6968 dependencies = [ 6969 6969 "assert_matches", 6970 6970 "fatality", ··· 6992 6992 6993 6993 [[package]] 6994 6994 name = "polkadot-node-core-parachains-inherent" 6995 - version = "0.9.40" 6995 + version = "0.9.41" 6996 6996 dependencies = [ 6997 6997 "async-trait", 6998 6998 "futures", ··· 7008 7008 7009 7009 [[package]] 7010 7010 name = "polkadot-node-core-provisioner" 7011 - version = "0.9.40" 7011 + version = "0.9.41" 7012 7012 dependencies = [ 7013 7013 "bitvec", 7014 7014 "fatality", ··· 7029 7029 7030 7030 [[package]] 7031 7031 name = "polkadot-node-core-pvf" 7032 - version = "0.9.40" 7032 + version = "0.9.41" 7033 7033 dependencies = [ 7034 7034 "always-assert", 7035 7035 "assert_matches", ··· 7057 7057 "sp-maybe-compressed-blob", 7058 7058 "sp-tracing", 7059 7059 "sp-wasm-interface", 7060 + "substrate-build-script-utils", 7060 7061 "tempfile", 7061 7062 "test-parachain-adder", 7062 7063 "test-parachain-halt", ··· 7067 7068 7068 7069 [[package]] 7069 7070 name = "polkadot-node-core-pvf-checker" 7070 - version = "0.9.40" 7071 + version = "0.9.41" 7071 7072 dependencies = [ 7072 7073 "futures", 7073 7074 "futures-timer", ··· 7090 7091 7091 7092 [[package]] 7092 7093 name = "polkadot-node-core-runtime-api" 7093 - version = "0.9.40" 7094 + version = "0.9.41" 7094 7095 dependencies = [ 7095 7096 "futures", 7096 7097 "lru 0.9.0", ··· 7111 7112 7112 7113 [[package]] 7113 7114 name = "polkadot-node-jaeger" 7114 - version = "0.9.40" 7115 + version = "0.9.41" 7115 7116 dependencies = [ 7116 7117 "lazy_static", 7117 7118 "log", ··· 7128 7129 7129 7130 [[package]] 7130 7131 name = "polkadot-node-metrics" 7131 - version = "0.9.40" 7132 + version = "0.9.41" 7132 7133 dependencies = [ 7133 7134 "assert_cmd", 7134 7135 "bs58", ··· 7155 7156 7156 7157 [[package]] 7157 7158 name = "polkadot-node-network-protocol" 7158 - version = "0.9.40" 7159 + version = "0.9.41" 7159 7160 dependencies = [ 7160 7161 "async-trait", 7161 7162 "derive_more", ··· 7177 7178 7178 7179 [[package]] 7179 7180 name = "polkadot-node-primitives" 7180 - version = "0.9.40" 7181 + version = "0.9.41" 7181 7182 dependencies = [ 7182 7183 "bounded-vec", 7183 7184 "futures", ··· 7200 7201 7201 7202 [[package]] 7202 7203 name = "polkadot-node-subsystem" 7203 - version = "0.9.40" 7204 + version = "0.9.41" 7204 7205 dependencies = [ 7205 7206 "polkadot-node-jaeger", 7206 7207 "polkadot-node-subsystem-types", ··· 7209 7210 7210 7211 [[package]] 7211 7212 name = "polkadot-node-subsystem-test-helpers" 7212 - version = "0.9.40" 7213 + version = "0.9.41" 7213 7214 dependencies = [ 7214 7215 "async-trait", 7215 7216 "futures", ··· 7227 7228 7228 7229 [[package]] 7229 7230 name = "polkadot-node-subsystem-types" 7230 - version = "0.9.40" 7231 + version = "0.9.41" 7231 7232 dependencies = [ 7232 7233 "async-trait", 7233 7234 "derive_more", ··· 7249 7250 7250 7251 [[package]] 7251 7252 name = "polkadot-node-subsystem-util" 7252 - version = "0.9.40" 7253 + version = "0.9.41" 7253 7254 dependencies = [ 7254 7255 "assert_matches", 7255 7256 "async-trait", ··· 7290 7291 7291 7292 [[package]] 7292 7293 name = "polkadot-overseer" 7293 - version = "0.9.40" 7294 + version = "0.9.41" 7294 7295 dependencies = [ 7295 7296 "assert_matches", 7296 7297 "async-trait", ··· 7316 7317 7317 7318 [[package]] 7318 7319 name = "polkadot-parachain" 7319 - version = "0.9.40" 7320 + version = "0.9.41" 7320 7321 dependencies = [ 7321 7322 "bounded-collections", 7322 7323 "derive_more", ··· 7332 7333 7333 7334 [[package]] 7334 7335 name = "polkadot-performance-test" 7335 - version = "0.9.40" 7336 + version = "0.9.41" 7336 7337 dependencies = [ 7337 7338 "env_logger 0.9.0", 7338 7339 "kusama-runtime", ··· 7347 7348 7348 7349 [[package]] 7349 7350 name = "polkadot-primitives" 7350 - version = "0.9.40" 7351 + version = "0.9.41" 7351 7352 dependencies = [ 7352 7353 "bitvec", 7353 7354 "hex-literal", ··· 7372 7373 7373 7374 [[package]] 7374 7375 name = "polkadot-primitives-test-helpers" 7375 - version = "0.9.40" 7376 + version = "0.9.41" 7376 7377 dependencies = [ 7377 7378 "polkadot-primitives", 7378 7379 "rand 0.8.5", ··· 7384 7385 7385 7386 [[package]] 7386 7387 name = "polkadot-rpc" 7387 - version = "0.9.40" 7388 + version = "0.9.41" 7388 7389 dependencies = [ 7389 7390 "jsonrpsee", 7390 7391 "mmr-rpc", ··· 7415 7416 7416 7417 [[package]] 7417 7418 name = "polkadot-runtime" 7418 - version = "0.9.40" 7419 + version = "0.9.41" 7419 7420 dependencies = [ 7420 7421 "bitvec", 7421 7422 "frame-benchmarking", ··· 7512 7513 7513 7514 [[package]] 7514 7515 name = "polkadot-runtime-common" 7515 - version = "0.9.40" 7516 + version = "0.9.41" 7516 7517 dependencies = [ 7517 7518 "bitvec", 7518 7519 "frame-benchmarking", ··· 7562 7563 7563 7564 [[package]] 7564 7565 name = "polkadot-runtime-constants" 7565 - version = "0.9.40" 7566 + version = "0.9.41" 7566 7567 dependencies = [ 7567 7568 "frame-support", 7568 7569 "polkadot-primitives", ··· 7575 7576 7576 7577 [[package]] 7577 7578 name = "polkadot-runtime-metrics" 7578 - version = "0.9.40" 7579 + version = "0.9.41" 7579 7580 dependencies = [ 7580 7581 "bs58", 7581 7582 "parity-scale-codec", ··· 7586 7587 7587 7588 [[package]] 7588 7589 name = "polkadot-runtime-parachains" 7589 - version = "0.9.40" 7590 + version = "0.9.41" 7590 7591 dependencies = [ 7591 7592 "assert_matches", 7592 7593 "bitflags", ··· 7639 7640 7640 7641 [[package]] 7641 7642 name = "polkadot-service" 7642 - version = "0.9.40" 7643 + version = "0.9.41" 7643 7644 dependencies = [ 7644 7645 "assert_matches", 7645 7646 "async-trait", ··· 7755 7756 7756 7757 [[package]] 7757 7758 name = "polkadot-statement-distribution" 7758 - version = "0.9.40" 7759 + version = "0.9.41" 7759 7760 dependencies = [ 7760 7761 "arrayvec 0.5.2", 7761 7762 "assert_matches", ··· 7786 7787 7787 7788 [[package]] 7788 7789 name = "polkadot-statement-table" 7789 - version = "0.9.40" 7790 + version = "0.9.41" 7790 7791 dependencies = [ 7791 7792 "parity-scale-codec", 7792 7793 "polkadot-primitives", ··· 7795 7796 7796 7797 [[package]] 7797 7798 name = "polkadot-test-client" 7798 - version = "0.9.40" 7799 + version = "0.9.41" 7799 7800 dependencies = [ 7800 7801 "futures", 7801 7802 "parity-scale-codec", ··· 7821 7822 7822 7823 [[package]] 7823 7824 name = "polkadot-test-malus" 7824 - version = "0.9.40" 7825 + version = "0.9.41" 7825 7826 dependencies = [ 7826 7827 "assert_matches", 7827 7828 "async-trait", ··· 7849 7850 7850 7851 [[package]] 7851 7852 name = "polkadot-test-runtime" 7852 - version = "0.9.40" 7853 + version = "0.9.41" 7853 7854 dependencies = [ 7854 7855 "bitvec", 7855 7856 "frame-election-provider-support", ··· 7914 7915 7915 7916 [[package]] 7916 7917 name = "polkadot-test-service" 7917 - version = "0.9.40" 7918 + version = "0.9.41" 7918 7919 dependencies = [ 7919 7920 "frame-benchmarking", 7920 7921 "frame-system", ··· 7968 7969 7969 7970 [[package]] 7970 7971 name = "polkadot-voter-bags" 7971 - version = "0.9.40" 7972 + version = "0.9.41" 7972 7973 dependencies = [ 7973 7974 "clap 4.0.15", 7974 7975 "generate-bags", ··· 8108 8109 8109 8110 [[package]] 8110 8111 name = "prioritized-metered-channel" 8111 - version = "0.4.0" 8112 + version = "0.2.0" 8112 8113 source = "registry+https://github.com/rust-lang/crates.io-index" 8113 - checksum = "a3caef72a78ca8e77cbdfa87dd516ebb79d4cbe5b42e3b8435b463a8261339ff" 8114 + checksum = "382698e48a268c832d0b181ed438374a6bb708a82a8ca273bb0f61c74cf209c4" 8114 8115 dependencies = [ 8115 - "async-channel", 8116 8116 "coarsetime", 8117 8117 "crossbeam-queue", 8118 8118 "derive_more", ··· 8446 8446 8447 8447 [[package]] 8448 8448 name = "rayon" 8449 - version = "1.7.0" 8449 + version = "1.5.1" 8450 8450 source = "registry+https://github.com/rust-lang/crates.io-index" 8451 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 8451 + checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" 8452 8452 dependencies = [ 8453 + "autocfg", 8454 + "crossbeam-deque", 8453 8455 "either", 8454 8456 "rayon-core", 8455 8457 ] 8456 8458 8457 8459 [[package]] 8458 8460 name = "rayon-core" 8459 - version = "1.11.0" 8461 + version = "1.9.1" 8460 8462 source = "registry+https://github.com/rust-lang/crates.io-index" 8461 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 8463 + checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" 8462 8464 dependencies = [ 8463 8465 "crossbeam-channel", 8464 8466 "crossbeam-deque", 8465 8467 "crossbeam-utils", 8468 + "lazy_static", 8466 8469 "num_cpus", 8467 8470 ] 8468 8471 ··· 8595 8598 8596 8599 [[package]] 8597 8600 name = "remote-ext-tests-bags-list" 8598 - version = "0.9.40" 8601 + version = "0.9.41" 8599 8602 dependencies = [ 8600 8603 "clap 4.0.15", 8601 8604 "frame-system", ··· 8706 8709 8707 8710 [[package]] 8708 8711 name = "rococo-runtime" 8709 - version = "0.9.40" 8712 + version = "0.9.41" 8710 8713 dependencies = [ 8711 8714 "binary-merkle-tree", 8712 8715 "frame-benchmarking", ··· 8799 8802 8800 8803 [[package]] 8801 8804 name = "rococo-runtime-constants" 8802 - version = "0.9.40" 8805 + version = "0.9.41" 8803 8806 dependencies = [ 8804 8807 "frame-support", 8805 8808 "polkadot-primitives", ··· 9014 9017 [[package]] 9015 9018 name = "sc-allocator" 9016 9019 version = "4.1.0-dev" 9017 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9020 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9018 9021 dependencies = [ 9019 9022 "log", 9020 9023 "sp-core", ··· 9025 9028 [[package]] 9026 9029 name = "sc-authority-discovery" 9027 9030 version = "0.10.0-dev" 9028 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9031 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9029 9032 dependencies = [ 9030 9033 "async-trait", 9031 9034 "futures", ··· 9053 9056 [[package]] 9054 9057 name = "sc-basic-authorship" 9055 9058 version = "0.10.0-dev" 9056 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9059 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9057 9060 dependencies = [ 9058 9061 "futures", 9059 9062 "futures-timer", ··· 9076 9079 [[package]] 9077 9080 name = "sc-block-builder" 9078 9081 version = "0.10.0-dev" 9079 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9082 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9080 9083 dependencies = [ 9081 9084 "parity-scale-codec", 9082 9085 "sc-client-api", ··· 9091 9094 [[package]] 9092 9095 name = "sc-chain-spec" 9093 9096 version = "4.0.0-dev" 9094 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9097 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9095 9098 dependencies = [ 9096 9099 "memmap2", 9097 9100 "sc-chain-spec-derive", ··· 9110 9113 [[package]] 9111 9114 name = "sc-chain-spec-derive" 9112 9115 version = "4.0.0-dev" 9113 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9116 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9114 9117 dependencies = [ 9115 9118 "proc-macro-crate", 9116 9119 "proc-macro2", ··· 9121 9124 [[package]] 9122 9125 name = "sc-cli" 9123 9126 version = "0.10.0-dev" 9124 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9127 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9125 9128 dependencies = [ 9126 9129 "array-bytes", 9127 9130 "chrono", ··· 9161 9164 [[package]] 9162 9165 name = "sc-client-api" 9163 9166 version = "4.0.0-dev" 9164 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9167 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9165 9168 dependencies = [ 9166 9169 "fnv", 9167 9170 "futures", ··· 9187 9190 [[package]] 9188 9191 name = "sc-client-db" 9189 9192 version = "0.10.0-dev" 9190 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9193 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9191 9194 dependencies = [ 9192 9195 "hash-db", 9193 9196 "kvdb", ··· 9213 9216 [[package]] 9214 9217 name = "sc-consensus" 9215 9218 version = "0.10.0-dev" 9216 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9219 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9217 9220 dependencies = [ 9218 9221 "async-trait", 9219 9222 "futures", ··· 9238 9241 [[package]] 9239 9242 name = "sc-consensus-babe" 9240 9243 version = "0.10.0-dev" 9241 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9244 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9242 9245 dependencies = [ 9243 9246 "async-trait", 9244 9247 "fork-tree", ··· 9277 9280 [[package]] 9278 9281 name = "sc-consensus-babe-rpc" 9279 9282 version = "0.10.0-dev" 9280 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9283 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9281 9284 dependencies = [ 9282 9285 "futures", 9283 9286 "jsonrpsee", ··· 9299 9302 [[package]] 9300 9303 name = "sc-consensus-beefy" 9301 9304 version = "4.0.0-dev" 9302 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9305 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9303 9306 dependencies = [ 9304 9307 "array-bytes", 9305 9308 "async-trait", ··· 9334 9337 [[package]] 9335 9338 name = "sc-consensus-beefy-rpc" 9336 9339 version = "4.0.0-dev" 9337 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9340 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9338 9341 dependencies = [ 9339 9342 "futures", 9340 9343 "jsonrpsee", ··· 9353 9356 [[package]] 9354 9357 name = "sc-consensus-epochs" 9355 9358 version = "0.10.0-dev" 9356 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9359 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9357 9360 dependencies = [ 9358 9361 "fork-tree", 9359 9362 "parity-scale-codec", ··· 9366 9369 [[package]] 9367 9370 name = "sc-consensus-grandpa" 9368 9371 version = "0.10.0-dev" 9369 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9372 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9370 9373 dependencies = [ 9371 9374 "ahash 0.8.2", 9372 9375 "array-bytes", ··· 9406 9409 [[package]] 9407 9410 name = "sc-consensus-grandpa-rpc" 9408 9411 version = "0.10.0-dev" 9409 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9412 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9410 9413 dependencies = [ 9411 9414 "finality-grandpa", 9412 9415 "futures", ··· 9426 9429 [[package]] 9427 9430 name = "sc-consensus-slots" 9428 9431 version = "0.10.0-dev" 9429 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9432 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9430 9433 dependencies = [ 9431 9434 "async-trait", 9432 9435 "futures", ··· 9449 9452 [[package]] 9450 9453 name = "sc-executor" 9451 9454 version = "0.10.0-dev" 9452 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9455 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9453 9456 dependencies = [ 9454 9457 "lru 0.8.1", 9455 9458 "parity-scale-codec", ··· 9473 9476 [[package]] 9474 9477 name = "sc-executor-common" 9475 9478 version = "0.10.0-dev" 9476 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9479 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9477 9480 dependencies = [ 9478 9481 "sc-allocator", 9479 9482 "sp-maybe-compressed-blob", ··· 9486 9489 [[package]] 9487 9490 name = "sc-executor-wasmi" 9488 9491 version = "0.10.0-dev" 9489 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9492 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9490 9493 dependencies = [ 9491 9494 "log", 9492 9495 "sc-allocator", ··· 9499 9502 [[package]] 9500 9503 name = "sc-executor-wasmtime" 9501 9504 version = "0.10.0-dev" 9502 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9505 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9503 9506 dependencies = [ 9504 9507 "anyhow", 9505 9508 "cfg-if", ··· 9517 9520 [[package]] 9518 9521 name = "sc-informant" 9519 9522 version = "0.10.0-dev" 9520 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9523 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9521 9524 dependencies = [ 9522 9525 "ansi_term", 9523 9526 "futures", ··· 9533 9536 [[package]] 9534 9537 name = "sc-keystore" 9535 9538 version = "4.0.0-dev" 9536 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9539 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9537 9540 dependencies = [ 9538 9541 "array-bytes", 9539 9542 "async-trait", ··· 9548 9551 [[package]] 9549 9552 name = "sc-network" 9550 9553 version = "0.10.0-dev" 9551 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9554 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9552 9555 dependencies = [ 9553 9556 "array-bytes", 9554 9557 "async-channel", ··· 9592 9595 [[package]] 9593 9596 name = "sc-network-bitswap" 9594 9597 version = "0.10.0-dev" 9595 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9598 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9596 9599 dependencies = [ 9597 9600 "cid", 9598 9601 "futures", ··· 9612 9615 [[package]] 9613 9616 name = "sc-network-common" 9614 9617 version = "0.10.0-dev" 9615 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9618 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9616 9619 dependencies = [ 9617 9620 "array-bytes", 9618 9621 "async-trait", ··· 9640 9643 [[package]] 9641 9644 name = "sc-network-gossip" 9642 9645 version = "0.10.0-dev" 9643 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9646 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9644 9647 dependencies = [ 9645 9648 "ahash 0.8.2", 9646 9649 "futures", ··· 9659 9662 [[package]] 9660 9663 name = "sc-network-light" 9661 9664 version = "0.10.0-dev" 9662 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9665 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9663 9666 dependencies = [ 9664 9667 "array-bytes", 9665 9668 "futures", ··· 9681 9684 [[package]] 9682 9685 name = "sc-network-sync" 9683 9686 version = "0.10.0-dev" 9684 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9687 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9685 9688 dependencies = [ 9686 9689 "array-bytes", 9687 9690 "async-trait", ··· 9715 9718 [[package]] 9716 9719 name = "sc-network-transactions" 9717 9720 version = "0.10.0-dev" 9718 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9721 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9719 9722 dependencies = [ 9720 9723 "array-bytes", 9721 9724 "futures", ··· 9735 9738 [[package]] 9736 9739 name = "sc-offchain" 9737 9740 version = "4.0.0-dev" 9738 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9741 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9739 9742 dependencies = [ 9740 9743 "array-bytes", 9741 9744 "bytes", ··· 9766 9769 [[package]] 9767 9770 name = "sc-peerset" 9768 9771 version = "4.0.0-dev" 9769 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9772 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9770 9773 dependencies = [ 9771 9774 "futures", 9772 9775 "libp2p", ··· 9779 9782 [[package]] 9780 9783 name = "sc-proposer-metrics" 9781 9784 version = "0.10.0-dev" 9782 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9785 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9783 9786 dependencies = [ 9784 9787 "log", 9785 9788 "substrate-prometheus-endpoint", ··· 9788 9791 [[package]] 9789 9792 name = "sc-rpc" 9790 9793 version = "4.0.0-dev" 9791 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9794 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9792 9795 dependencies = [ 9793 9796 "futures", 9794 9797 "jsonrpsee", ··· 9818 9821 [[package]] 9819 9822 name = "sc-rpc-api" 9820 9823 version = "0.10.0-dev" 9821 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9824 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9822 9825 dependencies = [ 9823 9826 "jsonrpsee", 9824 9827 "parity-scale-codec", ··· 9837 9840 [[package]] 9838 9841 name = "sc-rpc-server" 9839 9842 version = "4.0.0-dev" 9840 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9843 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9841 9844 dependencies = [ 9842 9845 "http", 9843 9846 "jsonrpsee", ··· 9852 9855 [[package]] 9853 9856 name = "sc-rpc-spec-v2" 9854 9857 version = "0.10.0-dev" 9855 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9858 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9856 9859 dependencies = [ 9857 9860 "array-bytes", 9858 9861 "futures", ··· 9878 9881 [[package]] 9879 9882 name = "sc-service" 9880 9883 version = "0.10.0-dev" 9881 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9884 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9882 9885 dependencies = [ 9883 9886 "async-trait", 9884 9887 "directories", ··· 9944 9947 [[package]] 9945 9948 name = "sc-state-db" 9946 9949 version = "0.10.0-dev" 9947 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9950 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9948 9951 dependencies = [ 9949 9952 "log", 9950 9953 "parity-scale-codec", ··· 9955 9958 [[package]] 9956 9959 name = "sc-storage-monitor" 9957 9960 version = "0.1.0" 9958 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9961 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9959 9962 dependencies = [ 9960 9963 "clap 4.0.15", 9961 9964 "fs4", ··· 9971 9974 [[package]] 9972 9975 name = "sc-sync-state-rpc" 9973 9976 version = "0.10.0-dev" 9974 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9977 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9975 9978 dependencies = [ 9976 9979 "jsonrpsee", 9977 9980 "parity-scale-codec", ··· 9990 9993 [[package]] 9991 9994 name = "sc-sysinfo" 9992 9995 version = "6.0.0-dev" 9993 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 9996 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 9994 9997 dependencies = [ 9995 9998 "futures", 9996 9999 "libc", ··· 10009 10012 [[package]] 10010 10013 name = "sc-telemetry" 10011 10014 version = "4.0.0-dev" 10012 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10015 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10013 10016 dependencies = [ 10014 10017 "chrono", 10015 10018 "futures", ··· 10028 10031 [[package]] 10029 10032 name = "sc-tracing" 10030 10033 version = "4.0.0-dev" 10031 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10034 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10032 10035 dependencies = [ 10033 10036 "ansi_term", 10034 10037 "atty", ··· 10059 10062 [[package]] 10060 10063 name = "sc-tracing-proc-macro" 10061 10064 version = "4.0.0-dev" 10062 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10065 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10063 10066 dependencies = [ 10064 10067 "proc-macro-crate", 10065 10068 "proc-macro2", ··· 10070 10073 [[package]] 10071 10074 name = "sc-transaction-pool" 10072 10075 version = "4.0.0-dev" 10073 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10076 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10074 10077 dependencies = [ 10075 10078 "async-trait", 10076 10079 "futures", ··· 10097 10100 [[package]] 10098 10101 name = "sc-transaction-pool-api" 10099 10102 version = "4.0.0-dev" 10100 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10103 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10101 10104 dependencies = [ 10102 10105 "async-trait", 10103 10106 "futures", ··· 10111 10114 [[package]] 10112 10115 name = "sc-utils" 10113 10116 version = "4.0.0-dev" 10114 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10117 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10115 10118 dependencies = [ 10116 10119 "async-channel", 10117 10120 "futures", ··· 10549 10552 10550 10553 [[package]] 10551 10554 name = "slot-range-helper" 10552 - version = "0.9.40" 10555 + version = "0.9.41" 10553 10556 dependencies = [ 10554 10557 "enumn", 10555 10558 "parity-scale-codec", ··· 10626 10629 [[package]] 10627 10630 name = "sp-api" 10628 10631 version = "4.0.0-dev" 10629 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10632 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10630 10633 dependencies = [ 10631 10634 "hash-db", 10632 10635 "log", ··· 10644 10647 [[package]] 10645 10648 name = "sp-api-proc-macro" 10646 10649 version = "4.0.0-dev" 10647 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10650 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10648 10651 dependencies = [ 10649 10652 "Inflector", 10650 10653 "blake2", ··· 10658 10661 [[package]] 10659 10662 name = "sp-application-crypto" 10660 10663 version = "7.0.0" 10661 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10664 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10662 10665 dependencies = [ 10663 10666 "parity-scale-codec", 10664 10667 "scale-info", ··· 10671 10674 [[package]] 10672 10675 name = "sp-arithmetic" 10673 10676 version = "6.0.0" 10674 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10677 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10675 10678 dependencies = [ 10676 10679 "integer-sqrt", 10677 10680 "num-traits", ··· 10685 10688 [[package]] 10686 10689 name = "sp-authority-discovery" 10687 10690 version = "4.0.0-dev" 10688 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10691 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10689 10692 dependencies = [ 10690 10693 "parity-scale-codec", 10691 10694 "scale-info", ··· 10698 10701 [[package]] 10699 10702 name = "sp-block-builder" 10700 10703 version = "4.0.0-dev" 10701 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10704 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10702 10705 dependencies = [ 10703 10706 "parity-scale-codec", 10704 10707 "sp-api", ··· 10710 10713 [[package]] 10711 10714 name = "sp-blockchain" 10712 10715 version = "4.0.0-dev" 10713 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10716 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10714 10717 dependencies = [ 10715 10718 "futures", 10716 10719 "log", ··· 10728 10731 [[package]] 10729 10732 name = "sp-consensus" 10730 10733 version = "0.10.0-dev" 10731 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10734 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10732 10735 dependencies = [ 10733 10736 "async-trait", 10734 10737 "futures", ··· 10743 10746 [[package]] 10744 10747 name = "sp-consensus-aura" 10745 10748 version = "0.10.0-dev" 10746 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10749 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10747 10750 dependencies = [ 10748 10751 "async-trait", 10749 10752 "parity-scale-codec", ··· 10761 10764 [[package]] 10762 10765 name = "sp-consensus-babe" 10763 10766 version = "0.10.0-dev" 10764 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10767 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10765 10768 dependencies = [ 10766 10769 "async-trait", 10767 10770 "merlin", ··· 10784 10787 [[package]] 10785 10788 name = "sp-consensus-beefy" 10786 10789 version = "4.0.0-dev" 10787 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10790 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10788 10791 dependencies = [ 10789 10792 "lazy_static", 10790 10793 "parity-scale-codec", ··· 10803 10806 [[package]] 10804 10807 name = "sp-consensus-grandpa" 10805 10808 version = "4.0.0-dev" 10806 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10809 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10807 10810 dependencies = [ 10808 10811 "finality-grandpa", 10809 10812 "log", ··· 10821 10824 [[package]] 10822 10825 name = "sp-consensus-slots" 10823 10826 version = "0.10.0-dev" 10824 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10827 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10825 10828 dependencies = [ 10826 10829 "parity-scale-codec", 10827 10830 "scale-info", ··· 10833 10836 [[package]] 10834 10837 name = "sp-consensus-vrf" 10835 10838 version = "0.10.0-dev" 10836 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10839 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10837 10840 dependencies = [ 10838 10841 "parity-scale-codec", 10839 10842 "scale-info", ··· 10846 10849 [[package]] 10847 10850 name = "sp-core" 10848 10851 version = "7.0.0" 10849 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10852 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10850 10853 dependencies = [ 10851 10854 "array-bytes", 10852 10855 "base58", ··· 10889 10892 [[package]] 10890 10893 name = "sp-core-hashing" 10891 10894 version = "5.0.0" 10892 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10895 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10893 10896 dependencies = [ 10894 10897 "blake2b_simd", 10895 10898 "byteorder", ··· 10903 10906 [[package]] 10904 10907 name = "sp-core-hashing-proc-macro" 10905 10908 version = "5.0.0" 10906 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10909 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10907 10910 dependencies = [ 10908 10911 "proc-macro2", 10909 10912 "quote", ··· 10914 10917 [[package]] 10915 10918 name = "sp-database" 10916 10919 version = "4.0.0-dev" 10917 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10920 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10918 10921 dependencies = [ 10919 10922 "kvdb", 10920 10923 "parking_lot 0.12.1", ··· 10923 10926 [[package]] 10924 10927 name = "sp-debug-derive" 10925 10928 version = "5.0.0" 10926 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10929 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10927 10930 dependencies = [ 10928 10931 "proc-macro2", 10929 10932 "quote", ··· 10933 10936 [[package]] 10934 10937 name = "sp-externalities" 10935 10938 version = "0.13.0" 10936 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10939 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10937 10940 dependencies = [ 10938 10941 "environmental", 10939 10942 "parity-scale-codec", ··· 10944 10947 [[package]] 10945 10948 name = "sp-inherents" 10946 10949 version = "4.0.0-dev" 10947 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10950 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10948 10951 dependencies = [ 10949 10952 "async-trait", 10950 10953 "impl-trait-for-tuples", ··· 10959 10962 [[package]] 10960 10963 name = "sp-io" 10961 10964 version = "7.0.0" 10962 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10965 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10963 10966 dependencies = [ 10964 10967 "bytes", 10965 10968 "ed25519", ··· 10984 10987 [[package]] 10985 10988 name = "sp-keyring" 10986 10989 version = "7.0.0" 10987 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 10990 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10988 10991 dependencies = [ 10989 10992 "lazy_static", 10990 10993 "sp-core", ··· 10995 10998 [[package]] 10996 10999 name = "sp-keystore" 10997 11000 version = "0.13.0" 10998 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11001 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 10999 11002 dependencies = [ 11000 11003 "async-trait", 11001 11004 "futures", ··· 11012 11015 [[package]] 11013 11016 name = "sp-maybe-compressed-blob" 11014 11017 version = "4.1.0-dev" 11015 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11018 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11016 11019 dependencies = [ 11017 11020 "thiserror", 11018 11021 "zstd", ··· 11021 11024 [[package]] 11022 11025 name = "sp-mmr-primitives" 11023 11026 version = "4.0.0-dev" 11024 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11027 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11025 11028 dependencies = [ 11026 11029 "ckb-merkle-mountain-range", 11027 11030 "log", ··· 11039 11042 [[package]] 11040 11043 name = "sp-npos-elections" 11041 11044 version = "4.0.0-dev" 11042 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11045 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11043 11046 dependencies = [ 11044 11047 "parity-scale-codec", 11045 11048 "scale-info", ··· 11053 11056 [[package]] 11054 11057 name = "sp-offchain" 11055 11058 version = "4.0.0-dev" 11056 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11059 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11057 11060 dependencies = [ 11058 11061 "sp-api", 11059 11062 "sp-core", ··· 11063 11066 [[package]] 11064 11067 name = "sp-panic-handler" 11065 11068 version = "5.0.0" 11066 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11069 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11067 11070 dependencies = [ 11068 11071 "backtrace", 11069 11072 "lazy_static", ··· 11073 11076 [[package]] 11074 11077 name = "sp-rpc" 11075 11078 version = "6.0.0" 11076 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11079 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11077 11080 dependencies = [ 11078 11081 "rustc-hash", 11079 11082 "serde", ··· 11083 11086 [[package]] 11084 11087 name = "sp-runtime" 11085 11088 version = "7.0.0" 11086 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11089 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11087 11090 dependencies = [ 11088 11091 "either", 11089 11092 "hash256-std-hasher", ··· 11105 11108 [[package]] 11106 11109 name = "sp-runtime-interface" 11107 11110 version = "7.0.0" 11108 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11111 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11109 11112 dependencies = [ 11110 11113 "bytes", 11111 11114 "impl-trait-for-tuples", ··· 11123 11126 [[package]] 11124 11127 name = "sp-runtime-interface-proc-macro" 11125 11128 version = "6.0.0" 11126 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11129 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11127 11130 dependencies = [ 11128 11131 "Inflector", 11129 11132 "proc-macro-crate", ··· 11135 11138 [[package]] 11136 11139 name = "sp-session" 11137 11140 version = "4.0.0-dev" 11138 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11141 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11139 11142 dependencies = [ 11140 11143 "parity-scale-codec", 11141 11144 "scale-info", ··· 11149 11152 [[package]] 11150 11153 name = "sp-staking" 11151 11154 version = "4.0.0-dev" 11152 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11155 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11153 11156 dependencies = [ 11154 11157 "parity-scale-codec", 11155 11158 "scale-info", ··· 11161 11164 [[package]] 11162 11165 name = "sp-state-machine" 11163 11166 version = "0.13.0" 11164 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11167 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11165 11168 dependencies = [ 11166 11169 "hash-db", 11167 11170 "log", ··· 11181 11184 [[package]] 11182 11185 name = "sp-std" 11183 11186 version = "5.0.0" 11184 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11187 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11185 11188 11186 11189 [[package]] 11187 11190 name = "sp-storage" 11188 11191 version = "7.0.0" 11189 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11192 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11190 11193 dependencies = [ 11191 11194 "impl-serde", 11192 11195 "parity-scale-codec", ··· 11199 11202 [[package]] 11200 11203 name = "sp-timestamp" 11201 11204 version = "4.0.0-dev" 11202 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11205 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11203 11206 dependencies = [ 11204 11207 "async-trait", 11205 11208 "futures-timer", ··· 11214 11217 [[package]] 11215 11218 name = "sp-tracing" 11216 11219 version = "6.0.0" 11217 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11220 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11218 11221 dependencies = [ 11219 11222 "parity-scale-codec", 11220 11223 "sp-std", ··· 11226 11229 [[package]] 11227 11230 name = "sp-transaction-pool" 11228 11231 version = "4.0.0-dev" 11229 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11232 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11230 11233 dependencies = [ 11231 11234 "sp-api", 11232 11235 "sp-runtime", ··· 11235 11238 [[package]] 11236 11239 name = "sp-transaction-storage-proof" 11237 11240 version = "4.0.0-dev" 11238 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11241 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11239 11242 dependencies = [ 11240 11243 "async-trait", 11241 11244 "log", ··· 11251 11254 [[package]] 11252 11255 name = "sp-trie" 11253 11256 version = "7.0.0" 11254 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11257 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11255 11258 dependencies = [ 11256 11259 "ahash 0.8.2", 11257 11260 "hash-db", ··· 11274 11277 [[package]] 11275 11278 name = "sp-version" 11276 11279 version = "5.0.0" 11277 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11280 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11278 11281 dependencies = [ 11279 11282 "impl-serde", 11280 11283 "parity-scale-codec", ··· 11291 11294 [[package]] 11292 11295 name = "sp-version-proc-macro" 11293 11296 version = "4.0.0-dev" 11294 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11297 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11295 11298 dependencies = [ 11296 11299 "parity-scale-codec", 11297 11300 "proc-macro2", ··· 11302 11305 [[package]] 11303 11306 name = "sp-wasm-interface" 11304 11307 version = "7.0.0" 11305 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11308 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11306 11309 dependencies = [ 11307 11310 "anyhow", 11308 11311 "impl-trait-for-tuples", ··· 11316 11319 [[package]] 11317 11320 name = "sp-weights" 11318 11321 version = "4.0.0" 11319 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11322 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11320 11323 dependencies = [ 11321 11324 "parity-scale-codec", 11322 11325 "scale-info", ··· 11367 11370 11368 11371 [[package]] 11369 11372 name = "staking-miner" 11370 - version = "0.9.40" 11373 + version = "0.9.41" 11371 11374 dependencies = [ 11372 11375 "assert_cmd", 11373 11376 "clap 4.0.15", ··· 11536 11539 [[package]] 11537 11540 name = "substrate-build-script-utils" 11538 11541 version = "3.0.0" 11539 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11542 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11540 11543 dependencies = [ 11541 11544 "platforms", 11542 11545 ] ··· 11544 11547 [[package]] 11545 11548 name = "substrate-frame-rpc-system" 11546 11549 version = "4.0.0-dev" 11547 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11550 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11548 11551 dependencies = [ 11549 11552 "frame-system-rpc-runtime-api", 11550 11553 "futures", ··· 11563 11566 [[package]] 11564 11567 name = "substrate-prometheus-endpoint" 11565 11568 version = "0.10.0-dev" 11566 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11569 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11567 11570 dependencies = [ 11568 11571 "hyper", 11569 11572 "log", ··· 11575 11578 [[package]] 11576 11579 name = "substrate-rpc-client" 11577 11580 version = "0.10.0-dev" 11578 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11581 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11579 11582 dependencies = [ 11580 11583 "async-trait", 11581 11584 "jsonrpsee", ··· 11588 11591 [[package]] 11589 11592 name = "substrate-state-trie-migration-rpc" 11590 11593 version = "4.0.0-dev" 11591 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11594 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11592 11595 dependencies = [ 11593 11596 "jsonrpsee", 11594 11597 "log", ··· 11607 11610 [[package]] 11608 11611 name = "substrate-test-client" 11609 11612 version = "2.0.1" 11610 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11613 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11611 11614 dependencies = [ 11612 11615 "array-bytes", 11613 11616 "async-trait", ··· 11633 11636 [[package]] 11634 11637 name = "substrate-test-utils" 11635 11638 version = "4.0.0-dev" 11636 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11639 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11637 11640 dependencies = [ 11638 11641 "futures", 11639 11642 "substrate-test-utils-derive", ··· 11643 11646 [[package]] 11644 11647 name = "substrate-test-utils-derive" 11645 11648 version = "0.10.0-dev" 11646 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11649 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11647 11650 dependencies = [ 11648 11651 "proc-macro-crate", 11649 11652 "proc-macro2", ··· 11654 11657 [[package]] 11655 11658 name = "substrate-wasm-builder" 11656 11659 version = "5.0.0-dev" 11657 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 11660 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 11658 11661 dependencies = [ 11659 11662 "ansi_term", 11660 11663 "build-helper", ··· 11802 11805 11803 11806 [[package]] 11804 11807 name = "test-parachain-adder" 11805 - version = "0.9.40" 11808 + version = "0.9.41" 11806 11809 dependencies = [ 11807 11810 "dlmalloc", 11808 11811 "parity-scale-codec", ··· 11815 11818 11816 11819 [[package]] 11817 11820 name = "test-parachain-adder-collator" 11818 - version = "0.9.40" 11821 + version = "0.9.41" 11819 11822 dependencies = [ 11820 11823 "clap 4.0.15", 11821 11824 "futures", ··· 11841 11844 11842 11845 [[package]] 11843 11846 name = "test-parachain-halt" 11844 - version = "0.9.40" 11847 + version = "0.9.41" 11845 11848 dependencies = [ 11846 11849 "substrate-wasm-builder", 11847 11850 ] 11848 11851 11849 11852 [[package]] 11850 11853 name = "test-parachain-undying" 11851 - version = "0.9.40" 11854 + version = "0.9.41" 11852 11855 dependencies = [ 11853 11856 "dlmalloc", 11854 11857 "log", ··· 11862 11865 11863 11866 [[package]] 11864 11867 name = "test-parachain-undying-collator" 11865 - version = "0.9.40" 11868 + version = "0.9.41" 11866 11869 dependencies = [ 11867 11870 "clap 4.0.15", 11868 11871 "futures", ··· 11888 11891 11889 11892 [[package]] 11890 11893 name = "test-parachains" 11891 - version = "0.9.40" 11894 + version = "0.9.41" 11892 11895 dependencies = [ 11893 11896 "parity-scale-codec", 11894 11897 "sp-core", ··· 11899 11902 11900 11903 [[package]] 11901 11904 name = "test-runtime-constants" 11902 - version = "0.9.40" 11905 + version = "0.9.41" 11903 11906 dependencies = [ 11904 11907 "frame-support", 11905 11908 "polkadot-primitives", ··· 12296 12299 12297 12300 [[package]] 12298 12301 name = "tracing-gum" 12299 - version = "0.9.40" 12302 + version = "0.9.41" 12300 12303 dependencies = [ 12301 12304 "polkadot-node-jaeger", 12302 12305 "polkadot-primitives", ··· 12306 12309 12307 12310 [[package]] 12308 12311 name = "tracing-gum-proc-macro" 12309 - version = "0.9.40" 12312 + version = "0.9.41" 12310 12313 dependencies = [ 12311 12314 "assert_matches", 12312 12315 "expander 0.0.6", ··· 12455 12458 [[package]] 12456 12459 name = "try-runtime-cli" 12457 12460 version = "0.10.0-dev" 12458 - source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#ba87188cce8c0a11c9542d7363cd5ddd46db2740" 12461 + source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.41#980eb16791bab5d63b47c07657bb9dc198d9307b" 12459 12462 dependencies = [ 12460 12463 "async-trait", 12461 12464 "clap 4.0.15", ··· 13397 13400 13398 13401 [[package]] 13399 13402 name = "westend-runtime" 13400 - version = "0.9.40" 13403 + version = "0.9.41" 13401 13404 dependencies = [ 13402 13405 "bitvec", 13403 13406 "frame-benchmarking", ··· 13494 13497 13495 13498 [[package]] 13496 13499 name = "westend-runtime-constants" 13497 - version = "0.9.40" 13500 + version = "0.9.41" 13498 13501 dependencies = [ 13499 13502 "frame-support", 13500 13503 "polkadot-primitives", ··· 13794 13797 13795 13798 [[package]] 13796 13799 name = "xcm" 13797 - version = "0.9.40" 13800 + version = "0.9.41" 13798 13801 dependencies = [ 13799 13802 "bounded-collections", 13800 13803 "derivative", ··· 13812 13815 13813 13816 [[package]] 13814 13817 name = "xcm-builder" 13815 - version = "0.9.40" 13818 + version = "0.9.41" 13816 13819 dependencies = [ 13817 13820 "assert_matches", 13818 13821 "frame-support", ··· 13837 13840 13838 13841 [[package]] 13839 13842 name = "xcm-executor" 13840 - version = "0.9.40" 13843 + version = "0.9.41" 13841 13844 dependencies = [ 13842 13845 "environmental", 13843 13846 "frame-benchmarking", ··· 13856 13859 13857 13860 [[package]] 13858 13861 name = "xcm-executor-integration-tests" 13859 - version = "0.9.40" 13862 + version = "0.9.41" 13860 13863 dependencies = [ 13861 13864 "frame-support", 13862 13865 "frame-system", ··· 13876 13879 13877 13880 [[package]] 13878 13881 name = "xcm-procedural" 13879 - version = "0.9.40" 13882 + version = "0.9.41" 13880 13883 dependencies = [ 13881 13884 "Inflector", 13882 13885 "proc-macro2", ··· 13886 13889 13887 13890 [[package]] 13888 13891 name = "xcm-simulator" 13889 - version = "0.9.40" 13892 + version = "0.9.41" 13890 13893 dependencies = [ 13891 13894 "frame-support", 13892 13895 "parity-scale-codec", ··· 13902 13905 13903 13906 [[package]] 13904 13907 name = "xcm-simulator-example" 13905 - version = "0.9.40" 13908 + version = "0.9.41" 13906 13909 dependencies = [ 13907 13910 "frame-support", 13908 13911 "frame-system", ··· 13928 13931 13929 13932 [[package]] 13930 13933 name = "xcm-simulator-fuzzer" 13931 - version = "0.9.40" 13934 + version = "0.9.41" 13932 13935 dependencies = [ 13933 13936 "arbitrary", 13934 13937 "frame-support", ··· 13997 14000 13998 14001 [[package]] 13999 14002 name = "zombienet-backchannel" 14000 - version = "0.9.40" 14003 + version = "0.9.41" 14001 14004 dependencies = [ 14002 14005 "futures-util", 14003 14006 "lazy_static",
+3 -3
pkgs/applications/blockchains/polkadot/default.nix
··· 9 9 }: 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "polkadot"; 12 - version = "0.9.40"; 12 + version = "0.9.41"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "paritytech"; 16 16 repo = "polkadot"; 17 17 rev = "v${version}"; 18 - hash = "sha256-gwifWhGsStC8vhMxc+LWSvs/av8c04cdWv7iszIQ/k8="; 18 + hash = "sha256-wjV/+2n9B617S6MxC48vtpbBBKGCWBEjRj7K6m630Mo="; 19 19 20 20 # the build process of polkadot requires a .git folder in order to determine 21 21 # the git commit hash that is being built and add it to the version string. ··· 34 34 cargoLock = { 35 35 lockFile = ./Cargo.lock; 36 36 outputHashes = { 37 - "binary-merkle-tree-4.0.0-dev" = "sha256-YxCAFrLWTmGjTFzNkyjE+DNs2cl4IjAlB7qz0KPN1vE="; 37 + "binary-merkle-tree-4.0.0-dev" = "sha256-ngtW11MGs+fcuCp9J5NH+dYJeK4YM5vWpRk0OuLYHus="; 38 38 "sub-tokens-0.1.0" = "sha256-GvhgZhOIX39zF+TbQWtTCgahDec4lQjH+NqamLFLUxM="; 39 39 }; 40 40 };
+172 -148
pkgs/applications/editors/vim/plugins/generated.nix
··· 547 547 548 548 ale = buildVimPluginFrom2Nix { 549 549 pname = "ale"; 550 - version = "2023-04-07"; 550 + version = "2023-04-12"; 551 551 src = fetchFromGitHub { 552 552 owner = "dense-analysis"; 553 553 repo = "ale"; 554 - rev = "57254db9ef1e0b0bf21466ed2d3ebaf60338768f"; 555 - sha256 = "01n04zi55y6nrg2dg2jpfacs7a140wa0m8rfkingdvx59n5g3j6j"; 554 + rev = "fdadaed2ba93432add241bb25f9935dc2ebb4152"; 555 + sha256 = "08i1fs55b3wqbvn3259c7zwnr45iv0lcyqri7ig7xgppi13hm2x8"; 556 556 }; 557 557 meta.homepage = "https://github.com/dense-analysis/ale/"; 558 558 }; ··· 847 847 848 848 b64-nvim = buildVimPluginFrom2Nix { 849 849 pname = "b64.nvim"; 850 - version = "2022-08-22"; 850 + version = "2023-04-12"; 851 851 src = fetchFromGitHub { 852 852 owner = "taybart"; 853 853 repo = "b64.nvim"; 854 - rev = "12dde6ebc3035f010833f513cfbd9abad92b28b3"; 855 - sha256 = "0h3ghaddqf00q7gih53ni7mx0iw5k9m616j34yg6hdf6s12zp5qw"; 854 + rev = "0efc9f2d5baf546298c3ef936434fe5783d7ecb3"; 855 + sha256 = "1sb24ydihp01qkrvfr1pc2wf5yjl9sb8b893x5hm6l8q8a70pr5h"; 856 856 }; 857 857 meta.homepage = "https://github.com/taybart/b64.nvim/"; 858 858 }; ··· 871 871 872 872 barbecue-nvim = buildVimPluginFrom2Nix { 873 873 pname = "barbecue.nvim"; 874 - version = "2023-04-09"; 874 + version = "2023-04-11"; 875 875 src = fetchFromGitHub { 876 876 owner = "utilyre"; 877 877 repo = "barbecue.nvim"; 878 - rev = "0859f1264310e8b5f75e2da1d5254c586fc7e3c8"; 879 - sha256 = "0h391fy61il5xvdm48h73ddckf27x5x4vqr1x6fbv7zll9qi1q1l"; 878 + rev = "e1b18d219bebbc97bc6afcf332313110ca62435d"; 879 + sha256 = "0bja7y2nm0iv1ly6mi0g7y9ivgv6b9dr60sbgnz099b36aw4918g"; 880 880 }; 881 881 meta.homepage = "https://github.com/utilyre/barbecue.nvim/"; 882 882 }; ··· 1111 1111 1112 1112 ccc-nvim = buildVimPluginFrom2Nix { 1113 1113 pname = "ccc.nvim"; 1114 - version = "2023-03-31"; 1114 + version = "2023-04-13"; 1115 1115 src = fetchFromGitHub { 1116 1116 owner = "uga-rosa"; 1117 1117 repo = "ccc.nvim"; 1118 - rev = "3e07b8ffc9dab162cd2940e75601da75ed0cebbe"; 1119 - sha256 = "0rk2gvnksss5w29sij6pw9rw0ah7wgvl5q8h21iby6wyvrzhh32i"; 1118 + rev = "82f5113a9b12993deabe610958dcf23933a8f4a7"; 1119 + sha256 = "1rpf985i4q2hlz9rlinqrc4bgf4lkj9615z7xjb2savc12pg7jww"; 1120 1120 }; 1121 1121 meta.homepage = "https://github.com/uga-rosa/ccc.nvim/"; 1122 1122 }; ··· 1651 1651 1652 1652 cmp-tabnine = buildVimPluginFrom2Nix { 1653 1653 pname = "cmp-tabnine"; 1654 - version = "2023-03-21"; 1654 + version = "2023-04-13"; 1655 1655 src = fetchFromGitHub { 1656 1656 owner = "tzachar"; 1657 1657 repo = "cmp-tabnine"; 1658 - rev = "4c8a0db92e75c848fb066edd280072389db80d24"; 1659 - sha256 = "19ypgjd3hfiw3qvjzx543x9i3pk09qj0wr89w2rbngsj4sypfm4h"; 1658 + rev = "380a11420752ac1c2d8fbb344454ff7f955b912c"; 1659 + sha256 = "0dn7cm1zxincy2m83irlc979ci9wlgvic66j1mqps2a2g0aan1zj"; 1660 1660 }; 1661 1661 meta.homepage = "https://github.com/tzachar/cmp-tabnine/"; 1662 1662 }; ··· 1927 1927 1928 1928 comment-nvim = buildVimPluginFrom2Nix { 1929 1929 pname = "comment.nvim"; 1930 - version = "2023-04-11"; 1930 + version = "2023-04-12"; 1931 1931 src = fetchFromGitHub { 1932 1932 owner = "numtostr"; 1933 1933 repo = "comment.nvim"; 1934 - rev = "ab62084fa992ed7ee3c19bbb5227ce2c4234612b"; 1935 - sha256 = "02hsh3addjmdinhh3irh0hsbyqvl4mhkd5msa6c4ddaxf6zbwclq"; 1934 + rev = "a89339ffbee677ab0521a483b6dac7e2e67c907e"; 1935 + sha256 = "0q2882md4c42v255y7pfhqiv1vvi0h76wh4i8n2a00958vkmzg36"; 1936 1936 }; 1937 1937 meta.homepage = "https://github.com/numtostr/comment.nvim/"; 1938 1938 }; ··· 2335 2335 2336 2336 dashboard-nvim = buildVimPluginFrom2Nix { 2337 2337 pname = "dashboard-nvim"; 2338 - version = "2023-04-07"; 2338 + version = "2023-04-12"; 2339 2339 src = fetchFromGitHub { 2340 2340 owner = "nvimdev"; 2341 2341 repo = "dashboard-nvim"; 2342 - rev = "6f65affd9904ed96a7c7a3edc55486f7f517931d"; 2343 - sha256 = "1jqxl2hsygmsq4bm3461qmancszh6ddr713g3zlzb1a17fyrivpk"; 2342 + rev = "d5b0fff69546a3d4d742b47ca0452a41323f2f8f"; 2343 + sha256 = "1s5gdcj29yy5dpv3553r7g9plhq81d68xnykz49kmmpxkapm5liz"; 2344 2344 }; 2345 2345 meta.homepage = "https://github.com/nvimdev/dashboard-nvim/"; 2346 2346 }; ··· 2721 2721 2722 2722 diffview-nvim = buildVimPluginFrom2Nix { 2723 2723 pname = "diffview.nvim"; 2724 - version = "2023-04-06"; 2724 + version = "2023-04-11"; 2725 2725 src = fetchFromGitHub { 2726 2726 owner = "sindrets"; 2727 2727 repo = "diffview.nvim"; 2728 - rev = "6bebefbc4c90e6d2b8c65e65b055d284475d89f8"; 2729 - sha256 = "0rpfy4cc6wb443y73gncb4l6iq82mka1gmblagknycrk64ycinaw"; 2728 + rev = "63720aa5a70ce4aa386be407d0e612cd9e63861a"; 2729 + sha256 = "0a8n7kv3b7qwzn435vnq0wxprfcypi86c2jsn7w07b9f0mymmlmf"; 2730 2730 }; 2731 2731 meta.homepage = "https://github.com/sindrets/diffview.nvim/"; 2732 2732 }; ··· 2769 2769 2770 2770 dracula-nvim = buildVimPluginFrom2Nix { 2771 2771 pname = "dracula.nvim"; 2772 - version = "2023-04-11"; 2772 + version = "2023-04-13"; 2773 2773 src = fetchFromGitHub { 2774 2774 owner = "Mofiqul"; 2775 2775 repo = "dracula.nvim"; 2776 - rev = "ce99c0b68edca27caa1701c0e79cf461b484d501"; 2777 - sha256 = "00rnxjz7cvlcbs1zld04fxnk8y5vjvikcz078bs7ap3l4pg1zy5p"; 2776 + rev = "b5bd9c7e4c6c8f4712610bda92140c735fe90521"; 2777 + sha256 = "0v1hq1la8l6kfz0p6ypkd8krr373pb7gizxljay3yk3jh9yzx524"; 2778 2778 }; 2779 2779 meta.homepage = "https://github.com/Mofiqul/dracula.nvim/"; 2780 2780 }; 2781 2781 2782 2782 dressing-nvim = buildVimPluginFrom2Nix { 2783 2783 pname = "dressing.nvim"; 2784 - version = "2023-04-07"; 2784 + version = "2023-04-12"; 2785 2785 src = fetchFromGitHub { 2786 2786 owner = "stevearc"; 2787 2787 repo = "dressing.nvim"; 2788 - rev = "91b9ba8a9474d2c4156dc2f3e858e07ae8faecf0"; 2789 - sha256 = "09cwg5vfccacxqm5y6k28f3kvmx80mczd1c7j4srdi824mqj9ffa"; 2788 + rev = "0e3e1eba147fee6e638ac1ac28f0495bcde17319"; 2789 + sha256 = "0yndy9n5hl1vv53nflixrqng11mpf5qj7afk9x137bpi847b2x7h"; 2790 2790 }; 2791 2791 meta.homepage = "https://github.com/stevearc/dressing.nvim/"; 2792 2792 }; ··· 3048 3048 3049 3049 flatten-nvim = buildVimPluginFrom2Nix { 3050 3050 pname = "flatten.nvim"; 3051 - version = "2023-04-09"; 3051 + version = "2023-04-11"; 3052 3052 src = fetchFromGitHub { 3053 3053 owner = "willothy"; 3054 3054 repo = "flatten.nvim"; 3055 - rev = "3508beaa48d316937d8332d17f7ddc1b7d3f9a83"; 3056 - sha256 = "1npwcscw01r109vlgkfk5wziwr31nscz3xv0k7gjhpb09chnrb43"; 3055 + rev = "081095e3abbfeae03b74e134053e8ef48c751932"; 3056 + sha256 = "13b9dzsp02x35zs8jv6pkwvlijimns6mbnxj3c7yy20rrc3y4g77"; 3057 3057 }; 3058 3058 meta.homepage = "https://github.com/willothy/flatten.nvim/"; 3059 3059 }; ··· 3264 3264 3265 3265 fzf-lua = buildVimPluginFrom2Nix { 3266 3266 pname = "fzf-lua"; 3267 - version = "2023-04-11"; 3267 + version = "2023-04-12"; 3268 3268 src = fetchFromGitHub { 3269 3269 owner = "ibhagwan"; 3270 3270 repo = "fzf-lua"; 3271 - rev = "061a4df40f5238782fdd7b380fe55650fadd9384"; 3272 - sha256 = "0p928iyia6bpzrc4g6926xxagvfw30830air5lfbw492vp4rh2j5"; 3271 + rev = "08f57e9a3c58c4ebef4c96de271d674d12e77607"; 3272 + sha256 = "1x9pv8pf7cs1iyqw5f2aqrpp8wlzkkizxq1pbm2hjfp14k6gjvl4"; 3273 3273 }; 3274 3274 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 3275 3275 }; ··· 3324 3324 3325 3325 ghcid = buildVimPluginFrom2Nix { 3326 3326 pname = "ghcid"; 3327 - version = "2022-12-12"; 3327 + version = "2023-04-13"; 3328 3328 src = fetchFromGitHub { 3329 3329 owner = "ndmitchell"; 3330 3330 repo = "ghcid"; 3331 - rev = "41dd2cfd805478c5601df229549029b20f930381"; 3332 - sha256 = "1zwrh2wss3igx10bh85zh55hjahhn5nda2w8na8cz8qld0prpc3v"; 3331 + rev = "e2852979aa644c8fed92d46ab529d2c6c1c62b59"; 3332 + sha256 = "0bsjbb6n7ssg411k2xj4f881v392hvb7xln99bq1r3vkg14mqqsd"; 3333 3333 }; 3334 3334 meta.homepage = "https://github.com/ndmitchell/ghcid/"; 3335 3335 }; ··· 3480 3480 3481 3481 go-nvim = buildVimPluginFrom2Nix { 3482 3482 pname = "go.nvim"; 3483 - version = "2023-04-08"; 3483 + version = "2023-04-12"; 3484 3484 src = fetchFromGitHub { 3485 3485 owner = "ray-x"; 3486 3486 repo = "go.nvim"; 3487 - rev = "8398343f2e161aec2d1a9324cd1c739eb379dd24"; 3488 - sha256 = "07w7zwz87d3ngz34cnp5g6pxg16n7ixaci32gxfvyixlpng43wcb"; 3487 + rev = "d7530aea0f1086d10e9267287966702616c366af"; 3488 + sha256 = "1m4ijvxdf6v16i1bqi6d1yjs2drbj05nfnc636b597wfgri94ayf"; 3489 3489 }; 3490 3490 meta.homepage = "https://github.com/ray-x/go.nvim/"; 3491 3491 }; ··· 3612 3612 3613 3613 gruvbox-nvim = buildVimPluginFrom2Nix { 3614 3614 pname = "gruvbox.nvim"; 3615 - version = "2023-04-10"; 3615 + version = "2023-04-12"; 3616 3616 src = fetchFromGitHub { 3617 3617 owner = "ellisonleao"; 3618 3618 repo = "gruvbox.nvim"; 3619 - rev = "de4e3380575acc1bc9a349d32f028301dea54dcd"; 3620 - sha256 = "10r0vvici824894aj51979vyszwdzw2g2dyfzfr5d57365sc8bgb"; 3619 + rev = "e685aebb5967c2597858a41779a8d38321253509"; 3620 + sha256 = "035xpsxxpfyhm79jkm1gsyix5gvf5xjyvkqbrzdkg23wj7bcxr4f"; 3621 3621 }; 3622 3622 meta.homepage = "https://github.com/ellisonleao/gruvbox.nvim/"; 3623 3623 }; ··· 3731 3731 3732 3732 heirline-nvim = buildVimPluginFrom2Nix { 3733 3733 pname = "heirline.nvim"; 3734 - version = "2023-04-10"; 3734 + version = "2023-04-12"; 3735 3735 src = fetchFromGitHub { 3736 3736 owner = "rebelot"; 3737 3737 repo = "heirline.nvim"; 3738 - rev = "d860874eef6088109b5cb102871d76307280f052"; 3739 - sha256 = "0gh4jc45zvgmgx3bg4iyqa4smjl2bqalkwylpq74izzn4bxjd4yz"; 3738 + rev = "b5bbb8b4e4e24dccd4a2f20e38a2be0b58fb7fc5"; 3739 + sha256 = "0gm2khmr5jlj9idij9baw5jcpc7wiib84vsqd36rbz8byw1l7a4r"; 3740 3740 }; 3741 3741 meta.homepage = "https://github.com/rebelot/heirline.nvim/"; 3742 3742 }; ··· 4343 4343 4344 4344 legendary-nvim = buildVimPluginFrom2Nix { 4345 4345 pname = "legendary.nvim"; 4346 - version = "2023-04-10"; 4346 + version = "2023-04-12"; 4347 4347 src = fetchFromGitHub { 4348 4348 owner = "mrjones2014"; 4349 4349 repo = "legendary.nvim"; 4350 - rev = "69e7b9b56e6507760049c78a15116e1c0540423c"; 4351 - sha256 = "0m5ngwaz9hw79gwv7mpbc3i63m3i18sykvmm67gr9182k505xqpc"; 4350 + rev = "d1f805647e14c2e1c998bfb69feb0c764ee0eb19"; 4351 + sha256 = "1251m1b34af55cfc913h70vr7xsp94nzy3ajqggcq7paaav51i7r"; 4352 4352 }; 4353 4353 meta.homepage = "https://github.com/mrjones2014/legendary.nvim/"; 4354 4354 }; ··· 4643 4643 4644 4644 lsp-overloads-nvim = buildVimPluginFrom2Nix { 4645 4645 pname = "lsp-overloads.nvim"; 4646 - version = "2023-04-10"; 4646 + version = "2023-04-11"; 4647 4647 src = fetchFromGitHub { 4648 4648 owner = "Issafalcon"; 4649 4649 repo = "lsp-overloads.nvim"; 4650 - rev = "c63692f0b31ca0114bf2573d8d99fed5fd47dad9"; 4651 - sha256 = "1yh1k1px4lxfqcdirpdwammc9rjf8bpk2qs6vvkiixx2wkh4xsdf"; 4650 + rev = "91a933b024b39aaef42cb03db3edbce516ac0b0b"; 4651 + sha256 = "14454n8mfa9ngccanrj3dnh9cii64xpp9g4wbgymzwycl1dgwxl0"; 4652 4652 }; 4653 4653 meta.homepage = "https://github.com/Issafalcon/lsp-overloads.nvim/"; 4654 4654 }; ··· 4798 4798 4799 4799 luasnip = buildVimPluginFrom2Nix { 4800 4800 pname = "luasnip"; 4801 - version = "2023-04-11"; 4801 + version = "2023-04-12"; 4802 4802 src = fetchFromGitHub { 4803 4803 owner = "l3mon4d3"; 4804 4804 repo = "luasnip"; 4805 - rev = "dc2e307287e9a9eabc18f0e3984c7e8cb164bb38"; 4806 - sha256 = "10gyij1glisb1zqqdrb2wy772kz3nwf0mjn9npzzfcyrpvvwfra4"; 4805 + rev = "eb592e4be52fff5a514b7540d5341b55ca4c3226"; 4806 + sha256 = "0a9j9cay70znddqxq5lf1nnwnnnc2w9sbc8n26s0l5sd1c0zg18x"; 4807 4807 fetchSubmodules = true; 4808 4808 }; 4809 4809 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; ··· 4895 4895 4896 4896 mason-lspconfig-nvim = buildVimPluginFrom2Nix { 4897 4897 pname = "mason-lspconfig.nvim"; 4898 - version = "2023-04-08"; 4898 + version = "2023-04-12"; 4899 4899 src = fetchFromGitHub { 4900 4900 owner = "williamboman"; 4901 4901 repo = "mason-lspconfig.nvim"; 4902 - rev = "a8d5db8f227b9b236d1c54a9c6234bc033825ce7"; 4903 - sha256 = "1c8w86yxmyay2b3c7ifl4qxcibgi27sf6pmx5b43j21ixjv5455n"; 4902 + rev = "b81c50c4baae7d80b1723b3fa86e814d7754d15b"; 4903 + sha256 = "0616f3b2h64xc566zlaxdg2cf6jvlzv6bnfxq4v30xm1wqzfa1a0"; 4904 4904 }; 4905 4905 meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; 4906 4906 }; ··· 4919 4919 4920 4920 mason-nvim = buildVimPluginFrom2Nix { 4921 4921 pname = "mason.nvim"; 4922 - version = "2023-04-11"; 4922 + version = "2023-04-13"; 4923 4923 src = fetchFromGitHub { 4924 4924 owner = "williamboman"; 4925 4925 repo = "mason.nvim"; 4926 - rev = "3fb2be48864b7850a26c54c04cedb54e95dcdf3f"; 4927 - sha256 = "11i931xsxbsw7arbglv8k4gl53klw2jv0r69a00m0fddyiz4avq8"; 4926 + rev = "6845ccfe009d6fbc5a6a266c285779ad462b234b"; 4927 + sha256 = "1yd1lcg7zvh1kyflfkm7ip2g9z75bs52fp5fami8w4a2qp6hpz3f"; 4928 4928 }; 4929 4929 meta.homepage = "https://github.com/williamboman/mason.nvim/"; 4930 4930 }; ··· 5039 5039 5040 5040 mkdx = buildVimPluginFrom2Nix { 5041 5041 pname = "mkdx"; 5042 - version = "2023-04-04"; 5042 + version = "2023-04-13"; 5043 5043 src = fetchFromGitHub { 5044 5044 owner = "SidOfc"; 5045 5045 repo = "mkdx"; 5046 - rev = "1ddfff8118b6c3eb000dfc7c3c6eea5a314344b8"; 5047 - sha256 = "0jjrn0br2sl7flr0bjx367j8f94m7cyqsmaaq3ind9i42vjfahkv"; 5046 + rev = "2881f23d06da8544ecfcb75cd3b6c061d7392414"; 5047 + sha256 = "06d08mbzc3ri9x8ar9a5f05b7g9vz76cbygna8hqkpmzhq1rq817"; 5048 5048 }; 5049 5049 meta.homepage = "https://github.com/SidOfc/mkdx/"; 5050 5050 }; ··· 5411 5411 5412 5412 neogit = buildVimPluginFrom2Nix { 5413 5413 pname = "neogit"; 5414 - version = "2023-03-20"; 5414 + version = "2023-04-13"; 5415 5415 src = fetchFromGitHub { 5416 5416 owner = "TimUntersberger"; 5417 5417 repo = "neogit"; 5418 - rev = "039ff3212ec43cc4d3332956dfb54e263c8d5033"; 5419 - sha256 = "17a6lpqv99b89g7kakbzw97hpkqmw729if4j8gq8svza3fjcq2pg"; 5418 + rev = "69a6ca7c41b023ebf9cad70778e227b3209b40c4"; 5419 + sha256 = "1r5dii9510hb4qd63g32hrrrn8m3dmhwlp8l2ilig2vzcpics6mq"; 5420 5420 }; 5421 5421 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 5422 5422 }; ··· 5867 5867 5868 5868 nightfox-nvim = buildVimPluginFrom2Nix { 5869 5869 pname = "nightfox.nvim"; 5870 - version = "2023-04-11"; 5870 + version = "2023-04-12"; 5871 5871 src = fetchFromGitHub { 5872 5872 owner = "EdenEast"; 5873 5873 repo = "nightfox.nvim"; 5874 - rev = "fbc610f3d3771e330b0dbefc8aab3112679554a6"; 5875 - sha256 = "1a5mmjhiq3dpbillrmyh0f2j4p2cki6707j0qdbak1swrk30hwqp"; 5874 + rev = "669b0ce7d02d511c06ceae6201392dc29906dfc0"; 5875 + sha256 = "1698j3jrk0rl64q97013hj3lvlrdq6ndfz8k395kkfiaplg31xwh"; 5876 5876 }; 5877 5877 meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; 5878 5878 }; ··· 5903 5903 5904 5904 nlsp-settings-nvim = buildVimPluginFrom2Nix { 5905 5905 pname = "nlsp-settings.nvim"; 5906 - version = "2023-04-11"; 5906 + version = "2023-04-13"; 5907 5907 src = fetchFromGitHub { 5908 5908 owner = "tamago324"; 5909 5909 repo = "nlsp-settings.nvim"; 5910 - rev = "fd5ca6e4c2b01f97309e6b515b9957e7454587e1"; 5911 - sha256 = "047911rgg1a9vrg1f6yaifsc54wgg6xjpgv198iaz80dhn5mr913"; 5910 + rev = "5c2a066205b0fa4f9408e57fc02937dc01b1a2a2"; 5911 + sha256 = "075rx3j1kjp7gbajzpvhrxi5mzgbzgkv18sy2sjhzy8vc2jijw57"; 5912 5912 }; 5913 5913 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 5914 5914 }; ··· 5999 5999 6000 6000 nui-nvim = buildVimPluginFrom2Nix { 6001 6001 pname = "nui.nvim"; 6002 - version = "2023-04-10"; 6002 + version = "2023-04-11"; 6003 6003 src = fetchFromGitHub { 6004 6004 owner = "MunifTanjim"; 6005 6005 repo = "nui.nvim"; 6006 - rev = "bf5900f1b60bf6499755ac92315181a24a87a577"; 6007 - sha256 = "0rs8i095ppkllvk6hacgvwsbmmiwaj2m57xwg5jd7mxyvy40zr4j"; 6006 + rev = "ecd9def93891b9260b15b5fcef542eaabf4145c9"; 6007 + sha256 = "133qxi97km61kg0y465jbwwzrby1v5h663igvrqlj1n2syvwwmi2"; 6008 6008 }; 6009 6009 meta.homepage = "https://github.com/MunifTanjim/nui.nvim/"; 6010 6010 }; ··· 6119 6119 6120 6120 nvim-bufdel = buildVimPluginFrom2Nix { 6121 6121 pname = "nvim-bufdel"; 6122 - version = "2023-02-27"; 6122 + version = "2023-04-13"; 6123 6123 src = fetchFromGitHub { 6124 6124 owner = "ojroques"; 6125 6125 repo = "nvim-bufdel"; 6126 - rev = "9f1ed6ef6594df9a74762a86f469d12036584976"; 6127 - sha256 = "0fcvhxsr6nfi1sg5cy46dyy20rzc7g25y7ha0bhl2cprvz3frph1"; 6126 + rev = "96c4f7ab053ddab0025bebe5f7c71e4795430e47"; 6127 + sha256 = "01m8pgwsfplmknwf0a0ynwn7nflhsxfz1vmx4h3y92p0gs5shwwy"; 6128 6128 }; 6129 6129 meta.homepage = "https://github.com/ojroques/nvim-bufdel/"; 6130 6130 }; ··· 6371 6371 6372 6372 nvim-highlight-colors = buildVimPluginFrom2Nix { 6373 6373 pname = "nvim-highlight-colors"; 6374 - version = "2023-03-26"; 6374 + version = "2023-04-12"; 6375 6375 src = fetchFromGitHub { 6376 6376 owner = "brenoprata10"; 6377 6377 repo = "nvim-highlight-colors"; 6378 - rev = "14670d94c7813bfe929ed2ca2d3875f4f468173e"; 6379 - sha256 = "0igiam19m1kw9ir41zkpfq78n67yypwvmmw2j3p04qnbwj0x3nxb"; 6378 + rev = "46babc602128ff8024a97574e9c24963466cf061"; 6379 + sha256 = "1z6lf13g42b9kkkkrr7src0fq3kaaqnxqp5akf8ib4l2rnf6hh4f"; 6380 6380 }; 6381 6381 meta.homepage = "https://github.com/brenoprata10/nvim-highlight-colors/"; 6382 6382 }; ··· 6419 6419 6420 6420 nvim-jdtls = buildVimPluginFrom2Nix { 6421 6421 pname = "nvim-jdtls"; 6422 - version = "2023-04-03"; 6422 + version = "2023-04-12"; 6423 6423 src = fetchFromGitHub { 6424 6424 owner = "mfussenegger"; 6425 6425 repo = "nvim-jdtls"; 6426 - rev = "ffb8f63689197b845c2388f0df5f0d1bd21c968f"; 6427 - sha256 = "0pxz9050522vlglvwm67s43dniwxygynvi0f8qdd8dhb5zm9x65q"; 6426 + rev = "a2dd26c1c089fcd70dcf9ee5b691cad09cc8c200"; 6427 + sha256 = "15y63lbxn33plyjfq00swzsyvpy69bn94x2xsyq6jwg4w2r0myf9"; 6428 6428 }; 6429 6429 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 6430 6430 }; ··· 6479 6479 6480 6480 nvim-lint = buildVimPluginFrom2Nix { 6481 6481 pname = "nvim-lint"; 6482 - version = "2023-04-05"; 6482 + version = "2023-04-11"; 6483 6483 src = fetchFromGitHub { 6484 6484 owner = "mfussenegger"; 6485 6485 repo = "nvim-lint"; 6486 - rev = "2a9969a09d8456104d7954b67ee6667d6645c71a"; 6487 - sha256 = "0yy9kwl2xkg38xl7rsjz9yz3w99md2ywj2w3whlv7hwk0w0pirb4"; 6486 + rev = "a37881a226980e6c1042dd3abc2c0e05e2a1ac45"; 6487 + sha256 = "0aaf5kfhr5jxzr2s7jq7i17nk096aww4icnp18x6c78qpvyrpils"; 6488 6488 }; 6489 6489 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 6490 6490 }; ··· 6503 6503 6504 6504 nvim-lspconfig = buildVimPluginFrom2Nix { 6505 6505 pname = "nvim-lspconfig"; 6506 - version = "2023-04-10"; 6506 + version = "2023-04-13"; 6507 6507 src = fetchFromGitHub { 6508 6508 owner = "neovim"; 6509 6509 repo = "nvim-lspconfig"; 6510 - rev = "10fa01d553ce10646350461ac5ddc71f189e9d1a"; 6511 - sha256 = "1v5zqf5z9fl23f62cgchsyhg54wpw364k6bpn9gi6py5mfpig49c"; 6510 + rev = "7f776b7d0a028e9d63d2e9389d7fdfc48cbb15d6"; 6511 + sha256 = "0mm3j7l2ih92v6kb2im3r9as3ncv18bpiqxgw64lb5crd9j4z4dv"; 6512 6512 }; 6513 6513 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 6514 6514 }; ··· 6729 6729 meta.homepage = "https://github.com/nvim-pack/nvim-spectre/"; 6730 6730 }; 6731 6731 6732 + nvim-spider = buildVimPluginFrom2Nix { 6733 + pname = "nvim-spider"; 6734 + version = "2023-04-12"; 6735 + src = fetchFromGitHub { 6736 + owner = "chrisgrieser"; 6737 + repo = "nvim-spider"; 6738 + rev = "23fa1260be2090f2d675ee90e0b83fd993f6c3dc"; 6739 + sha256 = "1ij9kv1dm6lrdvrw83wc833yw32k4wdgqg1gd5d4qdddnqhix6zw"; 6740 + }; 6741 + meta.homepage = "https://github.com/chrisgrieser/nvim-spider/"; 6742 + }; 6743 + 6732 6744 nvim-surround = buildVimPluginFrom2Nix { 6733 6745 pname = "nvim-surround"; 6734 6746 version = "2023-04-02"; ··· 6767 6779 6768 6780 nvim-tree-lua = buildVimPluginFrom2Nix { 6769 6781 pname = "nvim-tree.lua"; 6770 - version = "2023-04-11"; 6782 + version = "2023-04-12"; 6771 6783 src = fetchFromGitHub { 6772 6784 owner = "nvim-tree"; 6773 6785 repo = "nvim-tree.lua"; 6774 - rev = "48d53a5934fbd51b655d03db7dad35551838f2c9"; 6775 - sha256 = "0wxkbjbbx6j2fs3bxc69vdppp4n46s13ykilrq4sd4vkcj1msr5m"; 6786 + rev = "b601b5aa25627f68d3d73ba9269b49e4f04ce126"; 6787 + sha256 = "1xs48i82gw78ig6wkan5c5b1a2fd1vgh8c51zckn76hmrzjb8bns"; 6776 6788 }; 6777 6789 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 6778 6790 }; 6779 6791 6780 6792 nvim-treesitter = buildVimPluginFrom2Nix { 6781 6793 pname = "nvim-treesitter"; 6782 - version = "2023-04-11"; 6794 + version = "2023-04-13"; 6783 6795 src = fetchFromGitHub { 6784 6796 owner = "nvim-treesitter"; 6785 6797 repo = "nvim-treesitter"; 6786 - rev = "ac4020c70722337c326bf65b645b162ee6e1796b"; 6787 - sha256 = "0i993nj2yazzq5maiyqn0x1n0iilx6jz1a5wi079f0whhz5jaggi"; 6798 + rev = "ba6c55b203748ec099127914d34554a575e051c0"; 6799 + sha256 = "1qlq691vrl6bicd1i19ycm7zjg8g6bkz2jg0p5pq0v72gjaf11xs"; 6788 6800 }; 6789 6801 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 6790 6802 }; 6791 6803 6792 6804 nvim-treesitter-context = buildVimPluginFrom2Nix { 6793 6805 pname = "nvim-treesitter-context"; 6794 - version = "2023-04-07"; 6806 + version = "2023-04-12"; 6795 6807 src = fetchFromGitHub { 6796 6808 owner = "nvim-treesitter"; 6797 6809 repo = "nvim-treesitter-context"; 6798 - rev = "38203f5e6c62617b3c07662dc71ce3047ecd90d3"; 6799 - sha256 = "0l3583h890pqmil34bim5zy3ib1jfc3nz12ykhda2b42a1qad0b4"; 6810 + rev = "0d730df898f3dc27fd88f03cfa6d26d2405554b4"; 6811 + sha256 = "0jf2643hv5b9hbjvjkzscsafi0p75ar29gcfayvaz0n7002hkmi0"; 6800 6812 }; 6801 6813 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 6802 6814 }; ··· 6851 6863 6852 6864 nvim-ts-autotag = buildVimPluginFrom2Nix { 6853 6865 pname = "nvim-ts-autotag"; 6854 - version = "2023-04-10"; 6866 + version = "2023-04-13"; 6855 6867 src = fetchFromGitHub { 6856 6868 owner = "windwp"; 6857 6869 repo = "nvim-ts-autotag"; 6858 - rev = "b525525b6aba20763e19011a73454845170850d7"; 6859 - sha256 = "0j8vgqq3408y1b6vsv5rppp5aqly1cf8yn37chh526r42aikzbkd"; 6870 + rev = "cac97f3b47bcb927db6d1d784c0c323056506ef3"; 6871 + sha256 = "0fl804msvrhykw6haskn9n0f1yxmjxy8mv0b3hja0ya7pqblybda"; 6860 6872 }; 6861 6873 meta.homepage = "https://github.com/windwp/nvim-ts-autotag/"; 6862 6874 }; ··· 6914 6926 src = fetchFromGitHub { 6915 6927 owner = "nvim-tree"; 6916 6928 repo = "nvim-web-devicons"; 6917 - rev = "defb7da4d3d313bf31982c52fd78e414f02840c9"; 6918 - sha256 = "1qwcr82yd2jdfds6r6s0pfkixpk0dydnl1l9vqg092l6vkx6v30v"; 6929 + rev = "4ec26d67d419c12a4abaea02f1b6c57b40c08d7e"; 6930 + sha256 = "18ssw6v60sy2lmb4dc11xz0vwkc4mw8fzbavvggadibjmbcf824l"; 6919 6931 }; 6920 6932 meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; 6921 6933 }; ··· 6972 6984 pname = "oceanic-material"; 6973 6985 version = "2022-08-17"; 6974 6986 src = fetchFromGitHub { 6975 - owner = "glepnir"; 6987 + owner = "nvimdev"; 6976 6988 repo = "oceanic-material"; 6977 6989 rev = "9f2d002398d1ef0cd52315fa767b138719536c5d"; 6978 6990 sha256 = "1c9sbprivdhjyzxni3xzmk3lc56icd61azzvl9bb961iaag6r1c9"; 6979 6991 }; 6980 - meta.homepage = "https://github.com/glepnir/oceanic-material/"; 6992 + meta.homepage = "https://github.com/nvimdev/oceanic-material/"; 6981 6993 }; 6982 6994 6983 6995 oceanic-next = buildVimPluginFrom2Nix { ··· 7329 7341 meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; 7330 7342 }; 7331 7343 7344 + poimandres-nvim = buildVimPluginFrom2Nix { 7345 + pname = "poimandres.nvim"; 7346 + version = "2023-02-17"; 7347 + src = fetchFromGitHub { 7348 + owner = "olivercederborg"; 7349 + repo = "poimandres.nvim"; 7350 + rev = "43ea31d1e19f7603697bb3272b233930d0292383"; 7351 + sha256 = "1q3xszkwlz008n9dh3q2agii6yjk45c47k38g3fj7ssgzmq56q21"; 7352 + }; 7353 + meta.homepage = "https://github.com/olivercederborg/poimandres.nvim/"; 7354 + }; 7355 + 7332 7356 pony-vim-syntax = buildVimPluginFrom2Nix { 7333 7357 pname = "pony-vim-syntax"; 7334 7358 version = "2017-09-26"; ··· 7645 7669 7646 7670 rest-nvim = buildNeovimPluginFrom2Nix { 7647 7671 pname = "rest.nvim"; 7648 - version = "2023-01-23"; 7672 + version = "2023-04-12"; 7649 7673 src = fetchFromGitHub { 7650 7674 owner = "rest-nvim"; 7651 7675 repo = "rest.nvim"; 7652 - rev = "0fdb69f328529b34a2279c14be63b3325dc52740"; 7653 - sha256 = "0dn9g6a3lidavw381cd9ckhw3biiq81vypgg4bl5yl6w4avp5nr0"; 7676 + rev = "df826bc0a76d5eb79b458db894d47a5538b454fe"; 7677 + sha256 = "13f3s5xzl572y2pa7j67h7sgmnkjhkrchzqd1fjjx6098r15qnsk"; 7654 7678 }; 7655 7679 meta.homepage = "https://github.com/rest-nvim/rest.nvim/"; 7656 7680 }; ··· 7970 7994 7971 7995 smart-splits-nvim = buildVimPluginFrom2Nix { 7972 7996 pname = "smart-splits.nvim"; 7973 - version = "2023-04-11"; 7997 + version = "2023-04-12"; 7974 7998 src = fetchFromGitHub { 7975 7999 owner = "mrjones2014"; 7976 8000 repo = "smart-splits.nvim"; 7977 - rev = "a2d3c590c250298f34674c19a87aa9e4c01af788"; 7978 - sha256 = "18028fx4f88v34227mdzqj77x9k6zja69dj0shsl14pyagxallng"; 8001 + rev = "4ade2833e248cef0cf038a03678c55eb7499cbff"; 8002 + sha256 = "0yha2rnvdk5wrlpi9q3q8w05lwdw0vbq584h1zlcyq0q2b66v50r"; 7979 8003 }; 7980 8004 meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; 7981 8005 }; ··· 9019 9043 9020 9044 tmux-nvim = buildVimPluginFrom2Nix { 9021 9045 pname = "tmux.nvim"; 9022 - version = "2023-03-11"; 9046 + version = "2023-04-11"; 9023 9047 src = fetchFromGitHub { 9024 9048 owner = "aserowy"; 9025 9049 repo = "tmux.nvim"; 9026 - rev = "9ba03cc5dfb30f1dc9eb50d0796dfdd52c5f454e"; 9027 - sha256 = "0xkdihg0f9b0wc37zml7n3wsmy8ppy08zynv8f2j90xwlwad06b4"; 9050 + rev = "b6da35847df972f50df27d938b6e5ea09bcc8391"; 9051 + sha256 = "1zmvc8ar9x79bygiilb9gs49hnl8w2z575l25cpvlbylaz6yxi22"; 9028 9052 }; 9029 9053 meta.homepage = "https://github.com/aserowy/tmux.nvim/"; 9030 9054 }; ··· 9080 9104 9081 9105 toggleterm-nvim = buildVimPluginFrom2Nix { 9082 9106 pname = "toggleterm.nvim"; 9083 - version = "2023-04-09"; 9107 + version = "2023-04-12"; 9084 9108 src = fetchFromGitHub { 9085 9109 owner = "akinsho"; 9086 9110 repo = "toggleterm.nvim"; 9087 - rev = "2e477f7ee8ee8229ff3158e3018a067797b9cd38"; 9088 - sha256 = "1d7qqgviimgmzz1g7ykv688pyhr0m9kv6h9lrczxmdq7xwymmbbq"; 9111 + rev = "1c5996ee3c30b54751093fe68d40676859e7778f"; 9112 + sha256 = "0m0xaw7d9yf9xy4j9x9y8lj7alr9zmys5picknfklyxq6p7szh6b"; 9089 9113 }; 9090 9114 meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; 9091 9115 }; ··· 9276 9300 src = fetchFromGitHub { 9277 9301 owner = "unisonweb"; 9278 9302 repo = "unison"; 9279 - rev = "b9c391ea148795d50071565d8abea635f59dc68f"; 9280 - sha256 = "0xh52mc6kp58w2frjmncc0p132y3287hc92dxih62maaagaham9l"; 9303 + rev = "a7097aaaf8e84c7709f14fe9aa3568eacb9532fb"; 9304 + sha256 = "1xgiq7a9zvqhvjm5sp6ln83791mvwcfj2dqza0sgcqdfqv8ag2fn"; 9281 9305 }; 9282 9306 meta.homepage = "https://github.com/unisonweb/unison/"; 9283 9307 }; ··· 10868 10892 10869 10893 vim-fubitive = buildVimPluginFrom2Nix { 10870 10894 pname = "vim-fubitive"; 10871 - version = "2023-02-13"; 10895 + version = "2023-04-12"; 10872 10896 src = fetchFromGitHub { 10873 10897 owner = "tommcdo"; 10874 10898 repo = "vim-fubitive"; 10875 - rev = "f522e7c1c958d099438b375f38576f0f2f5100d2"; 10876 - sha256 = "1qd9pka3wrmwq1y33i4bzm2qs6l0lx8g1174aa0g4kcawwf21m7j"; 10899 + rev = "5b13f16703ff69cca103aeffbd3d69515899989a"; 10900 + sha256 = "00gi3bfrf58f8z7v30lkbdj4mw8n8q2cjdkqq4clv6yrsy7jg25i"; 10877 10901 }; 10878 10902 meta.homepage = "https://github.com/tommcdo/vim-fubitive/"; 10879 10903 }; ··· 11758 11782 11759 11783 vim-lsp = buildVimPluginFrom2Nix { 11760 11784 pname = "vim-lsp"; 11761 - version = "2023-04-10"; 11785 + version = "2023-04-13"; 11762 11786 src = fetchFromGitHub { 11763 11787 owner = "prabirshrestha"; 11764 11788 repo = "vim-lsp"; 11765 - rev = "06bf1b35ef4717a10a00ec4f8387ebf3ec983194"; 11766 - sha256 = "1wmxjlhhb3za2giza5hphr4sp4x763czajviv6vndfpibi4cgy5s"; 11789 + rev = "80644e108b71d8735ab4c03dbc53db5ec6598d9b"; 11790 + sha256 = "1m3c8sq48acb1mcv1b1dxyh6zfm2i46hvaf0i7nx8ndnasd3jap4"; 11767 11791 }; 11768 11792 meta.homepage = "https://github.com/prabirshrestha/vim-lsp/"; 11769 11793 }; ··· 11867 11891 11868 11892 vim-matchup = buildVimPluginFrom2Nix { 11869 11893 pname = "vim-matchup"; 11870 - version = "2023-04-10"; 11894 + version = "2023-04-13"; 11871 11895 src = fetchFromGitHub { 11872 11896 owner = "andymass"; 11873 11897 repo = "vim-matchup"; 11874 - rev = "03ebc3b7dbf8f17f2d45d9b5619b48a030e1bf88"; 11875 - sha256 = "18bgw4gv9xd8msh7ly4lz8x631a3bprn5lcdl114g3h6ybs8ldix"; 11898 + rev = "57499f5ca9a66f233efa4faeb04571e5194863a6"; 11899 + sha256 = "08dm88wfwl55lx3kygh4mpwm5l62k3v0776jpwni8k80pzf057fi"; 11876 11900 }; 11877 11901 meta.homepage = "https://github.com/andymass/vim-matchup/"; 11878 11902 }; ··· 13199 13223 13200 13224 vim-startuptime = buildVimPluginFrom2Nix { 13201 13225 pname = "vim-startuptime"; 13202 - version = "2023-02-01"; 13226 + version = "2023-04-13"; 13203 13227 src = fetchFromGitHub { 13204 13228 owner = "dstein64"; 13205 13229 repo = "vim-startuptime"; 13206 - rev = "6580cf539c33a212f4f5542068a3b4dd2b3ad834"; 13207 - sha256 = "1977l3k7crzrr1cc80afnz7cs6bz2y16qn02gz56marc0pn215mx"; 13230 + rev = "c9da356b59eb30dfca6cd573b63d0e81c0a24ff9"; 13231 + sha256 = "17qv1xpakvp4x23g02kxz34q2vfk80sgqfkx17g6rb8fx5dy00yx"; 13208 13232 }; 13209 13233 meta.homepage = "https://github.com/dstein64/vim-startuptime/"; 13210 13234 }; ··· 14100 14124 14101 14125 vimspector = buildVimPluginFrom2Nix { 14102 14126 pname = "vimspector"; 14103 - version = "2023-04-06"; 14127 + version = "2023-04-12"; 14104 14128 src = fetchFromGitHub { 14105 14129 owner = "puremourning"; 14106 14130 repo = "vimspector"; 14107 - rev = "657132ead403951a59641b24bd771bb6da93e427"; 14108 - sha256 = "11kzpzah7wqm22wnrlr8hpyjaammkj2nlxh19m52xb8cc3fkzpys"; 14131 + rev = "2d374a10f9c451cd90a073e67121fa640f5ef8c2"; 14132 + sha256 = "1w80mavmjivmgw6fp5pjqzg34l6hdwip97afsvlh8qhfnvngb0gg"; 14109 14133 fetchSubmodules = true; 14110 14134 }; 14111 14135 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 14452 14476 pname = "zephyr-nvim"; 14453 14477 version = "2022-12-31"; 14454 14478 src = fetchFromGitHub { 14455 - owner = "glepnir"; 14479 + owner = "nvimdev"; 14456 14480 repo = "zephyr-nvim"; 14457 14481 rev = "7fd86b7164442d3b5ec2c81b2694d040e716b5cf"; 14458 14482 sha256 = "12ichp7jmawgf1clwpd2w22a2amqlv578lnb89ppzf9hjz5kcxnb"; 14459 14483 }; 14460 - meta.homepage = "https://github.com/glepnir/zephyr-nvim/"; 14484 + meta.homepage = "https://github.com/nvimdev/zephyr-nvim/"; 14461 14485 }; 14462 14486 14463 14487 zig-vim = buildVimPluginFrom2Nix { ··· 14514 14538 src = fetchFromGitHub { 14515 14539 owner = "catppuccin"; 14516 14540 repo = "nvim"; 14517 - rev = "f078aa49bef4cb9e7b86f07b607c6e98c95b9fb5"; 14518 - sha256 = "0w87h5vdrwn3ch8fyyfxkpz16r150910wmbb5y6wr4ad3scndjsk"; 14541 + rev = "5e31d3ce29aa17b7a047b1a0e6b9ce9d6702c511"; 14542 + sha256 = "0pms68jjqgpkm29rklrl2yzl0rd9b7zpx1zyf3msjqm0ph4hakg5"; 14519 14543 }; 14520 14544 meta.homepage = "https://github.com/catppuccin/nvim/"; 14521 14545 }; ··· 14582 14606 14583 14607 lspsaga-nvim-original = buildVimPluginFrom2Nix { 14584 14608 pname = "lspsaga-nvim-original"; 14585 - version = "2023-04-11"; 14609 + version = "2023-04-13"; 14586 14610 src = fetchFromGitHub { 14587 14611 owner = "nvimdev"; 14588 14612 repo = "lspsaga.nvim"; 14589 - rev = "1ead4ce8a20a8ac7e96aca038d54ceaa185be4e0"; 14590 - sha256 = "14k02srgqdzglzbn6yvr12qgpkmngaamlpb97p4h27d6di9zpkkm"; 14613 + rev = "da44b65d4f64905e566bb151f407f16d64a5fcf8"; 14614 + sha256 = "10qmrp45czl1vml5wd1x0fjnxvyzcab592jkijgqdxypqj0y238g"; 14591 14615 }; 14592 14616 meta.homepage = "https://github.com/nvimdev/lspsaga.nvim/"; 14593 14617 }; ··· 14630 14654 14631 14655 rose-pine = buildVimPluginFrom2Nix { 14632 14656 pname = "rose-pine"; 14633 - version = "2023-03-30"; 14657 + version = "2023-04-12"; 14634 14658 src = fetchFromGitHub { 14635 14659 owner = "rose-pine"; 14636 14660 repo = "neovim"; 14637 - rev = "f8e210df52a4f418eae3690eb744b06c13a6c556"; 14638 - sha256 = "1d2ll2x66f7v854xdmp65l23mnv5qhzqci1bri5v2gj7hqs18r4f"; 14661 + rev = "3935606b6c1cd0111359142498a9b02d3a12e1f1"; 14662 + sha256 = "1xnj2fxmf5ih0jybdh9frgf7jbnszwyjd154v6dkxmblnxk2ny0v"; 14639 14663 }; 14640 14664 meta.homepage = "https://github.com/rose-pine/neovim/"; 14641 14665 };
+12 -12
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 192 192 }; 193 193 comment = buildGrammar { 194 194 language = "comment"; 195 - version = "0.0.0+rev=a37ca37"; 195 + version = "0.0.0+rev=f08e7d4"; 196 196 src = fetchFromGitHub { 197 197 owner = "stsewd"; 198 198 repo = "tree-sitter-comment"; 199 - rev = "a37ca370310ac6f89b6e0ebf2b86b2219780494e"; 200 - hash = "sha256-wiFY2uMNv8Wet3qKh0bSe8FSO1sjGu1uTOBxnt/HHHg="; 199 + rev = "f08e7d44b2923e9da2bf487a2f365d08677d368e"; 200 + hash = "sha256-v3h4x3R+9xbCEFezZlWPPM2Hb4575mbRkkyw7oz7K+U="; 201 201 }; 202 202 meta.homepage = "https://github.com/stsewd/tree-sitter-comment"; 203 203 }; ··· 579 579 }; 580 580 gitcommit = buildGrammar { 581 581 language = "gitcommit"; 582 - version = "0.0.0+rev=1723599"; 582 + version = "0.0.0+rev=04dcb2c"; 583 583 src = fetchFromGitHub { 584 584 owner = "gbprod"; 585 585 repo = "tree-sitter-gitcommit"; 586 - rev = "17235998809be904892f14ee57730d96795e9323"; 587 - hash = "sha256-UhPlEanOBUpzqVPCqe8t5MIwdUwSeaoFJFsxpnUqwn8="; 586 + rev = "04dcb2cb9a4cf638252b8bd4a829f9acadf2cc4c"; 587 + hash = "sha256-plu1qzMfvMfSqapQ4q+ZYNULDM8mBwlNeOzHoSSC3Hc="; 588 588 }; 589 589 meta.homepage = "https://github.com/gbprod/tree-sitter-gitcommit"; 590 590 }; ··· 612 612 }; 613 613 glimmer = buildGrammar { 614 614 language = "glimmer"; 615 - version = "0.0.0+rev=16c3786"; 615 + version = "0.0.0+rev=21805f4"; 616 616 src = fetchFromGitHub { 617 617 owner = "alexlafroscia"; 618 618 repo = "tree-sitter-glimmer"; 619 - rev = "16c3786e1a2c87a236c823d1a8859574778a3436"; 620 - hash = "sha256-fLRA4Rm92hVezbAdMxmrXPb5ax6wNaaBYIo+U64nD+8="; 619 + rev = "21805f429c5b7536be9f5f61dcabb5d3a4173bec"; 620 + hash = "sha256-EMcPjnf0SPa8Jk0GkkLTsOEGqRVdjbUt/DklRmXOGUA="; 621 621 }; 622 622 meta.homepage = "https://github.com/alexlafroscia/tree-sitter-glimmer"; 623 623 }; ··· 1878 1878 }; 1879 1879 v = buildGrammar { 1880 1880 language = "v"; 1881 - version = "0.0.0+rev=4cd190d"; 1881 + version = "0.0.0+rev=234c102"; 1882 1882 src = fetchFromGitHub { 1883 1883 owner = "vlang"; 1884 1884 repo = "vls"; 1885 - rev = "4cd190d1aaced458e8f1548e11b3beae5e4ea806"; 1886 - hash = "sha256-rbIRx/LA5kvq7vI5WdR8be0WCyyTxsWB87ENNO7Qkao="; 1885 + rev = "234c1028883187c6b48e030780b7332229faefa3"; 1886 + hash = "sha256-4DqMn9rPTxOtQOfy8fy6R7z/+z50XnCLV0J/4QFrRz4="; 1887 1887 }; 1888 1888 location = "tree_sitter_v"; 1889 1889 meta.homepage = "https://github.com/vlang/vls";
+2
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 566 566 https://github.com/dcampos/nvim-snippy/,HEAD, 567 567 https://github.com/ishan9299/nvim-solarized-lua/,, 568 568 https://github.com/nvim-pack/nvim-spectre/,, 569 + https://github.com/chrisgrieser/nvim-spider/,HEAD, 569 570 https://github.com/kylechui/nvim-surround/,main, 570 571 https://github.com/svermeulen/nvim-teal-maker/,HEAD, 571 572 https://github.com/norcalli/nvim-terminal.lua/,, ··· 616 617 https://github.com/aklt/plantuml-syntax/,, 617 618 https://github.com/nvim-treesitter/playground/,, 618 619 https://github.com/nvim-lua/plenary.nvim/,, 620 + https://github.com/olivercederborg/poimandres.nvim/,HEAD, 619 621 https://github.com/dleonard0/pony-vim-syntax/,, 620 622 https://github.com/RishabhRD/popfix/,, 621 623 https://github.com/nvim-lua/popup.nvim/,,
+47
pkgs/applications/misc/chatblade/default.nix
··· 1 + { lib, python3Packages }: 2 + 3 + python3Packages.buildPythonApplication rec { 4 + pname = "chatblade"; 5 + version = "0.2.1"; 6 + format = "setuptools"; 7 + 8 + src = python3Packages.fetchPypi { 9 + inherit pname version; 10 + sha256 = "sha256-1syZyqdv+0iyAOWDychv3bGnkHs9SCxsEotxQ+G1UPo="; 11 + }; 12 + 13 + doCheck = false; # there are no tests 14 + 15 + pythonImportsCheck = [ "chatblade" ]; 16 + propagatedBuildInputs = with python3Packages; [ 17 + aiohttp 18 + aiosignal 19 + async-timeout 20 + attrs 21 + certifi 22 + charset-normalizer 23 + frozenlist 24 + idna 25 + markdown-it-py 26 + mdurl 27 + multidict 28 + openai 29 + platformdirs 30 + pygments 31 + pyyaml 32 + regex 33 + requests 34 + rich 35 + tiktoken 36 + tqdm 37 + urllib3 38 + yarl 39 + ]; 40 + 41 + meta = with lib; { 42 + homepage = "https://github.com/npiv/chatblade/"; 43 + description = "A CLI Swiss Army Knife for ChatGPT"; 44 + license = licenses.gpl3Only; 45 + maintainers = with maintainers; [ deejayem ]; 46 + }; 47 + }
+3 -3
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 484 484 "vendorHash": null 485 485 }, 486 486 "hcloud": { 487 - "hash": "sha256-oFJ2+0qWWmt+lL+Nt0wEPL/G7P8YDtssnLN4K0Pjdsk=", 487 + "hash": "sha256-yAUrrIhaJIdwKCsOcsouEev7GFLLJPoXAif1DXD46sU=", 488 488 "homepage": "https://registry.terraform.io/providers/hetznercloud/hcloud", 489 489 "owner": "hetznercloud", 490 490 "repo": "terraform-provider-hcloud", 491 - "rev": "v1.38.0", 491 + "rev": "v1.38.1", 492 492 "spdx": "MPL-2.0", 493 - "vendorHash": "sha256-popuZxLqK7NB2dt7xC5aP6sWyo8BsuhvVoAPZYWsSXU=" 493 + "vendorHash": "sha256-gz96b+GOE7AgXzEL4odneYA01wZv4oXwz//Yyu9rg3E=" 494 494 }, 495 495 "helm": { 496 496 "hash": "sha256-X9keFjAmV86F/8ktxiv/VrnkHOazP9e/aOC9aRw1A48=",
+5 -5
pkgs/applications/networking/instant-messengers/element/pin.nix
··· 1 1 { 2 - "version" = "1.11.28"; 2 + "version" = "1.11.29"; 3 3 "hashes" = { 4 - "desktopSrcHash" = "u8w9rk5N6N4ppyG4tTbtj6YoHWwNnJW+N84cwpadtJk="; 5 - "desktopYarnHash" = "0sgc0na93h9qa7n88g2wfd48hw19ydkv20mj6gpkj1dkp8ibfl0b"; 6 - "webSrcHash" = "CSOkDktlKBen8t1LN2hvadAAJ28YEwRhts0DjxeRCx8="; 7 - "webYarnHash" = "1crz34ln5879amqgnjlwc7f1wj5is02hzp46lq8pqd3yvjmidx4c"; 4 + "desktopSrcHash" = "/q2tMYz2Qu/njoFPzI965Vn69kliLXJqIAhWSB6CnBE="; 5 + "desktopYarnHash" = "1v910qx9ij4szs1fyxc1d2lh71zzyga5ry8d9i0pdw9nlwbkqjdh"; 6 + "webSrcHash" = "tnCaq3k0DFBYnJfS1BY4/OOR9oe+zHMnwATPsOoNAHc="; 7 + "webYarnHash" = "0rd7f6ypp64znwdlaxqfahpf6lrr0mn28y3h635bn7ipzfjcqmqk"; 8 8 }; 9 9 }
+61
pkgs/applications/networking/instant-messengers/revolt-desktop/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , appimageTools 5 + , makeWrapper 6 + , electron 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "revolt-desktop"; 11 + version = "1.0.6"; 12 + 13 + src = fetchurl { 14 + url = "https://github.com/revoltchat/desktop/releases/download/v${version}/Revolt-linux.AppImage"; 15 + sha256 = "sha256-Wsm6ef2Reenq3/aKGaP2yzlOuLKaxKtRHCLLMxvWUUY="; 16 + }; 17 + 18 + appimageContents = appimageTools.extractType2 { 19 + name = "${pname}-${version}"; 20 + inherit src; 21 + }; 22 + 23 + dontUnpack = true; 24 + dontConfigure = true; 25 + dontBuild = true; 26 + 27 + nativeBuildInputs = [ 28 + makeWrapper 29 + ]; 30 + 31 + installPhase = '' 32 + runHook preInstall 33 + 34 + mkdir -p $out/bin $out/share/{applications,revolt-desktop} 35 + 36 + cp -a ${appimageContents}/{locales,resources} $out/share/${pname} 37 + cp -a ${appimageContents}/revolt-desktop.desktop $out/share/applications/${pname}.desktop 38 + cp -a ${appimageContents}/usr/share/icons $out/share/icons 39 + 40 + substituteInPlace $out/share/applications/${pname}.desktop \ 41 + --replace 'Exec=AppRun' 'Exec=${pname}' 42 + 43 + runHook postInstall 44 + ''; 45 + 46 + postFixup = '' 47 + makeWrapper ${electron}/bin/electron $out/bin/${pname} \ 48 + --add-flags $out/share/${pname}/resources/app.asar 49 + ''; 50 + 51 + meta = with lib; { 52 + description = "An open source user-first chat platform"; 53 + homepage = "https://revolt.chat/"; 54 + changelog = "https://github.com/revoltchat/desktop/releases/tag/v${version}"; 55 + license = licenses.agpl3Only; 56 + maintainers = with maintainers; [ heyimnova ]; 57 + platforms = platforms.linux; 58 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 59 + mainProgram = "revolt-desktop"; 60 + }; 61 + }
+12
pkgs/applications/office/qnotero/default.nix
··· 26 26 wrapQtApp "$out"/bin/qnotero 27 27 ''; 28 28 29 + postInstall = '' 30 + mkdir $out/share 31 + mv $out/usr/share/applications $out/share/applications 32 + 33 + substituteInPlace $out/share/applications/qnotero.desktop \ 34 + --replace "Icon=/usr/share/qnotero/resources/light/qnotero.png" "Icon=qnotero" 35 + 36 + mkdir -p $out/share/icons/hicolor/64x64/apps 37 + ln -s $out/usr/share/qnotero/resources/light/qnotero.png \ 38 + $out/share/icons/hicolor/64x64/apps/qnotero.png 39 + ''; 40 + 29 41 # no tests executed 30 42 doCheck = false; 31 43
+3 -23
pkgs/applications/version-management/mercurial/default.nix
··· 21 21 22 22 self = python3Packages.buildPythonApplication rec { 23 23 pname = "mercurial${lib.optionalString fullBuild "-full"}"; 24 - version = "6.4"; 24 + version = "6.4.1"; 25 25 26 26 src = fetchurl { 27 27 url = "https://mercurial-scm.org/release/mercurial-${version}.tar.gz"; 28 - sha256 = "sha256-6Iv7y5kR52kEoxuXLlf4bajmzliSuYw53VHTuVmcE0c="; 28 + sha256 = "sha256-BbBZoMx/TnJhm+Vz56yunU15YU1HID0geNIXCsBH8K4="; 29 29 }; 30 30 31 31 format = "other"; ··· 35 35 cargoDeps = if rustSupport then rustPlatform.fetchCargoTarball { 36 36 inherit src; 37 37 name = "mercurial-${version}"; 38 - sha256 = "sha256-jgB9UMuZ9v+euGN2LPzg0vNK0KeEa8GpQxLJYgQzzbw="; 38 + sha256 = "sha256-1enrXgQbf2aoBmM8WeAZg1259pR0OhdZnEB4Ax5k2K8="; 39 39 sourceRoot = "mercurial-${version}/rust"; 40 40 } else null; 41 41 cargoRoot = if rustSupport then "rust" else null; ··· 110 110 gnupg 111 111 ]; 112 112 113 - patches = [ 114 - # remove dependency over packaging for test runner 115 - # https://bz.mercurial-scm.org/show_bug.cgi?id=6805 116 - (fetchpatch { 117 - url = "https://foss.heptapod.net/mercurial/mercurial-devel/-/commit/5e5e3733082a25856038f0fde66d4e08d8881539.patch"; 118 - hash = "sha256-JNxESWpWZW3AENz57tNJTV/ALnJjkmG1ZnTWSvTr4qY="; 119 - }) 120 - 121 - # sligthly different test output matching 122 - # https://bz.mercurial-scm.org/show_bug.cgi?id=6807 123 - (fetchpatch { 124 - url = "https://foss.heptapod.net/mercurial/mercurial-devel/-/commit/2231f7d8a60266bb6907b1708400c970ed799017.patch"; 125 - hash = "sha256-Lm5qXvM9nbmTpuMuvDoWhY4cQQQN7PFZtmu5e7mQVw4="; 126 - }) 127 - ]; 128 - 129 113 postPatch = '' 130 114 patchShebangs . 131 115 ··· 168 152 # Python 3.10-3.12 deprecation warning: asyncore 169 153 # https://bz.mercurial-scm.org/show_bug.cgi?id=6727 170 154 test-patchbomb-tls.t 171 - 172 - # Test wanting TLS 1.0 and 1.1, not available with OpenSSL v3. 173 - # https://bz.mercurial-scm.org/show_bug.cgi?id=6760 174 - test-https.t 175 155 EOF 176 156 177 157 export HGTEST_REAL_HG="${mercurial}/bin/hg"
+7 -7
pkgs/applications/video/jellyfin-media-player/default.nix
··· 28 28 29 29 mkDerivation rec { 30 30 pname = "jellyfin-media-player"; 31 - version = "1.8.1"; 31 + version = "1.9.0"; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "jellyfin"; 35 35 repo = "jellyfin-media-player"; 36 36 rev = "v${version}"; 37 - sha256 = "sha256-/FqxZd0cFSfkeBQmZ2gU+5FUZZ+WbQ8c2IjaZ4/uGt8="; 37 + sha256 = "sha256-PfzBxvGroHgjEz4OchnECSfcb1Ds8xbE28yxneaiPuo="; 38 38 }; 39 39 40 40 patches = [ 41 - # the webclient-files are not copied in the regular build script. Copy them just like the linux build 42 - ./fix-osx-resources.patch 41 + # fix the location of the jellyfin-web path 42 + ./fix-web-path.patch 43 43 # disable update notifications since the end user can't simply download the release artifacts to update 44 44 ./disable-update-notifications.patch 45 45 ]; ··· 79 79 "-DLINUX_X11POWER=ON" 80 80 ]; 81 81 82 - preBuild = '' 83 - # link the jellyfin-web files to the expected "dist" directory 84 - ln -s ${jellyfin-web}/share/jellyfin-web dist 82 + preConfigure = '' 83 + # link the jellyfin-web files to be copied by cmake (see fix-web-path.patch) 84 + ln -s ${jellyfin-web}/share/jellyfin-web . 85 85 ''; 86 86 87 87 postInstall = lib.optionalString stdenv.isDarwin ''
-15
pkgs/applications/video/jellyfin-media-player/fix-osx-resources.patch
··· 1 - diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt 2 - index 780c0d3..d9c2341 100644 3 - --- a/src/CMakeLists.txt 4 - +++ b/src/CMakeLists.txt 5 - @@ -108,8 +108,8 @@ endif() 6 - set(RESOURCE_ROOT .) 7 - if(APPLE) 8 - set(RESOURCE_ROOT Resources) 9 - - add_resources(TARGET ${MAIN_TARGET} SOURCES ${CMAKE_CURRENT_BINARY_DIR}/../dist/ DEST ${RESOURCE_ROOT}/web-client/desktop) 10 - - add_resources(TARGET ${MAIN_TARGET} SOURCES ${CMAKE_SOURCE_DIR}/native/ DEST ${RESOURCE_ROOT}/web-client/extension) 11 - + install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/../dist/ DESTINATION ${RESOURCE_ROOT}/web-client/desktop) 12 - + install(DIRECTORY ${CMAKE_SOURCE_DIR}/native/ DESTINATION ${RESOURCE_ROOT}/web-client/extension) 13 - endif() 14 - 15 - if(NOT APPLE)
+28
pkgs/applications/video/jellyfin-media-player/fix-web-path.patch
··· 1 + diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt 2 + index 5abca9b..d09176b 100644 3 + --- a/src/CMakeLists.txt 4 + +++ b/src/CMakeLists.txt 5 + @@ -107,10 +107,8 @@ endif() 6 + set(RESOURCE_ROOT .) 7 + if(APPLE) 8 + set(RESOURCE_ROOT Resources) 9 + - if(EXISTS ${CMAKE_CURRENT_BINARY_DIR}/../dist/) 10 + - add_resources(TARGET ${MAIN_TARGET} SOURCES ${CMAKE_CURRENT_BINARY_DIR}/../dist/ DEST ${RESOURCE_ROOT}/web-client/desktop) 11 + - endif() 12 + - add_resources(TARGET ${MAIN_TARGET} SOURCES ${CMAKE_SOURCE_DIR}/native/ DEST ${RESOURCE_ROOT}/web-client/extension) 13 + + install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/../../jellyfin-web/ DESTINATION ${RESOURCE_ROOT}/web-client/desktop) 14 + + install(DIRECTORY ${CMAKE_SOURCE_DIR}/native/ DESTINATION ${RESOURCE_ROOT}/web-client/extension) 15 + endif() 16 + 17 + if(NOT APPLE) 18 + @@ -123,9 +121,7 @@ if(NOT APPLE) 19 + install(FILES ${loc}/qtwebengine_devtools_resources.pak DESTINATION resources) 20 + endif() 21 + endforeach() 22 + - if(EXISTS ${CMAKE_CURRENT_BINARY_DIR}/../dist/) 23 + - install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/../dist/ DESTINATION ${INSTALL_RESOURCE_DIR}/web-client/desktop) 24 + - endif() 25 + + install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/../../jellyfin-web/ DESTINATION ${INSTALL_RESOURCE_DIR}/web-client/desktop) 26 + install(DIRECTORY ${CMAKE_SOURCE_DIR}/native/ DESTINATION ${INSTALL_RESOURCE_DIR}/web-client/extension) 27 + endif() 28 +
+8 -2
pkgs/applications/video/obs-studio/plugins/obs-vkcapture.nix
··· 7 7 , wayland 8 8 , wayland-scanner 9 9 , obs-studio 10 + , libffi 10 11 , libX11 12 + , libXau 13 + , libXdmcp 11 14 , libxcb 12 15 , vulkan-headers 13 16 , vulkan-loader ··· 17 20 18 21 stdenv.mkDerivation rec { 19 22 pname = "obs-vkcapture"; 20 - version = "1.3.1"; 23 + version = "1.3.2"; 21 24 22 25 src = fetchFromGitHub { 23 26 owner = "nowrep"; 24 27 repo = pname; 25 28 rev = "v${version}"; 26 - hash = "sha256-4rEUA8V5WgAVyBeUT0ALVmj14HaAgeASYd2YiBn8MC0="; 29 + hash = "sha256-UQQ8oBEnOxmSN4ZyW4LdPZYvd5eB9EmdR0UvE1wgMZw="; 27 30 }; 28 31 29 32 cmakeFlags = lib.optionals stdenv.isi686 [ ··· 35 38 nativeBuildInputs = [ cmake extra-cmake-modules ninja wayland-scanner ]; 36 39 buildInputs = [ 37 40 libGL 41 + libffi 38 42 libX11 43 + libXau 44 + libXdmcp 39 45 libxcb 40 46 vulkan-headers 41 47 vulkan-loader
+2 -9
pkgs/desktops/gnome/apps/cheese/default.nix
··· 28 28 , meson 29 29 , ninja 30 30 , dbus 31 - , python3 32 31 , pipewire 33 32 }: 34 33 35 34 stdenv.mkDerivation rec { 36 35 pname = "cheese"; 37 - version = "43.0"; 36 + version = "44.0"; 38 37 39 38 outputs = [ "out" "man" "devdoc" ]; 40 39 41 40 src = fetchurl { 42 41 url = "mirror://gnome/sources/cheese/${lib.versions.major version}/${pname}-${version}.tar.xz"; 43 - sha256 = "dFdMSjwycyfxotbQs/k3vir7B6YVm21425wZLeZmfws="; 42 + sha256 = "3yf/abII9Nz7fYb/YgqT+ThP3G/hBaP0rpO0OO+r9Fw="; 44 43 }; 45 44 46 45 nativeBuildInputs = [ ··· 55 54 meson 56 55 ninja 57 56 pkg-config 58 - python3 59 57 vala 60 58 wrapGAppsHook 61 59 glib # for glib-compile-schemas ··· 79 77 librsvg 80 78 pipewire # PipeWire provides a gstreamer plugin for using PipeWire for video 81 79 ]; 82 - 83 - postPatch = '' 84 - chmod +x meson_post_install.py 85 - patchShebangs meson_post_install.py 86 - ''; 87 80 88 81 preFixup = '' 89 82 gappsWrapperArgs+=(
+2 -2
pkgs/desktops/gnome/extensions/gsconnect/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "gnome-shell-extension-gsconnect"; 26 - version = "54"; 26 + version = "55"; 27 27 28 28 outputs = [ "out" "installedTests" ]; 29 29 ··· 31 31 owner = "GSConnect"; 32 32 repo = "gnome-shell-extension-gsconnect"; 33 33 rev = "v${version}"; 34 - hash = "sha256-Dt5T5luuKpSkoOs6MjOBg/yMm52hRfymKBeRklPWy+M="; 34 + hash = "sha256-n6NbNgl+2FOhly/BeR7I6BvPOYe7leAdeAegaqhcGJU="; 35 35 }; 36 36 37 37 patches = [
+8 -6
pkgs/desktops/gnome/extensions/gsconnect/fix-paths.patch
··· 1 1 diff --git a/data/org.gnome.Shell.Extensions.GSConnect.desktop.in b/data/org.gnome.Shell.Extensions.GSConnect.desktop.in 2 - index ffb23342..b405c73b 100644 2 + index 3fb887c3..e8cbe1bd 100644 3 3 --- a/data/org.gnome.Shell.Extensions.GSConnect.desktop.in 4 4 +++ b/data/org.gnome.Shell.Extensions.GSConnect.desktop.in 5 - @@ -1,7 +1,7 @@ 5 + @@ -5,7 +5,7 @@ 6 6 [Desktop Entry] 7 7 Type=Application 8 8 Name=GSConnect ··· 12 12 NoDisplay=true 13 13 Icon=org.gnome.Shell.Extensions.GSConnect 14 14 diff --git a/src/extension.js b/src/extension.js 15 - index e7fd971a..8474bb3b 100644 15 + index 3fae443a..7aa19842 100644 16 16 --- a/src/extension.js 17 17 +++ b/src/extension.js 18 - @@ -1,5 +1,7 @@ 18 + @@ -4,6 +4,8 @@ 19 + 19 20 'use strict'; 20 21 21 22 +'@typelibPath@'.split(':').forEach(path => imports.gi.GIRepository.Repository.prepend_search_path(path)); ··· 24 25 const GObject = imports.gi.GObject; 25 26 const Gtk = imports.gi.Gtk; 26 27 diff --git a/src/prefs.js b/src/prefs.js 27 - index 922ea60c..2cd62eb5 100644 28 + index b8860c82..d6292606 100644 28 29 --- a/src/prefs.js 29 30 +++ b/src/prefs.js 30 - @@ -1,5 +1,7 @@ 31 + @@ -4,6 +4,8 @@ 32 + 31 33 'use strict'; 32 34 33 35 +'@typelibPath@'.split(':').forEach(path => imports.gi.GIRepository.Repository.prepend_search_path(path));
+7 -4
pkgs/desktops/gnome/extensions/gsconnect/installed-tests-path.patch
··· 1 1 diff --git a/installed-tests/meson.build b/installed-tests/meson.build 2 - index c7eff2fb..ef4f6052 100644 2 + index 5bc38bfd..02404c3a 100644 3 3 --- a/installed-tests/meson.build 4 4 +++ b/installed-tests/meson.build 5 - @@ -1,5 +1,5 @@ 5 + @@ -2,8 +2,8 @@ 6 + # 7 + # SPDX-License-Identifier: GPL-2.0-or-later 8 + 6 9 -installed_tests_execdir = join_paths(libexecdir, 'installed-tests', meson.project_name()) 7 10 -installed_tests_metadir = join_paths(datadir, 'installed-tests', meson.project_name()) 8 11 +installed_tests_execdir = join_paths(get_option('installed_test_prefix'), 'libexec', 'installed-tests', meson.project_name()) ··· 11 14 installed_tests_srcdir = meson.current_source_dir() 12 15 installed_tests_builddir = meson.current_build_dir() 13 16 diff --git a/meson_options.txt b/meson_options.txt 14 - index 8912e052..ca6ee5eb 100644 17 + index 745c541c..b4b602ca 100644 15 18 --- a/meson_options.txt 16 19 +++ b/meson_options.txt 17 - @@ -116,6 +116,13 @@ option( 20 + @@ -104,6 +104,13 @@ option( 18 21 description: 'Native Messaging Host directory for Mozilla' 19 22 ) 20 23
+8 -2
pkgs/development/compilers/cudatoolkit/extension.nix
··· 18 18 # E.g. for cudaPackages_11_8 we use gcc11 with gcc12's libstdc++ 19 19 # Cf. https://github.com/NixOS/nixpkgs/pull/218265 for context 20 20 backendStdenv = final.callPackage ./stdenv.nix { 21 - nixpkgsStdenv = prev.pkgs.stdenv; 22 - nvccCompatibleStdenv = prev.pkgs.buildPackages."${finalVersion.gcc}Stdenv"; 21 + # We use buildPackages (= pkgsBuildHost) because we look for a gcc that 22 + # runs on our build platform, and that produces executables for the host 23 + # platform (= platform on which we deploy and run the downstream packages). 24 + # The target platform of buildPackages.gcc is our host platform, so its 25 + # .lib output should be the libstdc++ we want to be writing in the runpaths 26 + # Cf. https://github.com/NixOS/nixpkgs/pull/225661#discussion_r1164564576 27 + nixpkgsCompatibleLibstdcxx = final.pkgs.buildPackages.gcc.cc.lib; 28 + nvccCompatibleCC = final.pkgs.buildPackages."${finalVersion.gcc}".cc; 23 29 }; 24 30 25 31 ### Add classic cudatoolkit package
+28 -12
pkgs/development/compilers/cudatoolkit/stdenv.nix
··· 1 - { nixpkgsStdenv 2 - , nvccCompatibleStdenv 1 + { lib 2 + , nixpkgsCompatibleLibstdcxx 3 + , nvccCompatibleCC 3 4 , overrideCC 5 + , stdenv 4 6 , wrapCCWith 5 7 }: 6 8 7 - overrideCC nixpkgsStdenv (wrapCCWith { 8 - cc = nvccCompatibleStdenv.cc.cc; 9 + let 10 + cc = wrapCCWith 11 + { 12 + cc = nvccCompatibleCC; 9 13 10 - # This option is for clang's libcxx, but we (ab)use it for gcc's libstdc++. 11 - # Note that libstdc++ maintains forward-compatibility: if we load a newer 12 - # libstdc++ into the process, we can still use libraries built against an 13 - # older libstdc++. This, in practice, means that we should use libstdc++ from 14 - # the same stdenv that the rest of nixpkgs uses. 15 - # We currently do not try to support anything other than gcc and linux. 16 - libcxx = nixpkgsStdenv.cc.cc.lib; 17 - }) 14 + # This option is for clang's libcxx, but we (ab)use it for gcc's libstdc++. 15 + # Note that libstdc++ maintains forward-compatibility: if we load a newer 16 + # libstdc++ into the process, we can still use libraries built against an 17 + # older libstdc++. This, in practice, means that we should use libstdc++ from 18 + # the same stdenv that the rest of nixpkgs uses. 19 + # We currently do not try to support anything other than gcc and linux. 20 + libcxx = nixpkgsCompatibleLibstdcxx; 21 + }; 22 + cudaStdenv = overrideCC stdenv cc; 23 + passthruExtra = { 24 + inherit nixpkgsCompatibleLibstdcxx; 25 + # cc already exposed 26 + }; 27 + assertCondition = true; 28 + in 29 + lib.extendDerivation 30 + assertCondition 31 + passthruExtra 32 + cudaStdenv 33 +
-2
pkgs/development/compilers/elm/default.nix
··· 107 107 108 108 # elm-format requires text >= 2.0 109 109 text = self.text_2_0_2; 110 - # elm-format-lib requires hspec-golden < 0.2 111 - hspec-golden = self.hspec-golden_0_1_0_3; 112 110 # unorderd-container's tests indirectly depend on text < 2.0 113 111 unordered-containers = overrideCabal (drv: { doCheck = false; }) super.unordered-containers; 114 112 # relude-1.1.0.0's tests depend on hedgehog < 1.2, which indirectly depends on text < 2.0
+10 -11
pkgs/development/compilers/elm/packages/avh4-lib.nix
··· 1 - { mkDerivation, ansi-terminal, ansi-wl-pprint, array, base, bimap 2 - , binary, bytestring, containers, directory, fetchgit, filepath 3 - , lib, mtl, pooled-io, process, relude, tasty, tasty-discover 4 - , tasty-hspec, tasty-hunit, text 1 + { mkDerivation, array, base, bytestring, directory, fetchgit 2 + , filepath, lib, mtl, pooled-io, process, relude, tasty 3 + , tasty-discover, tasty-hspec, tasty-hunit, text 5 4 }: 6 5 mkDerivation { 7 6 pname = "avh4-lib"; 8 7 version = "0.0.0.1"; 9 8 src = fetchgit { 10 9 url = "https://github.com/avh4/elm-format"; 11 - sha256 = "1aiq3mv2ycv6bal5hnz6k33bzmnnidzxxs5b6z9y6lvmr0lbf3j4"; 12 - rev = "7e80dd48dd9b30994e43f4804b2ea7118664e8e0"; 10 + sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi"; 11 + rev = "b5cca4c26b473dab06e5d73b98148637e4770d45"; 13 12 fetchSubmodules = true; 14 13 }; 15 14 postUnpack = "sourceRoot+=/avh4-lib; echo source root reset to $sourceRoot"; 15 + configureFlags = [ "--ghc-option=-Wno-error=unused-packages" ]; 16 16 libraryHaskellDepends = [ 17 - ansi-terminal ansi-wl-pprint array base bimap binary bytestring 18 - containers directory filepath mtl pooled-io process relude text 17 + array base bytestring directory filepath mtl pooled-io process 18 + relude text 19 19 ]; 20 20 testHaskellDepends = [ 21 - ansi-terminal ansi-wl-pprint array base bimap binary bytestring 22 - containers directory filepath mtl pooled-io process relude tasty 23 - tasty-hspec tasty-hunit text 21 + array base bytestring directory filepath mtl pooled-io process 22 + relude tasty tasty-hspec tasty-hunit text 24 23 ]; 25 24 testToolDepends = [ tasty-discover ]; 26 25 doHaddock = false;
+12 -15
pkgs/development/compilers/elm/packages/elm-format-lib.nix
··· 1 - { mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, array 2 - , avh4-lib, base, bimap, binary, bytestring, containers, directory 3 - , elm-format-markdown, elm-format-test-lib, fetchgit, filepath 4 - , ghc-prim, hspec, lib, mtl, optparse-applicative, process, relude 5 - , split, tasty, tasty-discover, tasty-hspec, tasty-hunit, text 1 + { mkDerivation, aeson, avh4-lib, base, bimap, binary, bytestring 2 + , containers, elm-format-markdown, elm-format-test-lib, fetchgit 3 + , hspec, lib, mtl, optparse-applicative, relude, split, tasty 4 + , tasty-discover, tasty-hspec, tasty-hunit, text 6 5 }: 7 6 mkDerivation { 8 7 pname = "elm-format-lib"; 9 8 version = "0.0.0.1"; 10 9 src = fetchgit { 11 10 url = "https://github.com/avh4/elm-format"; 12 - sha256 = "1aiq3mv2ycv6bal5hnz6k33bzmnnidzxxs5b6z9y6lvmr0lbf3j4"; 13 - rev = "7e80dd48dd9b30994e43f4804b2ea7118664e8e0"; 11 + sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi"; 12 + rev = "b5cca4c26b473dab06e5d73b98148637e4770d45"; 14 13 fetchSubmodules = true; 15 14 }; 16 15 postUnpack = "sourceRoot+=/elm-format-lib; echo source root reset to $sourceRoot"; 17 16 libraryHaskellDepends = [ 18 - aeson ansi-terminal ansi-wl-pprint array avh4-lib base bimap binary 19 - bytestring containers directory elm-format-markdown filepath 20 - ghc-prim mtl optparse-applicative process relude text 17 + aeson avh4-lib base bimap binary bytestring containers 18 + elm-format-markdown mtl optparse-applicative relude text 21 19 ]; 22 20 testHaskellDepends = [ 23 - aeson ansi-terminal ansi-wl-pprint array avh4-lib base bimap binary 24 - bytestring containers directory elm-format-markdown 25 - elm-format-test-lib filepath ghc-prim hspec mtl 26 - optparse-applicative process relude split tasty tasty-hspec 27 - tasty-hunit text 21 + aeson avh4-lib base bimap binary bytestring containers 22 + elm-format-markdown elm-format-test-lib hspec mtl 23 + optparse-applicative relude split tasty tasty-hspec tasty-hunit 24 + text 28 25 ]; 29 26 testToolDepends = [ tasty-discover ]; 30 27 doHaddock = false;
+2 -2
pkgs/development/compilers/elm/packages/elm-format-markdown.nix
··· 4 4 version = "0.0.0.1"; 5 5 src = fetchgit { 6 6 url = "https://github.com/avh4/elm-format"; 7 - sha256 = "1aiq3mv2ycv6bal5hnz6k33bzmnnidzxxs5b6z9y6lvmr0lbf3j4"; 8 - rev = "7e80dd48dd9b30994e43f4804b2ea7118664e8e0"; 7 + sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi"; 8 + rev = "b5cca4c26b473dab06e5d73b98148637e4770d45"; 9 9 fetchSubmodules = true; 10 10 }; 11 11 postUnpack = "sourceRoot+=/elm-format-markdown; echo source root reset to $sourceRoot";
+3 -3
pkgs/development/compilers/elm/packages/elm-format-test-lib.nix
··· 7 7 version = "0.0.0.1"; 8 8 src = fetchgit { 9 9 url = "https://github.com/avh4/elm-format"; 10 - sha256 = "1aiq3mv2ycv6bal5hnz6k33bzmnnidzxxs5b6z9y6lvmr0lbf3j4"; 11 - rev = "7e80dd48dd9b30994e43f4804b2ea7118664e8e0"; 10 + sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi"; 11 + rev = "b5cca4c26b473dab06e5d73b98148637e4770d45"; 12 12 fetchSubmodules = true; 13 13 }; 14 14 postUnpack = "sourceRoot+=/elm-format-test-lib; echo source root reset to $sourceRoot"; 15 15 libraryHaskellDepends = [ 16 16 avh4-lib base containers filepath hspec hspec-core hspec-golden mtl 17 - split tasty tasty-hspec tasty-hunit text 17 + split tasty-hunit text 18 18 ]; 19 19 testHaskellDepends = [ 20 20 avh4-lib base containers filepath hspec hspec-core hspec-golden mtl
+13 -14
pkgs/development/compilers/elm/packages/elm-format.nix
··· 1 - { mkDerivation, aeson, ansi-wl-pprint, avh4-lib, base, bimap 2 - , bytestring, containers, elm-format-lib, elm-format-test-lib 3 - , fetchgit, hspec, lib, mtl, optparse-applicative, QuickCheck 4 - , quickcheck-io, relude, tasty, tasty-hspec, tasty-hunit 5 - , tasty-quickcheck, text 1 + { mkDerivation, aeson, ansi-wl-pprint, avh4-lib, base, bytestring 2 + , elm-format-lib, elm-format-test-lib, fetchgit, hspec, lib 3 + , optparse-applicative, QuickCheck, quickcheck-io, relude, tasty 4 + , tasty-hspec, tasty-hunit, tasty-quickcheck, text 6 5 }: 7 6 mkDerivation rec { 8 7 pname = "elm-format"; 9 - version = "0.8.6"; 8 + version = "0.8.7"; 10 9 src = fetchgit { 11 10 url = "https://github.com/avh4/elm-format"; 12 - sha256 = "1aiq3mv2ycv6bal5hnz6k33bzmnnidzxxs5b6z9y6lvmr0lbf3j4"; 13 - rev = "7e80dd48dd9b30994e43f4804b2ea7118664e8e0"; 11 + sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi"; 12 + rev = "b5cca4c26b473dab06e5d73b98148637e4770d45"; 14 13 fetchSubmodules = true; 15 14 }; 16 15 isLibrary = false; 17 16 isExecutable = true; 18 17 executableHaskellDepends = [ 19 - aeson ansi-wl-pprint avh4-lib base bytestring containers 20 - elm-format-lib optparse-applicative relude text 18 + aeson ansi-wl-pprint avh4-lib base bytestring elm-format-lib 19 + optparse-applicative relude text 21 20 ]; 22 21 testHaskellDepends = [ 23 - aeson ansi-wl-pprint avh4-lib base bimap bytestring containers 24 - elm-format-lib elm-format-test-lib hspec mtl optparse-applicative 25 - QuickCheck quickcheck-io relude tasty tasty-hspec tasty-hunit 26 - tasty-quickcheck text 22 + aeson ansi-wl-pprint avh4-lib base bytestring elm-format-lib 23 + elm-format-test-lib hspec optparse-applicative QuickCheck 24 + quickcheck-io relude tasty tasty-hspec tasty-hunit tasty-quickcheck 25 + text 27 26 ]; 28 27 doHaddock = false; 29 28 homepage = "https://elm-lang.org";
+2 -2
pkgs/development/compilers/rust/make-rust-platform.nix
··· 1 - { buildPackages, callPackage, stdenv, runCommand }@prev: 1 + { buildPackages, callPackage, cargo-auditable, stdenv, runCommand }@prev: 2 2 3 3 { rustc 4 4 , cargo 5 - , cargo-auditable ? null 5 + , cargo-auditable ? prev.cargo-auditable 6 6 , stdenv ? prev.stdenv 7 7 , ... 8 8 }:
+2
pkgs/development/coq-modules/mathcomp-algebra-tactics/default.nix
··· 9 9 10 10 defaultVersion = with lib.versions; 11 11 lib.switch [ coq.coq-version mathcomp-algebra.version ] [ 12 + { cases = [ (range "8.16" "8.17") (isGe "1.15") ]; out = "1.1.1"; } 12 13 { cases = [ (range "8.13" "8.16") (isGe "1.12") ]; out = "1.0.0"; } 13 14 ] null; 14 15 15 16 release."1.0.0".sha256 = "sha256-kszARPBizWbxSQ/Iqpf2vLbxYc6AjpUCLnSNlPcNfls="; 17 + release."1.1.1".sha256 = "sha256-5wItMeeTRoJlRBH3zBNc2VUZn6pkDde60YAvXTx+J3U="; 16 18 17 19 propagatedBuildInputs = [ mathcomp-algebra coq-elpi mathcomp-zify ]; 18 20
+2 -2
pkgs/development/libraries/ldb/default.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "ldb"; 20 - version = "2.6.1"; 20 + version = "2.6.2"; 21 21 22 22 src = fetchurl { 23 23 url = "mirror://samba/ldb/${pname}-${version}.tar.gz"; 24 - sha256 = "sha256-RnQD9334Z4LDlluxdUQLqi7XUan+uVYBlL2MBr8XNsk="; 24 + hash = "sha256-XLxjw1KTwjSzn5S6n/yonW0HiSXX+QIfgIZz3t8tkl4="; 25 25 }; 26 26 27 27 outputs = [ "out" "dev" ];
+4 -1
pkgs/development/libraries/relibc/default.nix
··· 1 - { lib, stdenvNoCC, buildPackages, makeRustPlatform }: 1 + { lib, stdenvNoCC, buildPackages }: 2 2 3 3 let 4 4 rpath = lib.makeLibraryPath [ ··· 72 72 "redox_syscall-0.2.0" = "sha256-nwbJBrhuc01fPbBgd5ShboNu0Nauqp2UjkA+sm9oCeE="; 73 73 }; 74 74 }; 75 + 76 + # error: Usage of `RUSTC_WORKSPACE_WRAPPER` requires `-Z unstable-options` 77 + auditable = false; 75 78 76 79 meta = with lib; { 77 80 homepage = "https://gitlab.redox-os.org/redox-os/relibc";
+74 -4
pkgs/development/libraries/science/math/tensorrt/extension.nix
··· 31 31 inherit buildTensorRTPackage; 32 32 } // allBuilds // defaultBuild; 33 33 34 + tarballURL = 35 + {fullVersion, fileVersionCuda, fileVersionCudnn ? null} : 36 + "TensorRT-${fullVersion}.Linux.x86_64-gnu.cuda-${fileVersionCuda}" 37 + + lib.optionalString (fileVersionCudnn != null) ".cudnn${fileVersionCudnn}" 38 + + ".tar.gz"; 39 + 34 40 tensorRTVersions = { 41 + "8.6.0" = [ 42 + rec { 43 + fileVersionCuda = "11.8"; 44 + fullVersion = "8.6.0.12"; 45 + sha256 = "sha256-wXMqEJPFerefoLaH8GG+Np5EnJwXeStmDzZj7Nj6e2M="; 46 + tarball = tarballURL { inherit fileVersionCuda fullVersion; }; 47 + supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.5" "11.6" "11.7" "11.8" ]; 48 + } 49 + ]; 50 + "8.5.3" = [ 51 + rec { 52 + fileVersionCuda = "11.8"; 53 + fileVersionCudnn = "8.6"; 54 + fullVersion = "8.5.3.1"; 55 + sha256 = "sha256-BNeuOYvPTUAfGxI0DVsNrX6Z/FAB28+SE0ptuGu7YDY="; 56 + tarball = tarballURL { inherit fileVersionCuda fileVersionCudnn fullVersion; }; 57 + supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.5" "11.6" "11.7" "11.8" ]; 58 + } 59 + rec { 60 + fileVersionCuda = "10.2"; 61 + fileVersionCudnn = "8.6"; 62 + fullVersion = "8.5.3.1"; 63 + sha256 = "sha256-WCt6yfOmFbrjqdYCj6AE2+s2uFpISwk6urP+2I0BnGQ="; 64 + tarball = tarballURL { inherit fileVersionCuda fileVersionCudnn fullVersion; }; 65 + supportedCudaVersions = [ "10.2" ]; 66 + } 67 + ]; 68 + "8.5.2" = [ 69 + rec { 70 + fileVersionCuda = "11.8"; 71 + fileVersionCudnn = "8.6"; 72 + fullVersion = "8.5.2.2"; 73 + sha256 = "sha256-Ov5irNS/JETpEz01FIFNMs9YVmjGHL7lSXmDpgCdgao="; 74 + tarball = tarballURL { inherit fileVersionCuda fileVersionCudnn fullVersion; }; 75 + supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.5" "11.6" "11.7" "11.8" ]; 76 + } 77 + rec { 78 + fileVersionCuda = "10.2"; 79 + fileVersionCudnn = "8.6"; 80 + fullVersion = "8.5.2.2"; 81 + sha256 = "sha256-UruwQShYcHLY5d81lKNG7XaoUsZr245c+PUpUN6pC5E="; 82 + tarball = tarballURL { inherit fileVersionCuda fileVersionCudnn fullVersion; }; 83 + supportedCudaVersions = [ "10.2" ]; 84 + } 85 + ]; 86 + "8.5.1" = [ 87 + rec { 88 + fileVersionCuda = "11.8"; 89 + fileVersionCudnn = "8.6"; 90 + fullVersion = "8.5.1.7"; 91 + sha256 = "sha256-Ocx/B3BX0TY3lOj/UcTPIaXb7M8RFrACC6Da4PMGMHY="; 92 + tarball = tarballURL { inherit fileVersionCuda fileVersionCudnn fullVersion; }; 93 + supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.5" "11.6" "11.7" "11.8" ]; 94 + } 95 + rec { 96 + fileVersionCuda = "10.2"; 97 + fileVersionCudnn = "8.6"; 98 + fullVersion = "8.5.1.7"; 99 + sha256 = "sha256-CcFGJhw7nFdPnSYYSxcto2MHK3F84nLQlJYjdIw8dPM="; 100 + tarball = tarballURL { inherit fileVersionCuda fileVersionCudnn fullVersion; }; 101 + supportedCudaVersions = [ "10.2" ]; 102 + } 103 + ]; 35 104 "8.4.0" = [ 36 105 rec { 37 106 fileVersionCuda = "11.6"; 38 107 fileVersionCudnn = "8.3"; 39 108 fullVersion = "8.4.0.6"; 40 109 sha256 = "sha256-DNgHHXF/G4cK2nnOWImrPXAkOcNW6Wy+8j0LRpAH/LQ="; 41 - tarball = "TensorRT-${fullVersion}.Linux.x86_64-gnu.cuda-${fileVersionCuda}.cudnn${fileVersionCudnn}.tar.gz"; 42 - supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.5" "11.6" "11.7" ]; 110 + tarball = tarballURL { inherit fileVersionCuda fileVersionCudnn fullVersion; }; 111 + supportedCudaVersions = [ "11.0" "11.1" "11.2" "11.3" "11.4" "11.5" "11.6" ]; 43 112 } 44 113 rec { 45 114 fileVersionCuda = "10.2"; 46 115 fileVersionCudnn = "8.3"; 47 116 fullVersion = "8.4.0.6"; 48 117 sha256 = "sha256-aCzH0ZI6BrJ0v+e5Bnm7b8mNltA7NNuIa8qRKzAQv+I="; 49 - tarball = "TensorRT-${fullVersion}.Linux.x86_64-gnu.cuda-${fileVersionCuda}.cudnn${fileVersionCudnn}.tar.gz"; 118 + tarball = tarballURL { inherit fileVersionCuda fileVersionCudnn fullVersion; }; 50 119 supportedCudaVersions = [ "10.2" ]; 51 120 } 52 121 ]; ··· 62 131 "11.4" = "8.4.0"; 63 132 "11.5" = "8.4.0"; 64 133 "11.6" = "8.4.0"; 65 - "11.7" = "8.4.0"; 134 + "11.7" = "8.5.3"; 135 + "11.8" = "8.5.3"; 66 136 }.${cudaVersion} or "8.4.0"; 67 137 68 138 in tensorRTPackages
+2 -2
pkgs/development/libraries/science/math/tensorrt/generic.nix
··· 9 9 }: 10 10 11 11 { fullVersion 12 - , fileVersionCudnn 12 + , fileVersionCudnn ? null 13 13 , tarball 14 14 , sha256 15 15 , supportedCudaVersions ? [ ] 16 16 }: 17 17 18 - assert lib.assertMsg (lib.strings.versionAtLeast cudnn.version fileVersionCudnn) 18 + assert fileVersionCudnn == null || lib.assertMsg (lib.strings.versionAtLeast cudnn.version fileVersionCudnn) 19 19 "This version of TensorRT requires at least cuDNN ${fileVersionCudnn} (current version is ${cudnn.version})"; 20 20 21 21 backendStdenv.mkDerivation rec {
+23
pkgs/development/lua-modules/generated-packages.nix
··· 1121 1121 }; 1122 1122 }) {}; 1123 1123 1124 + lua-curl = callPackage({ lua, buildLuarocksPackage, fetchzip, luaOlder, luaAtLeast }: 1125 + buildLuarocksPackage { 1126 + pname = "lua-curl"; 1127 + version = "0.3.13-1"; 1128 + knownRockspec = (fetchurl { 1129 + url = "mirror://luarocks/lua-curl-0.3.13-1.rockspec"; 1130 + sha256 = "0lz534sm35hxazf1w71hagiyfplhsvzr94i6qyv5chjfabrgbhjn"; 1131 + }).outPath; 1132 + src = fetchzip { 1133 + url = "https://github.com/Lua-cURL/Lua-cURLv3/archive/v0.3.13.zip"; 1134 + sha256 = "0gn59bwrnb2mvl8i0ycr6m3jmlgx86xlr9mwnc85zfhj7zhi5anp"; 1135 + }; 1136 + 1137 + disabled = (luaOlder "5.1") || (luaAtLeast "5.5"); 1138 + propagatedBuildInputs = [ lua ]; 1139 + 1140 + meta = { 1141 + homepage = "https://github.com/Lua-cURL"; 1142 + description = "Lua binding to libcurl"; 1143 + license.fullName = "MIT/X11"; 1144 + }; 1145 + }) {}; 1146 + 1124 1147 lua-iconv = callPackage({ fetchurl, lua, buildLuarocksPackage, luaOlder }: 1125 1148 buildLuarocksPackage { 1126 1149 pname = "lua-iconv";
+7
pkgs/development/lua-modules/overrides.nix
··· 1 1 # do not add pkgs, it messes up splicing 2 2 { stdenv 3 3 , cmake 4 + , curl 4 5 , cyrus_sasl 5 6 , dbus 6 7 , expat ··· 252 253 lrexlib-posix = prev.luaLib.overrideLuarocks prev.lrexlib-posix (drv: { 253 254 buildInputs = [ 254 255 glibc.dev 256 + ]; 257 + }); 258 + 259 + lua-curl = prev.luaLib.overrideLuarocks prev.lua-curl (drv: { 260 + buildInputs = [ 261 + curl 255 262 ]; 256 263 }); 257 264
+2 -2
pkgs/development/mobile/maestro/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "maestro"; 5 - version = "1.25.0"; 5 + version = "1.26.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/mobile-dev-inc/maestro/releases/download/cli-${version}/maestro.zip"; 9 - sha256 = "0rkm2rgbbr4rbycg2kz5in2wjklv23jr7ms5p49j3bpa6nkv4jq3"; 9 + sha256 = "1ad5s5125hcqv3cf9zz0yyxcfck0jylppd1n5vpd4s2yshz0lqnj"; 10 10 }; 11 11 12 12 dontUnpack = true;
+2 -2
pkgs/development/python-modules/aioswitcher/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "aioswitcher"; 17 - version = "3.2.2"; 17 + version = "3.3.0"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.9"; ··· 23 23 owner = "TomerFi"; 24 24 repo = pname; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-17LTNQjI2UfgtlNNkSRSWMNnhgokBXn/7KGuKo5Ai4E="; 26 + hash = "sha256-dg3oGSwRoOFkX97ZBk7fgOv0fZjOZ+FRXNO9DKEU6Zk="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+3 -2
pkgs/development/python-modules/jaxlib/default.nix
··· 49 49 }: 50 50 51 51 let 52 - inherit (cudaPackages) cudatoolkit cudaFlags cudnn nccl; 52 + inherit (cudaPackages) backendStdenv cudatoolkit cudaFlags cudnn nccl; 53 53 54 54 pname = "jaxlib"; 55 55 version = "0.3.22"; ··· 81 81 cudatoolkit_cc_joined = symlinkJoin { 82 82 name = "${cudatoolkit.cc.name}-merged"; 83 83 paths = [ 84 - cudatoolkit.cc 84 + backendStdenv.cc 85 85 binutils.bintools # for ar, dwp, nm, objcopy, objdump, strip 86 86 ]; 87 87 }; ··· 271 271 sed -i 's@include/pybind11@pybind11@g' $src 272 272 done 273 273 '' + lib.optionalString cudaSupport '' 274 + export NIX_LDFLAGS+=" -L${backendStdenv.nixpkgsCompatibleLibstdcxx}/lib" 274 275 patchShebangs ../output/external/org_tensorflow/third_party/gpus/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc.tpl 275 276 '' + lib.optionalString stdenv.isDarwin '' 276 277 # Framework search paths aren't added by bintools hook
+2 -2
pkgs/development/python-modules/jupyter-server-fileid/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "jupyter-server-fileid"; 14 - version = "0.8.0"; 14 + version = "0.9.0"; 15 15 16 16 disables = pythonOlder "3.7"; 17 17 ··· 21 21 owner = "jupyter-server"; 22 22 repo = "jupyter_server_fileid"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-gJ+OM2b4JrdBObPnltqCWGK3e5p3K2XcoUohej3nDIM="; 24 + hash = "sha256-3dwj8GV0FmbhSsC2uWOLcU5ofrvBBGJ/2F/noFh4RCU="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/mautrix/default.nix
··· 21 21 22 22 buildPythonPackage rec { 23 23 pname = "mautrix"; 24 - version = "0.19.7"; 24 + version = "0.19.9"; 25 25 format = "setuptools"; 26 26 27 27 disabled = pythonOlder "3.8"; ··· 30 30 owner = "mautrix"; 31 31 repo = "python"; 32 32 rev = "refs/tags/v${version}"; 33 - hash = "sha256-uL4eNMe+NXyE+kLy87zZPNBDuMnAt3KHT01ryFVfBZU="; 33 + hash = "sha256-GyviaWFPiT0ka0IUFU53DLPT8R8kRhTztvKTG9b7ads="; 34 34 }; 35 35 36 36 propagatedBuildInputs = [
+3 -4
pkgs/development/python-modules/omnikinverter/default.nix
··· 1 1 { lib 2 2 , aiohttp 3 3 , aresponses 4 - , asynctest 5 4 , buildPythonPackage 6 5 , fetchFromGitHub 7 6 , poetry-core ··· 13 12 14 13 buildPythonPackage rec { 15 14 pname = "omnikinverter"; 16 - version = "0.9.0"; 15 + version = "0.9.1"; 17 16 format = "pyproject"; 18 17 19 18 disabled = pythonOlder "3.9"; ··· 22 21 owner = "klaasnicolaas"; 23 22 repo = "python-omnikinverter"; 24 23 rev = "refs/tags/v${version}"; 25 - hash = "sha256-V7rppl1u5QTzxkeLYgCFwgU6XuVENtb7EW/n+glwtSk="; 24 + hash = "sha256-Vjfnwk9iIe5j+s/zJHQ2X095Eexp/aKtIi/k0sK45q0="; 26 25 }; 27 26 28 27 nativeBuildInputs = [ ··· 36 35 37 36 nativeCheckInputs = [ 38 37 aresponses 39 - asynctest 40 38 pytest-asyncio 41 39 pytestCheckHook 42 40 ]; ··· 55 53 meta = with lib; { 56 54 description = "Python module for the Omnik Inverter"; 57 55 homepage = "https://github.com/klaasnicolaas/python-omnikinverter"; 56 + changelog = "https://github.com/klaasnicolaas/python-omnikinverter/releases/tag/v${version}"; 58 57 license = with licenses; [ mit ]; 59 58 maintainers = with maintainers; [ fab ]; 60 59 };
+2 -2
pkgs/development/python-modules/pontos/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "pontos"; 20 - version = "23.4.1"; 20 + version = "23.4.2"; 21 21 format = "pyproject"; 22 22 23 23 disabled = pythonOlder "3.9"; ··· 26 26 owner = "greenbone"; 27 27 repo = pname; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-siaOZClcqivFZlscPiEo3skL6oVjDEWrabP8I+IvQJ8="; 29 + hash = "sha256-z7mZVcL7zu4SJZm22S6hbEWROb6OwesuqRNKFpXCe+U="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+11 -10
pkgs/development/tools/build-managers/dub/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "dub"; 7 - version = "1.23.0"; 7 + version = "1.30.0"; 8 8 9 9 enableParallelBuilding = true; 10 10 ··· 12 12 owner = "dlang"; 13 13 repo = "dub"; 14 14 rev = "v${version}"; 15 - sha256 = "06a4whsl1m600k096nwif83n7za3vr7pj1xwapncy5fcad1gmady"; 15 + sha256 = "sha256-iVl7bjblvIxvrUX7Phq6h4AIAmZjNVkGYYFA1hhsE7c="; 16 16 }; 17 17 18 - postUnpack = '' 19 - patchShebangs . 20 - ''; 21 - 22 - # Can be removed with https://github.com/dlang/dub/pull/1368 23 18 dubvar = "\\$DUB"; 24 19 postPatch = '' 25 - substituteInPlace test/fetchzip.sh \ 26 - --replace "dub remove" "\"${dubvar}\" remove" 20 + patchShebangs test 21 + 22 + 23 + # Can be removed with https://github.com/dlang/dub/pull/1368 24 + substituteInPlace test/fetchzip.sh \ 25 + --replace "dub remove" "\"${dubvar}\" remove" 27 26 ''; 28 27 29 28 nativeBuildInputs = [ dcompiler libevent rsync ]; ··· 50 49 checkPhase = '' 51 50 export DUB=$NIX_BUILD_TOP/source/bin/dub 52 51 export PATH=$PATH:$NIX_BUILD_TOP/source/bin/ 53 - export DC=${dcompiler.out}/bin/${dcompiler.pname} 52 + export DC=${dcompiler.out}/bin/${if dcompiler.pname=="ldc" then "ldc2" else dcompiler.pname} 54 53 echo "DC out --> $DC" 55 54 export HOME=$TMP 56 55 ··· 103 102 rm test/single-file-sdl-default-name.sh 104 103 rm test/subpackage-common-with-sourcefile-globbing.sh 105 104 rm test/issue934-path-dep.sh 105 + rm -r test/issue2258-dynLib-exe-dep # requires files below 106 106 rm -r test/1-dynLib-simple 107 107 rm -r test/1-exec-simple-package-json 108 108 rm -r test/1-exec-simple ··· 136 136 rm -r test/issue97-targettype-none-onerecipe 137 137 rm -r test/path-subpackage-ref 138 138 rm -r test/sdl-package-simple 139 + rm -r test/dpath-variable # requires execution of dpath-variable.sh 139 140 140 141 ./test/run-unittest.sh 141 142 '';
+3 -3
pkgs/development/tools/cue/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cue"; 5 - version = "0.4.3"; 5 + version = "0.5.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cue-lang"; 9 9 repo = "cue"; 10 10 rev = "v${version}"; 11 - hash = "sha256-v9MYrijnbtJpTgRZ4hmkaekisOyujldGewCRNbkVzWw="; 11 + hash = "sha256-4E50VrekIkVXhzHVNehgm6/DbkofvqlNSgX9oK9SLu4="; 12 12 }; 13 13 14 14 postPatch = '' ··· 16 16 rm -f cmd/cue/cmd/script_test.go 17 17 ''; 18 18 19 - vendorHash = "sha256-jTfV8DJlr5LxS3HjOEBkVzBvZKiySrmINumXSUIq2mI="; 19 + vendorHash = "sha256-0N0bZdimGHu3vkLe+eGKBTm/YeSQOnp+Pxhz3LVniTk="; 20 20 21 21 excludedPackages = [ "internal/ci/updatetxtar" "internal/cmd/embedpkg" "internal/cmd/qgo" "pkg/gen" ]; 22 22
+4968
pkgs/development/tools/rust/cargo-lambda/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "addr2line" 7 + version = "0.17.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 15 + name = "adler" 16 + version = "1.0.2" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 + 20 + [[package]] 21 + name = "aes" 22 + version = "0.7.5" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 25 + dependencies = [ 26 + "cfg-if 1.0.0", 27 + "cipher", 28 + "cpufeatures", 29 + "opaque-debug", 30 + ] 31 + 32 + [[package]] 33 + name = "ahash" 34 + version = "0.7.6" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 37 + dependencies = [ 38 + "getrandom 0.2.8", 39 + "once_cell", 40 + "version_check", 41 + ] 42 + 43 + [[package]] 44 + name = "aho-corasick" 45 + version = "0.7.20" 46 + source = "registry+https://github.com/rust-lang/crates.io-index" 47 + checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 48 + dependencies = [ 49 + "memchr", 50 + ] 51 + 52 + [[package]] 53 + name = "android_system_properties" 54 + version = "0.1.5" 55 + source = "registry+https://github.com/rust-lang/crates.io-index" 56 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 57 + dependencies = [ 58 + "libc", 59 + ] 60 + 61 + [[package]] 62 + name = "anyhow" 63 + version = "1.0.66" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" 66 + 67 + [[package]] 68 + name = "anymap2" 69 + version = "0.13.0" 70 + source = "registry+https://github.com/rust-lang/crates.io-index" 71 + checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c" 72 + 73 + [[package]] 74 + name = "async-priority-channel" 75 + version = "0.1.0" 76 + source = "registry+https://github.com/rust-lang/crates.io-index" 77 + checksum = "c21678992e1b21bebfe2bc53ab5f5f68c106eddab31b24e0bb06e9b715a86640" 78 + dependencies = [ 79 + "event-listener", 80 + ] 81 + 82 + [[package]] 83 + name = "async-recursion" 84 + version = "1.0.0" 85 + source = "registry+https://github.com/rust-lang/crates.io-index" 86 + checksum = "2cda8f4bcc10624c4e85bc66b3f452cca98cfa5ca002dc83a16aad2367641bea" 87 + dependencies = [ 88 + "proc-macro2", 89 + "quote", 90 + "syn", 91 + ] 92 + 93 + [[package]] 94 + name = "async-trait" 95 + version = "0.1.58" 96 + source = "registry+https://github.com/rust-lang/crates.io-index" 97 + checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c" 98 + dependencies = [ 99 + "proc-macro2", 100 + "quote", 101 + "syn", 102 + ] 103 + 104 + [[package]] 105 + name = "atomic-take" 106 + version = "1.0.0" 107 + source = "registry+https://github.com/rust-lang/crates.io-index" 108 + checksum = "f9f65e4fb35ff6a80b3298d1f028649f3a23da141fa3951e9b24dde1d515b67e" 109 + 110 + [[package]] 111 + name = "atty" 112 + version = "0.2.14" 113 + source = "registry+https://github.com/rust-lang/crates.io-index" 114 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 115 + dependencies = [ 116 + "hermit-abi 0.1.19", 117 + "libc", 118 + "winapi", 119 + ] 120 + 121 + [[package]] 122 + name = "autocfg" 123 + version = "1.1.0" 124 + source = "registry+https://github.com/rust-lang/crates.io-index" 125 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 126 + 127 + [[package]] 128 + name = "aws-config" 129 + version = "0.53.0" 130 + source = "registry+https://github.com/rust-lang/crates.io-index" 131 + checksum = "741327a7f70e6e639bdb5061964c66250460c70ad3f59c3fe2a3a64ac1484e33" 132 + dependencies = [ 133 + "aws-credential-types", 134 + "aws-http", 135 + "aws-sdk-sso", 136 + "aws-sdk-sts", 137 + "aws-smithy-async", 138 + "aws-smithy-client", 139 + "aws-smithy-http", 140 + "aws-smithy-http-tower", 141 + "aws-smithy-json", 142 + "aws-smithy-types", 143 + "aws-types", 144 + "bytes", 145 + "hex 0.4.3", 146 + "http", 147 + "hyper", 148 + "ring", 149 + "time 0.3.17", 150 + "tokio", 151 + "tower", 152 + "tracing", 153 + "zeroize", 154 + ] 155 + 156 + [[package]] 157 + name = "aws-credential-types" 158 + version = "0.53.0" 159 + source = "registry+https://github.com/rust-lang/crates.io-index" 160 + checksum = "5f99dd587a46af58f8cf37773687ecec19d0373a5954942d7e0f405751fe2369" 161 + dependencies = [ 162 + "aws-smithy-async", 163 + "aws-smithy-types", 164 + "tokio", 165 + "tracing", 166 + "zeroize", 167 + ] 168 + 169 + [[package]] 170 + name = "aws-endpoint" 171 + version = "0.53.0" 172 + source = "registry+https://github.com/rust-lang/crates.io-index" 173 + checksum = "13fdfc00c57d95e10bcf83d2331c4ae9ca460ca84dc983b2cdd692de87640389" 174 + dependencies = [ 175 + "aws-smithy-http", 176 + "aws-smithy-types", 177 + "aws-types", 178 + "http", 179 + "regex", 180 + "tracing", 181 + ] 182 + 183 + [[package]] 184 + name = "aws-http" 185 + version = "0.53.0" 186 + source = "registry+https://github.com/rust-lang/crates.io-index" 187 + checksum = "74cdac70481d144bf7001c27884b95ee12c8f62e61db90320d59b673ae121cb8" 188 + dependencies = [ 189 + "aws-credential-types", 190 + "aws-smithy-http", 191 + "aws-smithy-types", 192 + "aws-types", 193 + "bytes", 194 + "http", 195 + "http-body", 196 + "lazy_static", 197 + "percent-encoding", 198 + "pin-project-lite", 199 + "tracing", 200 + ] 201 + 202 + [[package]] 203 + name = "aws-sdk-iam" 204 + version = "0.23.0" 205 + source = "registry+https://github.com/rust-lang/crates.io-index" 206 + checksum = "ed6d940e3dfda67712700b48e8f3c4758dfceff9f968b4f7dc81de5f6c159ba3" 207 + dependencies = [ 208 + "aws-credential-types", 209 + "aws-endpoint", 210 + "aws-http", 211 + "aws-sig-auth", 212 + "aws-smithy-async", 213 + "aws-smithy-client", 214 + "aws-smithy-http", 215 + "aws-smithy-http-tower", 216 + "aws-smithy-json", 217 + "aws-smithy-query", 218 + "aws-smithy-types", 219 + "aws-smithy-xml", 220 + "aws-types", 221 + "bytes", 222 + "http", 223 + "regex", 224 + "tokio-stream", 225 + "tower", 226 + "tracing", 227 + "url", 228 + ] 229 + 230 + [[package]] 231 + name = "aws-sdk-lambda" 232 + version = "0.23.0" 233 + source = "registry+https://github.com/rust-lang/crates.io-index" 234 + checksum = "76920987023931bb62faa01800ea9b68e15209b5aa176c7bb20834bb66c95e46" 235 + dependencies = [ 236 + "aws-credential-types", 237 + "aws-endpoint", 238 + "aws-http", 239 + "aws-sig-auth", 240 + "aws-smithy-async", 241 + "aws-smithy-client", 242 + "aws-smithy-http", 243 + "aws-smithy-http-tower", 244 + "aws-smithy-json", 245 + "aws-smithy-types", 246 + "aws-types", 247 + "bytes", 248 + "http", 249 + "regex", 250 + "tokio-stream", 251 + "tower", 252 + "tracing", 253 + "url", 254 + ] 255 + 256 + [[package]] 257 + name = "aws-sdk-s3" 258 + version = "0.23.0" 259 + source = "registry+https://github.com/rust-lang/crates.io-index" 260 + checksum = "5ae411cb03ea6df0d4c4340a0d3c15cab7b19715d091f76c5629f31acd6403f3" 261 + dependencies = [ 262 + "aws-credential-types", 263 + "aws-endpoint", 264 + "aws-http", 265 + "aws-sig-auth", 266 + "aws-sigv4", 267 + "aws-smithy-async", 268 + "aws-smithy-checksums", 269 + "aws-smithy-client", 270 + "aws-smithy-eventstream", 271 + "aws-smithy-http", 272 + "aws-smithy-http-tower", 273 + "aws-smithy-json", 274 + "aws-smithy-types", 275 + "aws-smithy-xml", 276 + "aws-types", 277 + "bytes", 278 + "bytes-utils", 279 + "fastrand", 280 + "http", 281 + "http-body", 282 + "once_cell", 283 + "percent-encoding", 284 + "regex", 285 + "tokio-stream", 286 + "tower", 287 + "tracing", 288 + "url", 289 + ] 290 + 291 + [[package]] 292 + name = "aws-sdk-sso" 293 + version = "0.23.0" 294 + source = "registry+https://github.com/rust-lang/crates.io-index" 295 + checksum = "d5d2fb56182ac693a19364cc0bde22d95aef9be3663bf9b906ffbd0ab0a7c7d1" 296 + dependencies = [ 297 + "aws-credential-types", 298 + "aws-endpoint", 299 + "aws-http", 300 + "aws-sig-auth", 301 + "aws-smithy-async", 302 + "aws-smithy-client", 303 + "aws-smithy-http", 304 + "aws-smithy-http-tower", 305 + "aws-smithy-json", 306 + "aws-smithy-types", 307 + "aws-types", 308 + "bytes", 309 + "http", 310 + "regex", 311 + "tokio-stream", 312 + "tower", 313 + "url", 314 + ] 315 + 316 + [[package]] 317 + name = "aws-sdk-sts" 318 + version = "0.23.0" 319 + source = "registry+https://github.com/rust-lang/crates.io-index" 320 + checksum = "a70adf3e9518c8d6d14f1239f6af04c019ffd260ab791e17deb11f1bce6a9f76" 321 + dependencies = [ 322 + "aws-credential-types", 323 + "aws-endpoint", 324 + "aws-http", 325 + "aws-sig-auth", 326 + "aws-smithy-async", 327 + "aws-smithy-client", 328 + "aws-smithy-http", 329 + "aws-smithy-http-tower", 330 + "aws-smithy-json", 331 + "aws-smithy-query", 332 + "aws-smithy-types", 333 + "aws-smithy-xml", 334 + "aws-types", 335 + "bytes", 336 + "http", 337 + "regex", 338 + "tower", 339 + "tracing", 340 + "url", 341 + ] 342 + 343 + [[package]] 344 + name = "aws-sig-auth" 345 + version = "0.53.0" 346 + source = "registry+https://github.com/rust-lang/crates.io-index" 347 + checksum = "22af7f6515f8b51dabef87df1d901c9734e4e367791c6d0e1082f9f31528120e" 348 + dependencies = [ 349 + "aws-credential-types", 350 + "aws-sigv4", 351 + "aws-smithy-eventstream", 352 + "aws-smithy-http", 353 + "aws-types", 354 + "http", 355 + "tracing", 356 + ] 357 + 358 + [[package]] 359 + name = "aws-sigv4" 360 + version = "0.53.0" 361 + source = "registry+https://github.com/rust-lang/crates.io-index" 362 + checksum = "eee0d796882321e91ca7b991ab6193864e04b605be3a6c18adb9134a90d5a860" 363 + dependencies = [ 364 + "aws-smithy-eventstream", 365 + "aws-smithy-http", 366 + "bytes", 367 + "form_urlencoded", 368 + "hex 0.4.3", 369 + "hmac", 370 + "http", 371 + "once_cell", 372 + "percent-encoding", 373 + "regex", 374 + "sha2", 375 + "time 0.3.17", 376 + "tracing", 377 + ] 378 + 379 + [[package]] 380 + name = "aws-smithy-async" 381 + version = "0.53.1" 382 + source = "registry+https://github.com/rust-lang/crates.io-index" 383 + checksum = "d8b9900be224962d65a626072d8777f847ae5406c07547f0dc14c60048978c4b" 384 + dependencies = [ 385 + "futures-util", 386 + "pin-project-lite", 387 + "tokio", 388 + "tokio-stream", 389 + ] 390 + 391 + [[package]] 392 + name = "aws-smithy-checksums" 393 + version = "0.53.1" 394 + source = "registry+https://github.com/rust-lang/crates.io-index" 395 + checksum = "85e9e4d3c2296bcec2c03f9f769ac9b2424d972c2fe7afc0b59235447ac3a5c3" 396 + dependencies = [ 397 + "aws-smithy-http", 398 + "aws-smithy-types", 399 + "bytes", 400 + "crc32c", 401 + "crc32fast", 402 + "hex 0.4.3", 403 + "http", 404 + "http-body", 405 + "md-5", 406 + "pin-project-lite", 407 + "sha1", 408 + "sha2", 409 + "tracing", 410 + ] 411 + 412 + [[package]] 413 + name = "aws-smithy-client" 414 + version = "0.53.1" 415 + source = "registry+https://github.com/rust-lang/crates.io-index" 416 + checksum = "710ca0f8dacddda5fbcaf5c3cd9d02da7913fd463a2ee9555b617bf168bedacb" 417 + dependencies = [ 418 + "aws-smithy-async", 419 + "aws-smithy-http", 420 + "aws-smithy-http-tower", 421 + "aws-smithy-types", 422 + "bytes", 423 + "fastrand", 424 + "http", 425 + "http-body", 426 + "hyper", 427 + "hyper-rustls", 428 + "lazy_static", 429 + "pin-project-lite", 430 + "tokio", 431 + "tower", 432 + "tracing", 433 + ] 434 + 435 + [[package]] 436 + name = "aws-smithy-eventstream" 437 + version = "0.53.1" 438 + source = "registry+https://github.com/rust-lang/crates.io-index" 439 + checksum = "8d1ff11ee22de3581114b60d4ae8e700638dacb5b5bbe6769726e251e6c3f20a" 440 + dependencies = [ 441 + "aws-smithy-types", 442 + "bytes", 443 + "crc32fast", 444 + ] 445 + 446 + [[package]] 447 + name = "aws-smithy-http" 448 + version = "0.53.1" 449 + source = "registry+https://github.com/rust-lang/crates.io-index" 450 + checksum = "29dcab29afbea7726f5c10c7be0c38666d7eb07db551580b3b26ed7cfb5d1935" 451 + dependencies = [ 452 + "aws-smithy-eventstream", 453 + "aws-smithy-types", 454 + "bytes", 455 + "bytes-utils", 456 + "futures-core", 457 + "http", 458 + "http-body", 459 + "hyper", 460 + "once_cell", 461 + "percent-encoding", 462 + "pin-project-lite", 463 + "pin-utils", 464 + "tokio", 465 + "tokio-util", 466 + "tracing", 467 + ] 468 + 469 + [[package]] 470 + name = "aws-smithy-http-tower" 471 + version = "0.53.1" 472 + source = "registry+https://github.com/rust-lang/crates.io-index" 473 + checksum = "f5856d2f1063c0f726a85f32dcd2a9f5a1d994eb27b156abccafc7260f3f471d" 474 + dependencies = [ 475 + "aws-smithy-http", 476 + "aws-smithy-types", 477 + "bytes", 478 + "http", 479 + "http-body", 480 + "pin-project-lite", 481 + "tower", 482 + "tracing", 483 + ] 484 + 485 + [[package]] 486 + name = "aws-smithy-json" 487 + version = "0.53.1" 488 + source = "registry+https://github.com/rust-lang/crates.io-index" 489 + checksum = "dfb33659b68480495b5f906b946c8642928440118b1d7e26a25a067303ca01a5" 490 + dependencies = [ 491 + "aws-smithy-types", 492 + ] 493 + 494 + [[package]] 495 + name = "aws-smithy-query" 496 + version = "0.53.1" 497 + source = "registry+https://github.com/rust-lang/crates.io-index" 498 + checksum = "9c4b21ee0e30ff046e87c7b7e017b99d445b42a81fe52c6e5139b23b795a98ae" 499 + dependencies = [ 500 + "aws-smithy-types", 501 + "urlencoding", 502 + ] 503 + 504 + [[package]] 505 + name = "aws-smithy-types" 506 + version = "0.53.1" 507 + source = "registry+https://github.com/rust-lang/crates.io-index" 508 + checksum = "2013465a070decdeb3e85ceb3370ae85ba05f56f914abfd89858d7281c4f12c3" 509 + dependencies = [ 510 + "base64-simd", 511 + "itoa", 512 + "num-integer", 513 + "ryu", 514 + "time 0.3.17", 515 + ] 516 + 517 + [[package]] 518 + name = "aws-smithy-xml" 519 + version = "0.53.1" 520 + source = "registry+https://github.com/rust-lang/crates.io-index" 521 + checksum = "6d27bfaa164aa94aac721726a83aa78abe708a275e88a573e103b4961c5f0ede" 522 + dependencies = [ 523 + "xmlparser", 524 + ] 525 + 526 + [[package]] 527 + name = "aws-types" 528 + version = "0.53.0" 529 + source = "registry+https://github.com/rust-lang/crates.io-index" 530 + checksum = "61f00f4b0cdd345686e6389f3343a3020f93232d20040802b87673ddc2d02956" 531 + dependencies = [ 532 + "aws-credential-types", 533 + "aws-smithy-async", 534 + "aws-smithy-client", 535 + "aws-smithy-http", 536 + "aws-smithy-types", 537 + "http", 538 + "rustc_version", 539 + "tracing", 540 + ] 541 + 542 + [[package]] 543 + name = "aws_lambda_events" 544 + version = "0.6.3" 545 + source = "registry+https://github.com/rust-lang/crates.io-index" 546 + checksum = "55d7e5deac5e49330042b4e174dafe84ebf71685bfcd94f285bac7aa31e0aeb1" 547 + dependencies = [ 548 + "base64", 549 + "bytes", 550 + "chrono", 551 + "http", 552 + "http-body", 553 + "http-serde", 554 + "query_map", 555 + "serde", 556 + "serde_derive", 557 + "serde_json", 558 + ] 559 + 560 + [[package]] 561 + name = "axum" 562 + version = "0.5.17" 563 + source = "registry+https://github.com/rust-lang/crates.io-index" 564 + checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43" 565 + dependencies = [ 566 + "async-trait", 567 + "axum-core", 568 + "bitflags", 569 + "bytes", 570 + "futures-util", 571 + "http", 572 + "http-body", 573 + "hyper", 574 + "itoa", 575 + "matchit", 576 + "memchr", 577 + "mime", 578 + "percent-encoding", 579 + "pin-project-lite", 580 + "serde", 581 + "serde_json", 582 + "serde_urlencoded", 583 + "sync_wrapper", 584 + "tokio", 585 + "tower", 586 + "tower-http", 587 + "tower-layer", 588 + "tower-service", 589 + ] 590 + 591 + [[package]] 592 + name = "axum-core" 593 + version = "0.2.9" 594 + source = "registry+https://github.com/rust-lang/crates.io-index" 595 + checksum = "37e5939e02c56fecd5c017c37df4238c0a839fa76b7f97acdd7efb804fd181cc" 596 + dependencies = [ 597 + "async-trait", 598 + "bytes", 599 + "futures-util", 600 + "http", 601 + "http-body", 602 + "mime", 603 + "tower-layer", 604 + "tower-service", 605 + ] 606 + 607 + [[package]] 608 + name = "backtrace" 609 + version = "0.3.66" 610 + source = "registry+https://github.com/rust-lang/crates.io-index" 611 + checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" 612 + dependencies = [ 613 + "addr2line", 614 + "cc", 615 + "cfg-if 1.0.0", 616 + "libc", 617 + "miniz_oxide 0.5.4", 618 + "object 0.29.0", 619 + "rustc-demangle", 620 + ] 621 + 622 + [[package]] 623 + name = "base64" 624 + version = "0.13.1" 625 + source = "registry+https://github.com/rust-lang/crates.io-index" 626 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 627 + 628 + [[package]] 629 + name = "base64-simd" 630 + version = "0.7.0" 631 + source = "registry+https://github.com/rust-lang/crates.io-index" 632 + checksum = "781dd20c3aff0bd194fe7d2a977dd92f21c173891f3a03b677359e5fa457e5d5" 633 + dependencies = [ 634 + "simd-abstraction", 635 + ] 636 + 637 + [[package]] 638 + name = "base64ct" 639 + version = "1.5.3" 640 + source = "registry+https://github.com/rust-lang/crates.io-index" 641 + checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf" 642 + 643 + [[package]] 644 + name = "bitflags" 645 + version = "1.3.2" 646 + source = "registry+https://github.com/rust-lang/crates.io-index" 647 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 648 + 649 + [[package]] 650 + name = "block-buffer" 651 + version = "0.10.3" 652 + source = "registry+https://github.com/rust-lang/crates.io-index" 653 + checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 654 + dependencies = [ 655 + "generic-array", 656 + ] 657 + 658 + [[package]] 659 + name = "bstr" 660 + version = "0.2.17" 661 + source = "registry+https://github.com/rust-lang/crates.io-index" 662 + checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 663 + dependencies = [ 664 + "memchr", 665 + ] 666 + 667 + [[package]] 668 + name = "bstr" 669 + version = "1.4.0" 670 + source = "registry+https://github.com/rust-lang/crates.io-index" 671 + checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09" 672 + dependencies = [ 673 + "memchr", 674 + "once_cell", 675 + "regex-automata", 676 + "serde", 677 + ] 678 + 679 + [[package]] 680 + name = "btoi" 681 + version = "0.4.2" 682 + source = "registry+https://github.com/rust-lang/crates.io-index" 683 + checksum = "97c0869a9faa81f8bbf8102371105d6d0a7b79167a04c340b04ab16892246a11" 684 + dependencies = [ 685 + "num-traits", 686 + ] 687 + 688 + [[package]] 689 + name = "build-data" 690 + version = "0.1.3" 691 + source = "registry+https://github.com/rust-lang/crates.io-index" 692 + checksum = "1a94f9f7aab679acac7ce29ba5581c00d3971a861c3b501c5bb74c3ba0026d90" 693 + dependencies = [ 694 + "chrono", 695 + "safe-lock", 696 + "safe-regex", 697 + ] 698 + 699 + [[package]] 700 + name = "bumpalo" 701 + version = "3.11.1" 702 + source = "registry+https://github.com/rust-lang/crates.io-index" 703 + checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" 704 + 705 + [[package]] 706 + name = "byteorder" 707 + version = "1.4.3" 708 + source = "registry+https://github.com/rust-lang/crates.io-index" 709 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 710 + 711 + [[package]] 712 + name = "bytes" 713 + version = "1.3.0" 714 + source = "registry+https://github.com/rust-lang/crates.io-index" 715 + checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c" 716 + dependencies = [ 717 + "serde", 718 + ] 719 + 720 + [[package]] 721 + name = "bytes-utils" 722 + version = "0.1.3" 723 + source = "registry+https://github.com/rust-lang/crates.io-index" 724 + checksum = "e47d3a8076e283f3acd27400535992edb3ba4b5bb72f8891ad8fbe7932a7d4b9" 725 + dependencies = [ 726 + "bytes", 727 + "either", 728 + ] 729 + 730 + [[package]] 731 + name = "bzip2" 732 + version = "0.4.3" 733 + source = "registry+https://github.com/rust-lang/crates.io-index" 734 + checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0" 735 + dependencies = [ 736 + "bzip2-sys", 737 + "libc", 738 + ] 739 + 740 + [[package]] 741 + name = "bzip2-sys" 742 + version = "0.1.11+1.0.8" 743 + source = "registry+https://github.com/rust-lang/crates.io-index" 744 + checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 745 + dependencies = [ 746 + "cc", 747 + "libc", 748 + "pkg-config", 749 + ] 750 + 751 + [[package]] 752 + name = "camino" 753 + version = "1.1.1" 754 + source = "registry+https://github.com/rust-lang/crates.io-index" 755 + checksum = "88ad0e1e3e88dd237a156ab9f571021b8a158caa0ae44b1968a241efb5144c1e" 756 + dependencies = [ 757 + "serde", 758 + ] 759 + 760 + [[package]] 761 + name = "cargo-lambda" 762 + version = "0.18.1" 763 + dependencies = [ 764 + "build-data", 765 + "cargo-lambda-build", 766 + "cargo-lambda-deploy", 767 + "cargo-lambda-invoke", 768 + "cargo-lambda-new", 769 + "cargo-lambda-watch", 770 + "cargo-test-macro", 771 + "cargo-test-support", 772 + "clap", 773 + "dunce", 774 + "miette 4.7.1", 775 + "snapbox", 776 + "tokio", 777 + "tracing", 778 + "tracing-subscriber", 779 + ] 780 + 781 + [[package]] 782 + name = "cargo-lambda-build" 783 + version = "0.18.1" 784 + dependencies = [ 785 + "async-trait", 786 + "cargo-lambda-interactive", 787 + "cargo-lambda-metadata", 788 + "cargo-options", 789 + "cargo-zigbuild", 790 + "clap", 791 + "home", 792 + "miette 4.7.1", 793 + "object 0.28.4", 794 + "rustc_version", 795 + "sha2", 796 + "strum", 797 + "strum_macros", 798 + "thiserror", 799 + "tokio", 800 + "tracing", 801 + "which", 802 + "zip", 803 + ] 804 + 805 + [[package]] 806 + name = "cargo-lambda-deploy" 807 + version = "0.18.1" 808 + dependencies = [ 809 + "aws-sdk-iam", 810 + "aws-sdk-s3", 811 + "aws-sdk-sts", 812 + "aws-smithy-types", 813 + "cargo-lambda-build", 814 + "cargo-lambda-interactive", 815 + "cargo-lambda-metadata", 816 + "cargo-lambda-remote", 817 + "clap", 818 + "miette 4.7.1", 819 + "serde", 820 + "serde_json", 821 + "strum", 822 + "strum_macros", 823 + "tokio", 824 + "tracing", 825 + "uuid", 826 + ] 827 + 828 + [[package]] 829 + name = "cargo-lambda-interactive" 830 + version = "0.18.1" 831 + dependencies = [ 832 + "indicatif", 833 + "inquire", 834 + "is-terminal", 835 + "miette 4.7.1", 836 + "tokio", 837 + ] 838 + 839 + [[package]] 840 + name = "cargo-lambda-invoke" 841 + version = "0.18.1" 842 + dependencies = [ 843 + "cargo-lambda-remote", 844 + "clap", 845 + "dirs 4.0.0", 846 + "miette 4.7.1", 847 + "reqwest", 848 + "serde", 849 + "serde_json", 850 + "strum", 851 + "strum_macros", 852 + "thiserror", 853 + "tokio", 854 + "tracing", 855 + ] 856 + 857 + [[package]] 858 + name = "cargo-lambda-metadata" 859 + version = "0.18.1" 860 + dependencies = [ 861 + "aws-sdk-lambda", 862 + "cargo_metadata 0.14.2", 863 + "clap", 864 + "miette 4.7.1", 865 + "remove_dir_all", 866 + "serde", 867 + "serde_json", 868 + "strum", 869 + "strum_macros", 870 + "thiserror", 871 + "tracing", 872 + ] 873 + 874 + [[package]] 875 + name = "cargo-lambda-new" 876 + version = "0.18.1" 877 + dependencies = [ 878 + "cargo-lambda-interactive", 879 + "cargo-lambda-metadata", 880 + "clap", 881 + "dunce", 882 + "liquid", 883 + "miette 4.7.1", 884 + "regex", 885 + "reqwest", 886 + "strum", 887 + "strum_macros", 888 + "tempfile", 889 + "thiserror", 890 + "tracing", 891 + "walkdir", 892 + "zip", 893 + ] 894 + 895 + [[package]] 896 + name = "cargo-lambda-remote" 897 + version = "0.18.1" 898 + dependencies = [ 899 + "aws-config", 900 + "aws-credential-types", 901 + "aws-sdk-lambda", 902 + "aws-types", 903 + "clap", 904 + "tokio", 905 + ] 906 + 907 + [[package]] 908 + name = "cargo-lambda-watch" 909 + version = "0.18.1" 910 + dependencies = [ 911 + "aws_lambda_events", 912 + "axum", 913 + "base64", 914 + "cargo-lambda-invoke", 915 + "cargo-lambda-metadata", 916 + "chrono", 917 + "clap", 918 + "dunce", 919 + "http-api-problem", 920 + "hyper", 921 + "ignore-files", 922 + "miette 4.7.1", 923 + "opentelemetry", 924 + "opentelemetry-aws", 925 + "project-origins", 926 + "query_map", 927 + "reqwest", 928 + "serde", 929 + "serde_json", 930 + "tempfile", 931 + "thiserror", 932 + "tokio", 933 + "tokio-graceful-shutdown", 934 + "tower-http", 935 + "tracing", 936 + "tracing-opentelemetry", 937 + "tracing-subscriber", 938 + "uuid", 939 + "watchexec", 940 + "watchexec-filterer-ignore", 941 + ] 942 + 943 + [[package]] 944 + name = "cargo-options" 945 + version = "0.5.3" 946 + source = "registry+https://github.com/rust-lang/crates.io-index" 947 + checksum = "860cd643171bc868500aff16c2405559b42fc71bd3130d761c2847b3e9e71cdc" 948 + dependencies = [ 949 + "clap", 950 + ] 951 + 952 + [[package]] 953 + name = "cargo-platform" 954 + version = "0.1.2" 955 + source = "registry+https://github.com/rust-lang/crates.io-index" 956 + checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27" 957 + dependencies = [ 958 + "serde", 959 + ] 960 + 961 + [[package]] 962 + name = "cargo-test-macro" 963 + version = "0.1.0" 964 + source = "git+https://github.com/rust-lang/cargo#c6c69cde0dc92cecc1f92d03b92dc7cd47d8e6a2" 965 + 966 + [[package]] 967 + name = "cargo-test-support" 968 + version = "0.1.0" 969 + source = "git+https://github.com/rust-lang/cargo#c6c69cde0dc92cecc1f92d03b92dc7cd47d8e6a2" 970 + dependencies = [ 971 + "anyhow", 972 + "cargo-test-macro", 973 + "cargo-util", 974 + "crates-io", 975 + "filetime", 976 + "flate2", 977 + "git2", 978 + "glob", 979 + "itertools", 980 + "lazy_static", 981 + "serde_json", 982 + "snapbox", 983 + "tar", 984 + "termcolor", 985 + "toml_edit", 986 + "url", 987 + "winapi", 988 + ] 989 + 990 + [[package]] 991 + name = "cargo-util" 992 + version = "0.2.3" 993 + source = "git+https://github.com/rust-lang/cargo#c6c69cde0dc92cecc1f92d03b92dc7cd47d8e6a2" 994 + dependencies = [ 995 + "anyhow", 996 + "core-foundation", 997 + "crypto-hash", 998 + "filetime", 999 + "hex 0.4.3", 1000 + "jobserver", 1001 + "libc", 1002 + "log", 1003 + "miow", 1004 + "same-file", 1005 + "shell-escape", 1006 + "tempfile", 1007 + "walkdir", 1008 + "winapi", 1009 + ] 1010 + 1011 + [[package]] 1012 + name = "cargo-zigbuild" 1013 + version = "0.14.5" 1014 + source = "registry+https://github.com/rust-lang/crates.io-index" 1015 + checksum = "f7f66533431659d54043e78b4867fe62cad4e9a5c65c8e659d84e5ae19cec5d6" 1016 + dependencies = [ 1017 + "anyhow", 1018 + "cargo-options", 1019 + "cargo_metadata 0.15.2", 1020 + "clap", 1021 + "dirs 4.0.0", 1022 + "fs-err", 1023 + "path-slash", 1024 + "rustc_version", 1025 + "semver", 1026 + "serde", 1027 + "serde_json", 1028 + "target-lexicon", 1029 + "which", 1030 + ] 1031 + 1032 + [[package]] 1033 + name = "cargo_metadata" 1034 + version = "0.14.2" 1035 + source = "registry+https://github.com/rust-lang/crates.io-index" 1036 + checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa" 1037 + dependencies = [ 1038 + "camino", 1039 + "cargo-platform", 1040 + "semver", 1041 + "serde", 1042 + "serde_json", 1043 + ] 1044 + 1045 + [[package]] 1046 + name = "cargo_metadata" 1047 + version = "0.15.2" 1048 + source = "registry+https://github.com/rust-lang/crates.io-index" 1049 + checksum = "982a0cf6a99c350d7246035613882e376d58cebe571785abc5da4f648d53ac0a" 1050 + dependencies = [ 1051 + "camino", 1052 + "cargo-platform", 1053 + "semver", 1054 + "serde", 1055 + "serde_json", 1056 + "thiserror", 1057 + ] 1058 + 1059 + [[package]] 1060 + name = "cc" 1061 + version = "1.0.77" 1062 + source = "registry+https://github.com/rust-lang/crates.io-index" 1063 + checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4" 1064 + dependencies = [ 1065 + "jobserver", 1066 + ] 1067 + 1068 + [[package]] 1069 + name = "cfg-if" 1070 + version = "0.1.10" 1071 + source = "registry+https://github.com/rust-lang/crates.io-index" 1072 + checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 1073 + 1074 + [[package]] 1075 + name = "cfg-if" 1076 + version = "1.0.0" 1077 + source = "registry+https://github.com/rust-lang/crates.io-index" 1078 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 1079 + 1080 + [[package]] 1081 + name = "chrono" 1082 + version = "0.4.23" 1083 + source = "registry+https://github.com/rust-lang/crates.io-index" 1084 + checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" 1085 + dependencies = [ 1086 + "iana-time-zone", 1087 + "js-sys", 1088 + "num-integer", 1089 + "num-traits", 1090 + "serde", 1091 + "time 0.1.45", 1092 + "wasm-bindgen", 1093 + "winapi", 1094 + ] 1095 + 1096 + [[package]] 1097 + name = "cipher" 1098 + version = "0.3.0" 1099 + source = "registry+https://github.com/rust-lang/crates.io-index" 1100 + checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 1101 + dependencies = [ 1102 + "generic-array", 1103 + ] 1104 + 1105 + [[package]] 1106 + name = "clap" 1107 + version = "4.0.27" 1108 + source = "registry+https://github.com/rust-lang/crates.io-index" 1109 + checksum = "0acbd8d28a0a60d7108d7ae850af6ba34cf2d1257fc646980e5f97ce14275966" 1110 + dependencies = [ 1111 + "bitflags", 1112 + "clap_derive", 1113 + "clap_lex", 1114 + "is-terminal", 1115 + "once_cell", 1116 + "strsim", 1117 + "termcolor", 1118 + "terminal_size 0.2.2", 1119 + ] 1120 + 1121 + [[package]] 1122 + name = "clap_derive" 1123 + version = "4.0.21" 1124 + source = "registry+https://github.com/rust-lang/crates.io-index" 1125 + checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014" 1126 + dependencies = [ 1127 + "heck", 1128 + "proc-macro-error", 1129 + "proc-macro2", 1130 + "quote", 1131 + "syn", 1132 + ] 1133 + 1134 + [[package]] 1135 + name = "clap_lex" 1136 + version = "0.3.0" 1137 + source = "registry+https://github.com/rust-lang/crates.io-index" 1138 + checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8" 1139 + dependencies = [ 1140 + "os_str_bytes", 1141 + ] 1142 + 1143 + [[package]] 1144 + name = "clearscreen" 1145 + version = "2.0.0" 1146 + source = "registry+https://github.com/rust-lang/crates.io-index" 1147 + checksum = "41aa24cc5e1d6b3fc49ad4cd540b522fedcbe88bc6f259ff16e20e7010b6f8c7" 1148 + dependencies = [ 1149 + "nix", 1150 + "terminfo", 1151 + "thiserror", 1152 + "which", 1153 + "winapi", 1154 + ] 1155 + 1156 + [[package]] 1157 + name = "codespan-reporting" 1158 + version = "0.11.1" 1159 + source = "registry+https://github.com/rust-lang/crates.io-index" 1160 + checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 1161 + dependencies = [ 1162 + "termcolor", 1163 + "unicode-width", 1164 + ] 1165 + 1166 + [[package]] 1167 + name = "combine" 1168 + version = "4.6.6" 1169 + source = "registry+https://github.com/rust-lang/crates.io-index" 1170 + checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 1171 + dependencies = [ 1172 + "bytes", 1173 + "memchr", 1174 + ] 1175 + 1176 + [[package]] 1177 + name = "command-group" 1178 + version = "2.1.0" 1179 + source = "registry+https://github.com/rust-lang/crates.io-index" 1180 + checksum = "5080df6b0f0ecb76cab30808f00d937ba725cebe266a3da8cd89dff92f2a9916" 1181 + dependencies = [ 1182 + "async-trait", 1183 + "nix", 1184 + "tokio", 1185 + "winapi", 1186 + ] 1187 + 1188 + [[package]] 1189 + name = "commoncrypto" 1190 + version = "0.2.0" 1191 + source = "registry+https://github.com/rust-lang/crates.io-index" 1192 + checksum = "d056a8586ba25a1e4d61cb090900e495952c7886786fc55f909ab2f819b69007" 1193 + dependencies = [ 1194 + "commoncrypto-sys", 1195 + ] 1196 + 1197 + [[package]] 1198 + name = "commoncrypto-sys" 1199 + version = "0.2.0" 1200 + source = "registry+https://github.com/rust-lang/crates.io-index" 1201 + checksum = "1fed34f46747aa73dfaa578069fd8279d2818ade2b55f38f22a9401c7f4083e2" 1202 + dependencies = [ 1203 + "libc", 1204 + ] 1205 + 1206 + [[package]] 1207 + name = "concolor" 1208 + version = "0.0.11" 1209 + source = "registry+https://github.com/rust-lang/crates.io-index" 1210 + checksum = "318d6c16e73b3a900eb212ad6a82fc7d298c5ab8184c7a9998646455bc474a16" 1211 + dependencies = [ 1212 + "bitflags", 1213 + "concolor-query", 1214 + "is-terminal", 1215 + ] 1216 + 1217 + [[package]] 1218 + name = "concolor-query" 1219 + version = "0.1.0" 1220 + source = "registry+https://github.com/rust-lang/crates.io-index" 1221 + checksum = "82a90734b3d5dcf656e7624cca6bce9c3a90ee11f900e80141a7427ccfb3d317" 1222 + 1223 + [[package]] 1224 + name = "console" 1225 + version = "0.15.2" 1226 + source = "registry+https://github.com/rust-lang/crates.io-index" 1227 + checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c" 1228 + dependencies = [ 1229 + "encode_unicode", 1230 + "lazy_static", 1231 + "libc", 1232 + "terminal_size 0.1.17", 1233 + "unicode-width", 1234 + "winapi", 1235 + ] 1236 + 1237 + [[package]] 1238 + name = "constant_time_eq" 1239 + version = "0.1.5" 1240 + source = "registry+https://github.com/rust-lang/crates.io-index" 1241 + checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 1242 + 1243 + [[package]] 1244 + name = "content_inspector" 1245 + version = "0.2.4" 1246 + source = "registry+https://github.com/rust-lang/crates.io-index" 1247 + checksum = "b7bda66e858c683005a53a9a60c69a4aca7eeaa45d124526e389f7aec8e62f38" 1248 + dependencies = [ 1249 + "memchr", 1250 + ] 1251 + 1252 + [[package]] 1253 + name = "core-foundation" 1254 + version = "0.9.3" 1255 + source = "registry+https://github.com/rust-lang/crates.io-index" 1256 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 1257 + dependencies = [ 1258 + "core-foundation-sys", 1259 + "libc", 1260 + ] 1261 + 1262 + [[package]] 1263 + name = "core-foundation-sys" 1264 + version = "0.8.3" 1265 + source = "registry+https://github.com/rust-lang/crates.io-index" 1266 + checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 1267 + 1268 + [[package]] 1269 + name = "cpufeatures" 1270 + version = "0.2.5" 1271 + source = "registry+https://github.com/rust-lang/crates.io-index" 1272 + checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 1273 + dependencies = [ 1274 + "libc", 1275 + ] 1276 + 1277 + [[package]] 1278 + name = "crates-io" 1279 + version = "0.35.0" 1280 + source = "git+https://github.com/rust-lang/cargo#c6c69cde0dc92cecc1f92d03b92dc7cd47d8e6a2" 1281 + dependencies = [ 1282 + "anyhow", 1283 + "curl", 1284 + "percent-encoding", 1285 + "serde", 1286 + "serde_json", 1287 + "url", 1288 + ] 1289 + 1290 + [[package]] 1291 + name = "crc32c" 1292 + version = "0.6.3" 1293 + source = "registry+https://github.com/rust-lang/crates.io-index" 1294 + checksum = "3dfea2db42e9927a3845fb268a10a72faed6d416065f77873f05e411457c363e" 1295 + dependencies = [ 1296 + "rustc_version", 1297 + ] 1298 + 1299 + [[package]] 1300 + name = "crc32fast" 1301 + version = "1.3.2" 1302 + source = "registry+https://github.com/rust-lang/crates.io-index" 1303 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 1304 + dependencies = [ 1305 + "cfg-if 1.0.0", 1306 + ] 1307 + 1308 + [[package]] 1309 + name = "crossbeam-channel" 1310 + version = "0.5.6" 1311 + source = "registry+https://github.com/rust-lang/crates.io-index" 1312 + checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 1313 + dependencies = [ 1314 + "cfg-if 1.0.0", 1315 + "crossbeam-utils", 1316 + ] 1317 + 1318 + [[package]] 1319 + name = "crossbeam-deque" 1320 + version = "0.8.2" 1321 + source = "registry+https://github.com/rust-lang/crates.io-index" 1322 + checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 1323 + dependencies = [ 1324 + "cfg-if 1.0.0", 1325 + "crossbeam-epoch", 1326 + "crossbeam-utils", 1327 + ] 1328 + 1329 + [[package]] 1330 + name = "crossbeam-epoch" 1331 + version = "0.9.13" 1332 + source = "registry+https://github.com/rust-lang/crates.io-index" 1333 + checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 1334 + dependencies = [ 1335 + "autocfg", 1336 + "cfg-if 1.0.0", 1337 + "crossbeam-utils", 1338 + "memoffset", 1339 + "scopeguard", 1340 + ] 1341 + 1342 + [[package]] 1343 + name = "crossbeam-utils" 1344 + version = "0.8.14" 1345 + source = "registry+https://github.com/rust-lang/crates.io-index" 1346 + checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 1347 + dependencies = [ 1348 + "cfg-if 1.0.0", 1349 + ] 1350 + 1351 + [[package]] 1352 + name = "crossterm" 1353 + version = "0.25.0" 1354 + source = "registry+https://github.com/rust-lang/crates.io-index" 1355 + checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67" 1356 + dependencies = [ 1357 + "bitflags", 1358 + "crossterm_winapi", 1359 + "libc", 1360 + "mio", 1361 + "parking_lot", 1362 + "signal-hook", 1363 + "signal-hook-mio", 1364 + "winapi", 1365 + ] 1366 + 1367 + [[package]] 1368 + name = "crossterm_winapi" 1369 + version = "0.9.0" 1370 + source = "registry+https://github.com/rust-lang/crates.io-index" 1371 + checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c" 1372 + dependencies = [ 1373 + "winapi", 1374 + ] 1375 + 1376 + [[package]] 1377 + name = "crypto-common" 1378 + version = "0.1.6" 1379 + source = "registry+https://github.com/rust-lang/crates.io-index" 1380 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1381 + dependencies = [ 1382 + "generic-array", 1383 + "typenum", 1384 + ] 1385 + 1386 + [[package]] 1387 + name = "crypto-hash" 1388 + version = "0.3.4" 1389 + source = "registry+https://github.com/rust-lang/crates.io-index" 1390 + checksum = "8a77162240fd97248d19a564a565eb563a3f592b386e4136fb300909e67dddca" 1391 + dependencies = [ 1392 + "commoncrypto", 1393 + "hex 0.3.2", 1394 + "openssl", 1395 + "winapi", 1396 + ] 1397 + 1398 + [[package]] 1399 + name = "curl" 1400 + version = "0.4.44" 1401 + source = "registry+https://github.com/rust-lang/crates.io-index" 1402 + checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22" 1403 + dependencies = [ 1404 + "curl-sys", 1405 + "libc", 1406 + "openssl-probe", 1407 + "openssl-sys", 1408 + "schannel", 1409 + "socket2", 1410 + "winapi", 1411 + ] 1412 + 1413 + [[package]] 1414 + name = "curl-sys" 1415 + version = "0.4.59+curl-7.86.0" 1416 + source = "registry+https://github.com/rust-lang/crates.io-index" 1417 + checksum = "6cfce34829f448b08f55b7db6d0009e23e2e86a34e8c2b366269bf5799b4a407" 1418 + dependencies = [ 1419 + "cc", 1420 + "libc", 1421 + "libz-sys", 1422 + "openssl-sys", 1423 + "pkg-config", 1424 + "vcpkg", 1425 + "winapi", 1426 + ] 1427 + 1428 + [[package]] 1429 + name = "cxx" 1430 + version = "1.0.82" 1431 + source = "registry+https://github.com/rust-lang/crates.io-index" 1432 + checksum = "d4a41a86530d0fe7f5d9ea779916b7cadd2d4f9add748b99c2c029cbbdfaf453" 1433 + dependencies = [ 1434 + "cc", 1435 + "cxxbridge-flags", 1436 + "cxxbridge-macro", 1437 + "link-cplusplus", 1438 + ] 1439 + 1440 + [[package]] 1441 + name = "cxx-build" 1442 + version = "1.0.82" 1443 + source = "registry+https://github.com/rust-lang/crates.io-index" 1444 + checksum = "06416d667ff3e3ad2df1cd8cd8afae5da26cf9cec4d0825040f88b5ca659a2f0" 1445 + dependencies = [ 1446 + "cc", 1447 + "codespan-reporting", 1448 + "once_cell", 1449 + "proc-macro2", 1450 + "quote", 1451 + "scratch", 1452 + "syn", 1453 + ] 1454 + 1455 + [[package]] 1456 + name = "cxxbridge-flags" 1457 + version = "1.0.82" 1458 + source = "registry+https://github.com/rust-lang/crates.io-index" 1459 + checksum = "820a9a2af1669deeef27cb271f476ffd196a2c4b6731336011e0ba63e2c7cf71" 1460 + 1461 + [[package]] 1462 + name = "cxxbridge-macro" 1463 + version = "1.0.82" 1464 + source = "registry+https://github.com/rust-lang/crates.io-index" 1465 + checksum = "a08a6e2fcc370a089ad3b4aaf54db3b1b4cee38ddabce5896b33eb693275f470" 1466 + dependencies = [ 1467 + "proc-macro2", 1468 + "quote", 1469 + "syn", 1470 + ] 1471 + 1472 + [[package]] 1473 + name = "digest" 1474 + version = "0.10.6" 1475 + source = "registry+https://github.com/rust-lang/crates.io-index" 1476 + checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 1477 + dependencies = [ 1478 + "block-buffer", 1479 + "crypto-common", 1480 + "subtle", 1481 + ] 1482 + 1483 + [[package]] 1484 + name = "dirs" 1485 + version = "2.0.2" 1486 + source = "registry+https://github.com/rust-lang/crates.io-index" 1487 + checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3" 1488 + dependencies = [ 1489 + "cfg-if 0.1.10", 1490 + "dirs-sys", 1491 + ] 1492 + 1493 + [[package]] 1494 + name = "dirs" 1495 + version = "4.0.0" 1496 + source = "registry+https://github.com/rust-lang/crates.io-index" 1497 + checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 1498 + dependencies = [ 1499 + "dirs-sys", 1500 + ] 1501 + 1502 + [[package]] 1503 + name = "dirs-sys" 1504 + version = "0.3.7" 1505 + source = "registry+https://github.com/rust-lang/crates.io-index" 1506 + checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 1507 + dependencies = [ 1508 + "libc", 1509 + "redox_users", 1510 + "winapi", 1511 + ] 1512 + 1513 + [[package]] 1514 + name = "doc-comment" 1515 + version = "0.3.3" 1516 + source = "registry+https://github.com/rust-lang/crates.io-index" 1517 + checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 1518 + 1519 + [[package]] 1520 + name = "dunce" 1521 + version = "1.0.3" 1522 + source = "registry+https://github.com/rust-lang/crates.io-index" 1523 + checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c" 1524 + 1525 + [[package]] 1526 + name = "dyn-clone" 1527 + version = "1.0.9" 1528 + source = "registry+https://github.com/rust-lang/crates.io-index" 1529 + checksum = "4f94fa09c2aeea5b8839e414b7b841bf429fd25b9c522116ac97ee87856d88b2" 1530 + 1531 + [[package]] 1532 + name = "either" 1533 + version = "1.8.0" 1534 + source = "registry+https://github.com/rust-lang/crates.io-index" 1535 + checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" 1536 + 1537 + [[package]] 1538 + name = "encode_unicode" 1539 + version = "0.3.6" 1540 + source = "registry+https://github.com/rust-lang/crates.io-index" 1541 + checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 1542 + 1543 + [[package]] 1544 + name = "encoding_rs" 1545 + version = "0.8.31" 1546 + source = "registry+https://github.com/rust-lang/crates.io-index" 1547 + checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 1548 + dependencies = [ 1549 + "cfg-if 1.0.0", 1550 + ] 1551 + 1552 + [[package]] 1553 + name = "errno" 1554 + version = "0.2.8" 1555 + source = "registry+https://github.com/rust-lang/crates.io-index" 1556 + checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 1557 + dependencies = [ 1558 + "errno-dragonfly", 1559 + "libc", 1560 + "winapi", 1561 + ] 1562 + 1563 + [[package]] 1564 + name = "errno-dragonfly" 1565 + version = "0.1.2" 1566 + source = "registry+https://github.com/rust-lang/crates.io-index" 1567 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1568 + dependencies = [ 1569 + "cc", 1570 + "libc", 1571 + ] 1572 + 1573 + [[package]] 1574 + name = "event-listener" 1575 + version = "2.5.3" 1576 + source = "registry+https://github.com/rust-lang/crates.io-index" 1577 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1578 + 1579 + [[package]] 1580 + name = "fastrand" 1581 + version = "1.8.0" 1582 + source = "registry+https://github.com/rust-lang/crates.io-index" 1583 + checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 1584 + dependencies = [ 1585 + "instant", 1586 + ] 1587 + 1588 + [[package]] 1589 + name = "filetime" 1590 + version = "0.2.18" 1591 + source = "registry+https://github.com/rust-lang/crates.io-index" 1592 + checksum = "4b9663d381d07ae25dc88dbdf27df458faa83a9b25336bcac83d5e452b5fc9d3" 1593 + dependencies = [ 1594 + "cfg-if 1.0.0", 1595 + "libc", 1596 + "redox_syscall", 1597 + "windows-sys 0.42.0", 1598 + ] 1599 + 1600 + [[package]] 1601 + name = "flate2" 1602 + version = "1.0.25" 1603 + source = "registry+https://github.com/rust-lang/crates.io-index" 1604 + checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 1605 + dependencies = [ 1606 + "crc32fast", 1607 + "libz-sys", 1608 + "miniz_oxide 0.6.2", 1609 + ] 1610 + 1611 + [[package]] 1612 + name = "fnv" 1613 + version = "1.0.7" 1614 + source = "registry+https://github.com/rust-lang/crates.io-index" 1615 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1616 + 1617 + [[package]] 1618 + name = "foreign-types" 1619 + version = "0.3.2" 1620 + source = "registry+https://github.com/rust-lang/crates.io-index" 1621 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1622 + dependencies = [ 1623 + "foreign-types-shared", 1624 + ] 1625 + 1626 + [[package]] 1627 + name = "foreign-types-shared" 1628 + version = "0.1.1" 1629 + source = "registry+https://github.com/rust-lang/crates.io-index" 1630 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1631 + 1632 + [[package]] 1633 + name = "form_urlencoded" 1634 + version = "1.1.0" 1635 + source = "registry+https://github.com/rust-lang/crates.io-index" 1636 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1637 + dependencies = [ 1638 + "percent-encoding", 1639 + ] 1640 + 1641 + [[package]] 1642 + name = "fs-err" 1643 + version = "2.9.0" 1644 + source = "registry+https://github.com/rust-lang/crates.io-index" 1645 + checksum = "0845fa252299212f0389d64ba26f34fa32cfe41588355f21ed507c59a0f64541" 1646 + 1647 + [[package]] 1648 + name = "fsevent-sys" 1649 + version = "4.1.0" 1650 + source = "registry+https://github.com/rust-lang/crates.io-index" 1651 + checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" 1652 + dependencies = [ 1653 + "libc", 1654 + ] 1655 + 1656 + [[package]] 1657 + name = "futures" 1658 + version = "0.3.25" 1659 + source = "registry+https://github.com/rust-lang/crates.io-index" 1660 + checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" 1661 + dependencies = [ 1662 + "futures-channel", 1663 + "futures-core", 1664 + "futures-executor", 1665 + "futures-io", 1666 + "futures-sink", 1667 + "futures-task", 1668 + "futures-util", 1669 + ] 1670 + 1671 + [[package]] 1672 + name = "futures-channel" 1673 + version = "0.3.25" 1674 + source = "registry+https://github.com/rust-lang/crates.io-index" 1675 + checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" 1676 + dependencies = [ 1677 + "futures-core", 1678 + "futures-sink", 1679 + ] 1680 + 1681 + [[package]] 1682 + name = "futures-core" 1683 + version = "0.3.25" 1684 + source = "registry+https://github.com/rust-lang/crates.io-index" 1685 + checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" 1686 + 1687 + [[package]] 1688 + name = "futures-executor" 1689 + version = "0.3.25" 1690 + source = "registry+https://github.com/rust-lang/crates.io-index" 1691 + checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" 1692 + dependencies = [ 1693 + "futures-core", 1694 + "futures-task", 1695 + "futures-util", 1696 + ] 1697 + 1698 + [[package]] 1699 + name = "futures-io" 1700 + version = "0.3.25" 1701 + source = "registry+https://github.com/rust-lang/crates.io-index" 1702 + checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" 1703 + 1704 + [[package]] 1705 + name = "futures-macro" 1706 + version = "0.3.25" 1707 + source = "registry+https://github.com/rust-lang/crates.io-index" 1708 + checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" 1709 + dependencies = [ 1710 + "proc-macro2", 1711 + "quote", 1712 + "syn", 1713 + ] 1714 + 1715 + [[package]] 1716 + name = "futures-sink" 1717 + version = "0.3.25" 1718 + source = "registry+https://github.com/rust-lang/crates.io-index" 1719 + checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" 1720 + 1721 + [[package]] 1722 + name = "futures-task" 1723 + version = "0.3.25" 1724 + source = "registry+https://github.com/rust-lang/crates.io-index" 1725 + checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" 1726 + 1727 + [[package]] 1728 + name = "futures-util" 1729 + version = "0.3.25" 1730 + source = "registry+https://github.com/rust-lang/crates.io-index" 1731 + checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" 1732 + dependencies = [ 1733 + "futures-channel", 1734 + "futures-core", 1735 + "futures-io", 1736 + "futures-macro", 1737 + "futures-sink", 1738 + "futures-task", 1739 + "memchr", 1740 + "pin-project-lite", 1741 + "pin-utils", 1742 + "slab", 1743 + ] 1744 + 1745 + [[package]] 1746 + name = "generic-array" 1747 + version = "0.14.6" 1748 + source = "registry+https://github.com/rust-lang/crates.io-index" 1749 + checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 1750 + dependencies = [ 1751 + "typenum", 1752 + "version_check", 1753 + ] 1754 + 1755 + [[package]] 1756 + name = "getrandom" 1757 + version = "0.1.16" 1758 + source = "registry+https://github.com/rust-lang/crates.io-index" 1759 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1760 + dependencies = [ 1761 + "cfg-if 1.0.0", 1762 + "libc", 1763 + "wasi 0.9.0+wasi-snapshot-preview1", 1764 + ] 1765 + 1766 + [[package]] 1767 + name = "getrandom" 1768 + version = "0.2.8" 1769 + source = "registry+https://github.com/rust-lang/crates.io-index" 1770 + checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 1771 + dependencies = [ 1772 + "cfg-if 1.0.0", 1773 + "libc", 1774 + "wasi 0.11.0+wasi-snapshot-preview1", 1775 + ] 1776 + 1777 + [[package]] 1778 + name = "gimli" 1779 + version = "0.26.2" 1780 + source = "registry+https://github.com/rust-lang/crates.io-index" 1781 + checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" 1782 + 1783 + [[package]] 1784 + name = "git2" 1785 + version = "0.15.0" 1786 + source = "registry+https://github.com/rust-lang/crates.io-index" 1787 + checksum = "2994bee4a3a6a51eb90c218523be382fd7ea09b16380b9312e9dbe955ff7c7d1" 1788 + dependencies = [ 1789 + "bitflags", 1790 + "libc", 1791 + "libgit2-sys", 1792 + "log", 1793 + "openssl-probe", 1794 + "openssl-sys", 1795 + "url", 1796 + ] 1797 + 1798 + [[package]] 1799 + name = "gix-actor" 1800 + version = "0.19.0" 1801 + source = "registry+https://github.com/rust-lang/crates.io-index" 1802 + checksum = "dc22b0cdc52237667c301dd7cdc6ead8f8f73c9f824e9942c8ebd6b764f6c0bf" 1803 + dependencies = [ 1804 + "bstr 1.4.0", 1805 + "btoi", 1806 + "gix-date", 1807 + "itoa", 1808 + "nom 7.1.1", 1809 + "thiserror", 1810 + ] 1811 + 1812 + [[package]] 1813 + name = "gix-config" 1814 + version = "0.19.0" 1815 + source = "registry+https://github.com/rust-lang/crates.io-index" 1816 + checksum = "6aa7d7dd60256b7a0c0506a1d708ec92767c2662ee57b3301b538eaa3e064f8a" 1817 + dependencies = [ 1818 + "bstr 1.4.0", 1819 + "gix-config-value", 1820 + "gix-features", 1821 + "gix-glob", 1822 + "gix-path", 1823 + "gix-ref", 1824 + "gix-sec", 1825 + "memchr", 1826 + "nom 7.1.1", 1827 + "once_cell", 1828 + "smallvec", 1829 + "thiserror", 1830 + "unicode-bom", 1831 + ] 1832 + 1833 + [[package]] 1834 + name = "gix-config-value" 1835 + version = "0.10.1" 1836 + source = "registry+https://github.com/rust-lang/crates.io-index" 1837 + checksum = "693d4a4ba0531e46fe558459557a5b29fb86c3e4b2666c1c0861d93c7c678331" 1838 + dependencies = [ 1839 + "bitflags", 1840 + "bstr 1.4.0", 1841 + "gix-path", 1842 + "libc", 1843 + "thiserror", 1844 + ] 1845 + 1846 + [[package]] 1847 + name = "gix-date" 1848 + version = "0.4.3" 1849 + source = "registry+https://github.com/rust-lang/crates.io-index" 1850 + checksum = "b96271912ce39822501616f177dea7218784e6c63be90d5f36322ff3a722aae2" 1851 + dependencies = [ 1852 + "bstr 1.4.0", 1853 + "itoa", 1854 + "thiserror", 1855 + "time 0.3.17", 1856 + ] 1857 + 1858 + [[package]] 1859 + name = "gix-features" 1860 + version = "0.28.1" 1861 + source = "registry+https://github.com/rust-lang/crates.io-index" 1862 + checksum = "0b76f9a80f6dd7be66442ae86e1f534effad9546676a392acc95e269d0c21c22" 1863 + dependencies = [ 1864 + "gix-hash", 1865 + "libc", 1866 + "sha1_smol", 1867 + "walkdir", 1868 + ] 1869 + 1870 + [[package]] 1871 + name = "gix-glob" 1872 + version = "0.5.5" 1873 + source = "registry+https://github.com/rust-lang/crates.io-index" 1874 + checksum = "93e43efd776bc543f46f0fd0ca3d920c37af71a764a16f2aebd89765e9ff2993" 1875 + dependencies = [ 1876 + "bitflags", 1877 + "bstr 1.4.0", 1878 + ] 1879 + 1880 + [[package]] 1881 + name = "gix-hash" 1882 + version = "0.10.3" 1883 + source = "registry+https://github.com/rust-lang/crates.io-index" 1884 + checksum = "0c0c5a9f4d621d4f4ea046bb331df5c746ca735b8cae5b234cc2be70ee4dbef0" 1885 + dependencies = [ 1886 + "hex 0.4.3", 1887 + "thiserror", 1888 + ] 1889 + 1890 + [[package]] 1891 + name = "gix-lock" 1892 + version = "5.0.0" 1893 + source = "registry+https://github.com/rust-lang/crates.io-index" 1894 + checksum = "41b80172055c5d8017a48ddac5cc7a95421c00211047db0165c97853c4f05194" 1895 + dependencies = [ 1896 + "fastrand", 1897 + "gix-tempfile", 1898 + "thiserror", 1899 + ] 1900 + 1901 + [[package]] 1902 + name = "gix-object" 1903 + version = "0.28.0" 1904 + source = "registry+https://github.com/rust-lang/crates.io-index" 1905 + checksum = "8df068db9180ee935fbb70504848369e270bdcb576b05c0faa8b9fd3b86fc017" 1906 + dependencies = [ 1907 + "bstr 1.4.0", 1908 + "btoi", 1909 + "gix-actor", 1910 + "gix-features", 1911 + "gix-hash", 1912 + "gix-validate", 1913 + "hex 0.4.3", 1914 + "itoa", 1915 + "nom 7.1.1", 1916 + "smallvec", 1917 + "thiserror", 1918 + ] 1919 + 1920 + [[package]] 1921 + name = "gix-path" 1922 + version = "0.7.2" 1923 + source = "registry+https://github.com/rust-lang/crates.io-index" 1924 + checksum = "f6c104a66dec149cb8f7aaafc6ab797654cf82d67f050fd0cb7e7294e328354b" 1925 + dependencies = [ 1926 + "bstr 1.4.0", 1927 + "thiserror", 1928 + ] 1929 + 1930 + [[package]] 1931 + name = "gix-ref" 1932 + version = "0.27.1" 1933 + source = "registry+https://github.com/rust-lang/crates.io-index" 1934 + checksum = "0949e07aa4ed00a5936c2f4529013540708f367906f542cf19db814957e80449" 1935 + dependencies = [ 1936 + "gix-actor", 1937 + "gix-features", 1938 + "gix-hash", 1939 + "gix-lock", 1940 + "gix-object", 1941 + "gix-path", 1942 + "gix-tempfile", 1943 + "gix-validate", 1944 + "memmap2", 1945 + "nom 7.1.1", 1946 + "thiserror", 1947 + ] 1948 + 1949 + [[package]] 1950 + name = "gix-sec" 1951 + version = "0.6.2" 1952 + source = "registry+https://github.com/rust-lang/crates.io-index" 1953 + checksum = "e8ffa5bf0772f9b01de501c035b6b084cf9b8bb07dec41e3afc6a17336a65f47" 1954 + dependencies = [ 1955 + "bitflags", 1956 + "dirs 4.0.0", 1957 + "gix-path", 1958 + "libc", 1959 + "windows", 1960 + ] 1961 + 1962 + [[package]] 1963 + name = "gix-tempfile" 1964 + version = "5.0.1" 1965 + source = "registry+https://github.com/rust-lang/crates.io-index" 1966 + checksum = "aed73ef9642f779d609fd19acc332ac1597b978ee87ec11743a68eefaed65bfa" 1967 + dependencies = [ 1968 + "libc", 1969 + "once_cell", 1970 + "parking_lot", 1971 + "tempfile", 1972 + ] 1973 + 1974 + [[package]] 1975 + name = "gix-validate" 1976 + version = "0.7.3" 1977 + source = "registry+https://github.com/rust-lang/crates.io-index" 1978 + checksum = "b69ddb780ea1465255e66818d75b7098371c58dbc9560da4488a44b9f5c7e443" 1979 + dependencies = [ 1980 + "bstr 1.4.0", 1981 + "thiserror", 1982 + ] 1983 + 1984 + [[package]] 1985 + name = "glob" 1986 + version = "0.3.0" 1987 + source = "registry+https://github.com/rust-lang/crates.io-index" 1988 + checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 1989 + 1990 + [[package]] 1991 + name = "globset" 1992 + version = "0.4.9" 1993 + source = "registry+https://github.com/rust-lang/crates.io-index" 1994 + checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a" 1995 + dependencies = [ 1996 + "aho-corasick", 1997 + "bstr 0.2.17", 1998 + "fnv", 1999 + "log", 2000 + "regex", 2001 + ] 2002 + 2003 + [[package]] 2004 + name = "h2" 2005 + version = "0.3.15" 2006 + source = "registry+https://github.com/rust-lang/crates.io-index" 2007 + checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4" 2008 + dependencies = [ 2009 + "bytes", 2010 + "fnv", 2011 + "futures-core", 2012 + "futures-sink", 2013 + "futures-util", 2014 + "http", 2015 + "indexmap", 2016 + "slab", 2017 + "tokio", 2018 + "tokio-util", 2019 + "tracing", 2020 + ] 2021 + 2022 + [[package]] 2023 + name = "hashbrown" 2024 + version = "0.12.3" 2025 + source = "registry+https://github.com/rust-lang/crates.io-index" 2026 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2027 + dependencies = [ 2028 + "ahash", 2029 + ] 2030 + 2031 + [[package]] 2032 + name = "heck" 2033 + version = "0.4.0" 2034 + source = "registry+https://github.com/rust-lang/crates.io-index" 2035 + checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 2036 + 2037 + [[package]] 2038 + name = "hermit-abi" 2039 + version = "0.1.19" 2040 + source = "registry+https://github.com/rust-lang/crates.io-index" 2041 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 2042 + dependencies = [ 2043 + "libc", 2044 + ] 2045 + 2046 + [[package]] 2047 + name = "hermit-abi" 2048 + version = "0.2.6" 2049 + source = "registry+https://github.com/rust-lang/crates.io-index" 2050 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 2051 + dependencies = [ 2052 + "libc", 2053 + ] 2054 + 2055 + [[package]] 2056 + name = "hex" 2057 + version = "0.3.2" 2058 + source = "registry+https://github.com/rust-lang/crates.io-index" 2059 + checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" 2060 + 2061 + [[package]] 2062 + name = "hex" 2063 + version = "0.4.3" 2064 + source = "registry+https://github.com/rust-lang/crates.io-index" 2065 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2066 + 2067 + [[package]] 2068 + name = "hmac" 2069 + version = "0.12.1" 2070 + source = "registry+https://github.com/rust-lang/crates.io-index" 2071 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2072 + dependencies = [ 2073 + "digest", 2074 + ] 2075 + 2076 + [[package]] 2077 + name = "home" 2078 + version = "0.5.4" 2079 + source = "registry+https://github.com/rust-lang/crates.io-index" 2080 + checksum = "747309b4b440c06d57b0b25f2aee03ee9b5e5397d288c60e21fc709bb98a7408" 2081 + dependencies = [ 2082 + "winapi", 2083 + ] 2084 + 2085 + [[package]] 2086 + name = "http" 2087 + version = "0.2.8" 2088 + source = "registry+https://github.com/rust-lang/crates.io-index" 2089 + checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 2090 + dependencies = [ 2091 + "bytes", 2092 + "fnv", 2093 + "itoa", 2094 + ] 2095 + 2096 + [[package]] 2097 + name = "http-api-problem" 2098 + version = "0.51.0" 2099 + source = "registry+https://github.com/rust-lang/crates.io-index" 2100 + checksum = "6d43e8970113f6e4a9138e6cd57b20de3ed99585cab427eb99d27a440827dbe2" 2101 + dependencies = [ 2102 + "http", 2103 + "hyper", 2104 + "serde", 2105 + "serde_json", 2106 + ] 2107 + 2108 + [[package]] 2109 + name = "http-body" 2110 + version = "0.4.5" 2111 + source = "registry+https://github.com/rust-lang/crates.io-index" 2112 + checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 2113 + dependencies = [ 2114 + "bytes", 2115 + "http", 2116 + "pin-project-lite", 2117 + ] 2118 + 2119 + [[package]] 2120 + name = "http-range-header" 2121 + version = "0.3.0" 2122 + source = "registry+https://github.com/rust-lang/crates.io-index" 2123 + checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" 2124 + 2125 + [[package]] 2126 + name = "http-serde" 2127 + version = "1.1.2" 2128 + source = "registry+https://github.com/rust-lang/crates.io-index" 2129 + checksum = "0e272971f774ba29341db2f686255ff8a979365a26fb9e4277f6b6d9ec0cdd5e" 2130 + dependencies = [ 2131 + "http", 2132 + "serde", 2133 + ] 2134 + 2135 + [[package]] 2136 + name = "httparse" 2137 + version = "1.8.0" 2138 + source = "registry+https://github.com/rust-lang/crates.io-index" 2139 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2140 + 2141 + [[package]] 2142 + name = "httpdate" 2143 + version = "1.0.2" 2144 + source = "registry+https://github.com/rust-lang/crates.io-index" 2145 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 2146 + 2147 + [[package]] 2148 + name = "hyper" 2149 + version = "0.14.23" 2150 + source = "registry+https://github.com/rust-lang/crates.io-index" 2151 + checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c" 2152 + dependencies = [ 2153 + "bytes", 2154 + "futures-channel", 2155 + "futures-core", 2156 + "futures-util", 2157 + "h2", 2158 + "http", 2159 + "http-body", 2160 + "httparse", 2161 + "httpdate", 2162 + "itoa", 2163 + "pin-project-lite", 2164 + "socket2", 2165 + "tokio", 2166 + "tower-service", 2167 + "tracing", 2168 + "want", 2169 + ] 2170 + 2171 + [[package]] 2172 + name = "hyper-rustls" 2173 + version = "0.23.1" 2174 + source = "registry+https://github.com/rust-lang/crates.io-index" 2175 + checksum = "59df7c4e19c950e6e0e868dcc0a300b09a9b88e9ec55bd879ca819087a77355d" 2176 + dependencies = [ 2177 + "http", 2178 + "hyper", 2179 + "log", 2180 + "rustls", 2181 + "rustls-native-certs", 2182 + "tokio", 2183 + "tokio-rustls", 2184 + ] 2185 + 2186 + [[package]] 2187 + name = "iana-time-zone" 2188 + version = "0.1.53" 2189 + source = "registry+https://github.com/rust-lang/crates.io-index" 2190 + checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 2191 + dependencies = [ 2192 + "android_system_properties", 2193 + "core-foundation-sys", 2194 + "iana-time-zone-haiku", 2195 + "js-sys", 2196 + "wasm-bindgen", 2197 + "winapi", 2198 + ] 2199 + 2200 + [[package]] 2201 + name = "iana-time-zone-haiku" 2202 + version = "0.1.1" 2203 + source = "registry+https://github.com/rust-lang/crates.io-index" 2204 + checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 2205 + dependencies = [ 2206 + "cxx", 2207 + "cxx-build", 2208 + ] 2209 + 2210 + [[package]] 2211 + name = "idna" 2212 + version = "0.3.0" 2213 + source = "registry+https://github.com/rust-lang/crates.io-index" 2214 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 2215 + dependencies = [ 2216 + "unicode-bidi", 2217 + "unicode-normalization", 2218 + ] 2219 + 2220 + [[package]] 2221 + name = "ignore" 2222 + version = "0.4.18" 2223 + source = "registry+https://github.com/rust-lang/crates.io-index" 2224 + checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 2225 + dependencies = [ 2226 + "crossbeam-utils", 2227 + "globset", 2228 + "lazy_static", 2229 + "log", 2230 + "memchr", 2231 + "regex", 2232 + "same-file", 2233 + "thread_local", 2234 + "walkdir", 2235 + "winapi-util", 2236 + ] 2237 + 2238 + [[package]] 2239 + name = "ignore-files" 2240 + version = "1.2.0" 2241 + source = "registry+https://github.com/rust-lang/crates.io-index" 2242 + checksum = "bd03122ad769f36d57fdedd1e60bded885a8d277a38b0d1b5ea0e11ef642f593" 2243 + dependencies = [ 2244 + "futures", 2245 + "gix-config", 2246 + "ignore", 2247 + "miette 5.5.0", 2248 + "project-origins", 2249 + "thiserror", 2250 + "tokio", 2251 + "tracing", 2252 + ] 2253 + 2254 + [[package]] 2255 + name = "indexmap" 2256 + version = "1.9.2" 2257 + source = "registry+https://github.com/rust-lang/crates.io-index" 2258 + checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 2259 + dependencies = [ 2260 + "autocfg", 2261 + "hashbrown", 2262 + ] 2263 + 2264 + [[package]] 2265 + name = "indicatif" 2266 + version = "0.17.2" 2267 + source = "registry+https://github.com/rust-lang/crates.io-index" 2268 + checksum = "4295cbb7573c16d310e99e713cf9e75101eb190ab31fccd35f2d2691b4352b19" 2269 + dependencies = [ 2270 + "console", 2271 + "number_prefix", 2272 + "portable-atomic", 2273 + "unicode-width", 2274 + ] 2275 + 2276 + [[package]] 2277 + name = "inotify" 2278 + version = "0.9.6" 2279 + source = "registry+https://github.com/rust-lang/crates.io-index" 2280 + checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 2281 + dependencies = [ 2282 + "bitflags", 2283 + "inotify-sys", 2284 + "libc", 2285 + ] 2286 + 2287 + [[package]] 2288 + name = "inotify-sys" 2289 + version = "0.1.5" 2290 + source = "registry+https://github.com/rust-lang/crates.io-index" 2291 + checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 2292 + dependencies = [ 2293 + "libc", 2294 + ] 2295 + 2296 + [[package]] 2297 + name = "inquire" 2298 + version = "0.5.2" 2299 + source = "registry+https://github.com/rust-lang/crates.io-index" 2300 + checksum = "e6055ce38cac9b10ac819ed4a509d92ccbc60808152c19ff9121c98198964272" 2301 + dependencies = [ 2302 + "bitflags", 2303 + "crossterm", 2304 + "dyn-clone", 2305 + "lazy_static", 2306 + "newline-converter", 2307 + "thiserror", 2308 + "unicode-segmentation", 2309 + "unicode-width", 2310 + ] 2311 + 2312 + [[package]] 2313 + name = "instant" 2314 + version = "0.1.12" 2315 + source = "registry+https://github.com/rust-lang/crates.io-index" 2316 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2317 + dependencies = [ 2318 + "cfg-if 1.0.0", 2319 + ] 2320 + 2321 + [[package]] 2322 + name = "io-lifetimes" 2323 + version = "0.7.5" 2324 + source = "registry+https://github.com/rust-lang/crates.io-index" 2325 + checksum = "59ce5ef949d49ee85593fc4d3f3f95ad61657076395cbbce23e2121fc5542074" 2326 + 2327 + [[package]] 2328 + name = "io-lifetimes" 2329 + version = "1.0.2" 2330 + source = "registry+https://github.com/rust-lang/crates.io-index" 2331 + checksum = "e394faa0efb47f9f227f1cd89978f854542b318a6f64fa695489c9c993056656" 2332 + dependencies = [ 2333 + "libc", 2334 + "windows-sys 0.42.0", 2335 + ] 2336 + 2337 + [[package]] 2338 + name = "ipnet" 2339 + version = "2.5.1" 2340 + source = "registry+https://github.com/rust-lang/crates.io-index" 2341 + checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745" 2342 + 2343 + [[package]] 2344 + name = "is-terminal" 2345 + version = "0.4.0" 2346 + source = "registry+https://github.com/rust-lang/crates.io-index" 2347 + checksum = "aae5bc6e2eb41c9def29a3e0f1306382807764b9b53112030eff57435667352d" 2348 + dependencies = [ 2349 + "hermit-abi 0.2.6", 2350 + "io-lifetimes 1.0.2", 2351 + "rustix 0.36.3", 2352 + "windows-sys 0.42.0", 2353 + ] 2354 + 2355 + [[package]] 2356 + name = "is_ci" 2357 + version = "1.1.1" 2358 + source = "registry+https://github.com/rust-lang/crates.io-index" 2359 + checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb" 2360 + 2361 + [[package]] 2362 + name = "itertools" 2363 + version = "0.10.5" 2364 + source = "registry+https://github.com/rust-lang/crates.io-index" 2365 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2366 + dependencies = [ 2367 + "either", 2368 + ] 2369 + 2370 + [[package]] 2371 + name = "itoa" 2372 + version = "1.0.4" 2373 + source = "registry+https://github.com/rust-lang/crates.io-index" 2374 + checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc" 2375 + 2376 + [[package]] 2377 + name = "jobserver" 2378 + version = "0.1.25" 2379 + source = "registry+https://github.com/rust-lang/crates.io-index" 2380 + checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b" 2381 + dependencies = [ 2382 + "libc", 2383 + ] 2384 + 2385 + [[package]] 2386 + name = "js-sys" 2387 + version = "0.3.60" 2388 + source = "registry+https://github.com/rust-lang/crates.io-index" 2389 + checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 2390 + dependencies = [ 2391 + "wasm-bindgen", 2392 + ] 2393 + 2394 + [[package]] 2395 + name = "kqueue" 2396 + version = "1.0.7" 2397 + source = "registry+https://github.com/rust-lang/crates.io-index" 2398 + checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98" 2399 + dependencies = [ 2400 + "kqueue-sys", 2401 + "libc", 2402 + ] 2403 + 2404 + [[package]] 2405 + name = "kqueue-sys" 2406 + version = "1.0.3" 2407 + source = "registry+https://github.com/rust-lang/crates.io-index" 2408 + checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587" 2409 + dependencies = [ 2410 + "bitflags", 2411 + "libc", 2412 + ] 2413 + 2414 + [[package]] 2415 + name = "kstring" 2416 + version = "2.0.0" 2417 + source = "registry+https://github.com/rust-lang/crates.io-index" 2418 + checksum = "ec3066350882a1cd6d950d055997f379ac37fd39f81cd4d8ed186032eb3c5747" 2419 + dependencies = [ 2420 + "serde", 2421 + "static_assertions", 2422 + ] 2423 + 2424 + [[package]] 2425 + name = "lazy_static" 2426 + version = "1.4.0" 2427 + source = "registry+https://github.com/rust-lang/crates.io-index" 2428 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2429 + 2430 + [[package]] 2431 + name = "libc" 2432 + version = "0.2.137" 2433 + source = "registry+https://github.com/rust-lang/crates.io-index" 2434 + checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" 2435 + 2436 + [[package]] 2437 + name = "libgit2-sys" 2438 + version = "0.14.0+1.5.0" 2439 + source = "registry+https://github.com/rust-lang/crates.io-index" 2440 + checksum = "47a00859c70c8a4f7218e6d1cc32875c4b55f6799445b842b0d8ed5e4c3d959b" 2441 + dependencies = [ 2442 + "cc", 2443 + "libc", 2444 + "libssh2-sys", 2445 + "libz-sys", 2446 + "openssl-sys", 2447 + "pkg-config", 2448 + ] 2449 + 2450 + [[package]] 2451 + name = "libssh2-sys" 2452 + version = "0.2.23" 2453 + source = "registry+https://github.com/rust-lang/crates.io-index" 2454 + checksum = "b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca" 2455 + dependencies = [ 2456 + "cc", 2457 + "libc", 2458 + "libz-sys", 2459 + "openssl-sys", 2460 + "pkg-config", 2461 + "vcpkg", 2462 + ] 2463 + 2464 + [[package]] 2465 + name = "libz-sys" 2466 + version = "1.1.8" 2467 + source = "registry+https://github.com/rust-lang/crates.io-index" 2468 + checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" 2469 + dependencies = [ 2470 + "cc", 2471 + "libc", 2472 + "pkg-config", 2473 + "vcpkg", 2474 + ] 2475 + 2476 + [[package]] 2477 + name = "link-cplusplus" 2478 + version = "1.0.7" 2479 + source = "registry+https://github.com/rust-lang/crates.io-index" 2480 + checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" 2481 + dependencies = [ 2482 + "cc", 2483 + ] 2484 + 2485 + [[package]] 2486 + name = "linux-raw-sys" 2487 + version = "0.0.46" 2488 + source = "registry+https://github.com/rust-lang/crates.io-index" 2489 + checksum = "d4d2456c373231a208ad294c33dc5bff30051eafd954cd4caae83a712b12854d" 2490 + 2491 + [[package]] 2492 + name = "linux-raw-sys" 2493 + version = "0.1.3" 2494 + source = "registry+https://github.com/rust-lang/crates.io-index" 2495 + checksum = "8f9f08d8963a6c613f4b1a78f4f4a4dbfadf8e6545b2d72861731e4858b8b47f" 2496 + 2497 + [[package]] 2498 + name = "liquid" 2499 + version = "0.26.0" 2500 + source = "registry+https://github.com/rust-lang/crates.io-index" 2501 + checksum = "00f55b9db2305857de3b3ceaa0e75cb51a76aaec793875fe152e139cb8fed05c" 2502 + dependencies = [ 2503 + "doc-comment", 2504 + "liquid-core", 2505 + "liquid-derive", 2506 + "liquid-lib", 2507 + "serde", 2508 + ] 2509 + 2510 + [[package]] 2511 + name = "liquid-core" 2512 + version = "0.26.0" 2513 + source = "registry+https://github.com/rust-lang/crates.io-index" 2514 + checksum = "a93764837aeac37f14b74708cd88a44d82edfa9ad2b1bcd9a3b4d8802fdd9f98" 2515 + dependencies = [ 2516 + "anymap2", 2517 + "itertools", 2518 + "kstring", 2519 + "liquid-derive", 2520 + "num-traits", 2521 + "pest", 2522 + "pest_derive", 2523 + "regex", 2524 + "serde", 2525 + "time 0.3.17", 2526 + ] 2527 + 2528 + [[package]] 2529 + name = "liquid-derive" 2530 + version = "0.26.0" 2531 + source = "registry+https://github.com/rust-lang/crates.io-index" 2532 + checksum = "926454345f103e8433833077acdbfaa7c3e4b90788d585a8358f02f0b8f5a469" 2533 + dependencies = [ 2534 + "proc-macro2", 2535 + "proc-quote", 2536 + "syn", 2537 + ] 2538 + 2539 + [[package]] 2540 + name = "liquid-lib" 2541 + version = "0.26.0" 2542 + source = "registry+https://github.com/rust-lang/crates.io-index" 2543 + checksum = "fd06ca30ae026d26ee7fa8596f9590959e2d3726bc5a0f16a21ac4f050ec83c0" 2544 + dependencies = [ 2545 + "itertools", 2546 + "liquid-core", 2547 + "once_cell", 2548 + "percent-encoding", 2549 + "regex", 2550 + "time 0.3.17", 2551 + "unicode-segmentation", 2552 + ] 2553 + 2554 + [[package]] 2555 + name = "lock_api" 2556 + version = "0.4.9" 2557 + source = "registry+https://github.com/rust-lang/crates.io-index" 2558 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 2559 + dependencies = [ 2560 + "autocfg", 2561 + "scopeguard", 2562 + ] 2563 + 2564 + [[package]] 2565 + name = "log" 2566 + version = "0.4.17" 2567 + source = "registry+https://github.com/rust-lang/crates.io-index" 2568 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 2569 + dependencies = [ 2570 + "cfg-if 1.0.0", 2571 + ] 2572 + 2573 + [[package]] 2574 + name = "matchers" 2575 + version = "0.1.0" 2576 + source = "registry+https://github.com/rust-lang/crates.io-index" 2577 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 2578 + dependencies = [ 2579 + "regex-automata", 2580 + ] 2581 + 2582 + [[package]] 2583 + name = "matchit" 2584 + version = "0.5.0" 2585 + source = "registry+https://github.com/rust-lang/crates.io-index" 2586 + checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb" 2587 + 2588 + [[package]] 2589 + name = "md-5" 2590 + version = "0.10.5" 2591 + source = "registry+https://github.com/rust-lang/crates.io-index" 2592 + checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" 2593 + dependencies = [ 2594 + "digest", 2595 + ] 2596 + 2597 + [[package]] 2598 + name = "memchr" 2599 + version = "2.5.0" 2600 + source = "registry+https://github.com/rust-lang/crates.io-index" 2601 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 2602 + 2603 + [[package]] 2604 + name = "memmap2" 2605 + version = "0.5.8" 2606 + source = "registry+https://github.com/rust-lang/crates.io-index" 2607 + checksum = "4b182332558b18d807c4ce1ca8ca983b34c3ee32765e47b3f0f69b90355cc1dc" 2608 + dependencies = [ 2609 + "libc", 2610 + ] 2611 + 2612 + [[package]] 2613 + name = "memoffset" 2614 + version = "0.7.1" 2615 + source = "registry+https://github.com/rust-lang/crates.io-index" 2616 + checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 2617 + dependencies = [ 2618 + "autocfg", 2619 + ] 2620 + 2621 + [[package]] 2622 + name = "miette" 2623 + version = "4.7.1" 2624 + source = "registry+https://github.com/rust-lang/crates.io-index" 2625 + checksum = "1c90329e44f9208b55f45711f9558cec15d7ef8295cc65ecd6d4188ae8edc58c" 2626 + dependencies = [ 2627 + "atty", 2628 + "backtrace", 2629 + "miette-derive 4.7.1", 2630 + "once_cell", 2631 + "owo-colors", 2632 + "supports-color", 2633 + "supports-hyperlinks", 2634 + "supports-unicode", 2635 + "terminal_size 0.1.17", 2636 + "textwrap", 2637 + "thiserror", 2638 + "unicode-width", 2639 + ] 2640 + 2641 + [[package]] 2642 + name = "miette" 2643 + version = "5.5.0" 2644 + source = "registry+https://github.com/rust-lang/crates.io-index" 2645 + checksum = "4afd9b301defa984bbdbe112b4763e093ed191750a0d914a78c1106b2d0fe703" 2646 + dependencies = [ 2647 + "miette-derive 5.5.0", 2648 + "once_cell", 2649 + "thiserror", 2650 + "unicode-width", 2651 + ] 2652 + 2653 + [[package]] 2654 + name = "miette-derive" 2655 + version = "4.7.1" 2656 + source = "registry+https://github.com/rust-lang/crates.io-index" 2657 + checksum = "6b5bc45b761bcf1b5e6e6c4128cd93b84c218721a8d9b894aa0aff4ed180174c" 2658 + dependencies = [ 2659 + "proc-macro2", 2660 + "quote", 2661 + "syn", 2662 + ] 2663 + 2664 + [[package]] 2665 + name = "miette-derive" 2666 + version = "5.5.0" 2667 + source = "registry+https://github.com/rust-lang/crates.io-index" 2668 + checksum = "97c2401ab7ac5282ca5c8b518a87635b1a93762b0b90b9990c509888eeccba29" 2669 + dependencies = [ 2670 + "proc-macro2", 2671 + "quote", 2672 + "syn", 2673 + ] 2674 + 2675 + [[package]] 2676 + name = "mime" 2677 + version = "0.3.16" 2678 + source = "registry+https://github.com/rust-lang/crates.io-index" 2679 + checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 2680 + 2681 + [[package]] 2682 + name = "minimal-lexical" 2683 + version = "0.2.1" 2684 + source = "registry+https://github.com/rust-lang/crates.io-index" 2685 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2686 + 2687 + [[package]] 2688 + name = "miniz_oxide" 2689 + version = "0.5.4" 2690 + source = "registry+https://github.com/rust-lang/crates.io-index" 2691 + checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" 2692 + dependencies = [ 2693 + "adler", 2694 + ] 2695 + 2696 + [[package]] 2697 + name = "miniz_oxide" 2698 + version = "0.6.2" 2699 + source = "registry+https://github.com/rust-lang/crates.io-index" 2700 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 2701 + dependencies = [ 2702 + "adler", 2703 + ] 2704 + 2705 + [[package]] 2706 + name = "mio" 2707 + version = "0.8.5" 2708 + source = "registry+https://github.com/rust-lang/crates.io-index" 2709 + checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" 2710 + dependencies = [ 2711 + "libc", 2712 + "log", 2713 + "wasi 0.11.0+wasi-snapshot-preview1", 2714 + "windows-sys 0.42.0", 2715 + ] 2716 + 2717 + [[package]] 2718 + name = "miow" 2719 + version = "0.5.0" 2720 + source = "registry+https://github.com/rust-lang/crates.io-index" 2721 + checksum = "52ffbca2f655e33c08be35d87278e5b18b89550a37dbd598c20db92f6a471123" 2722 + dependencies = [ 2723 + "windows-sys 0.42.0", 2724 + ] 2725 + 2726 + [[package]] 2727 + name = "newline-converter" 2728 + version = "0.2.2" 2729 + source = "registry+https://github.com/rust-lang/crates.io-index" 2730 + checksum = "1f71d09d5c87634207f894c6b31b6a2b2c64ea3bdcf71bd5599fdbbe1600c00f" 2731 + dependencies = [ 2732 + "unicode-segmentation", 2733 + ] 2734 + 2735 + [[package]] 2736 + name = "nix" 2737 + version = "0.26.2" 2738 + source = "registry+https://github.com/rust-lang/crates.io-index" 2739 + checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 2740 + dependencies = [ 2741 + "bitflags", 2742 + "cfg-if 1.0.0", 2743 + "libc", 2744 + "memoffset", 2745 + "pin-utils", 2746 + "static_assertions", 2747 + ] 2748 + 2749 + [[package]] 2750 + name = "nom" 2751 + version = "5.1.2" 2752 + source = "registry+https://github.com/rust-lang/crates.io-index" 2753 + checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af" 2754 + dependencies = [ 2755 + "memchr", 2756 + "version_check", 2757 + ] 2758 + 2759 + [[package]] 2760 + name = "nom" 2761 + version = "7.1.1" 2762 + source = "registry+https://github.com/rust-lang/crates.io-index" 2763 + checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36" 2764 + dependencies = [ 2765 + "memchr", 2766 + "minimal-lexical", 2767 + ] 2768 + 2769 + [[package]] 2770 + name = "normalize-line-endings" 2771 + version = "0.3.0" 2772 + source = "registry+https://github.com/rust-lang/crates.io-index" 2773 + checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" 2774 + 2775 + [[package]] 2776 + name = "normalize-path" 2777 + version = "0.2.0" 2778 + source = "registry+https://github.com/rust-lang/crates.io-index" 2779 + checksum = "cf22e319b2e3cb517350572e3b70c6822e0a520abfb5c78f690e829a73e8d9f2" 2780 + 2781 + [[package]] 2782 + name = "notify" 2783 + version = "5.0.0" 2784 + source = "registry+https://github.com/rust-lang/crates.io-index" 2785 + checksum = "ed2c66da08abae1c024c01d635253e402341b4060a12e99b31c7594063bf490a" 2786 + dependencies = [ 2787 + "bitflags", 2788 + "crossbeam-channel", 2789 + "filetime", 2790 + "fsevent-sys", 2791 + "inotify", 2792 + "kqueue", 2793 + "libc", 2794 + "mio", 2795 + "walkdir", 2796 + "winapi", 2797 + ] 2798 + 2799 + [[package]] 2800 + name = "nu-ansi-term" 2801 + version = "0.46.0" 2802 + source = "registry+https://github.com/rust-lang/crates.io-index" 2803 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 2804 + dependencies = [ 2805 + "overload", 2806 + "winapi", 2807 + ] 2808 + 2809 + [[package]] 2810 + name = "num-integer" 2811 + version = "0.1.45" 2812 + source = "registry+https://github.com/rust-lang/crates.io-index" 2813 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2814 + dependencies = [ 2815 + "autocfg", 2816 + "num-traits", 2817 + ] 2818 + 2819 + [[package]] 2820 + name = "num-traits" 2821 + version = "0.2.15" 2822 + source = "registry+https://github.com/rust-lang/crates.io-index" 2823 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 2824 + dependencies = [ 2825 + "autocfg", 2826 + ] 2827 + 2828 + [[package]] 2829 + name = "num_cpus" 2830 + version = "1.14.0" 2831 + source = "registry+https://github.com/rust-lang/crates.io-index" 2832 + checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5" 2833 + dependencies = [ 2834 + "hermit-abi 0.1.19", 2835 + "libc", 2836 + ] 2837 + 2838 + [[package]] 2839 + name = "num_threads" 2840 + version = "0.1.6" 2841 + source = "registry+https://github.com/rust-lang/crates.io-index" 2842 + checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 2843 + dependencies = [ 2844 + "libc", 2845 + ] 2846 + 2847 + [[package]] 2848 + name = "number_prefix" 2849 + version = "0.4.0" 2850 + source = "registry+https://github.com/rust-lang/crates.io-index" 2851 + checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 2852 + 2853 + [[package]] 2854 + name = "object" 2855 + version = "0.28.4" 2856 + source = "registry+https://github.com/rust-lang/crates.io-index" 2857 + checksum = "e42c982f2d955fac81dd7e1d0e1426a7d702acd9c98d19ab01083a6a0328c424" 2858 + dependencies = [ 2859 + "flate2", 2860 + "memchr", 2861 + ] 2862 + 2863 + [[package]] 2864 + name = "object" 2865 + version = "0.29.0" 2866 + source = "registry+https://github.com/rust-lang/crates.io-index" 2867 + checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" 2868 + dependencies = [ 2869 + "memchr", 2870 + ] 2871 + 2872 + [[package]] 2873 + name = "once_cell" 2874 + version = "1.16.0" 2875 + source = "registry+https://github.com/rust-lang/crates.io-index" 2876 + checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" 2877 + 2878 + [[package]] 2879 + name = "opaque-debug" 2880 + version = "0.3.0" 2881 + source = "registry+https://github.com/rust-lang/crates.io-index" 2882 + checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 2883 + 2884 + [[package]] 2885 + name = "openssl" 2886 + version = "0.10.44" 2887 + source = "registry+https://github.com/rust-lang/crates.io-index" 2888 + checksum = "29d971fd5722fec23977260f6e81aa67d2f22cadbdc2aa049f1022d9a3be1566" 2889 + dependencies = [ 2890 + "bitflags", 2891 + "cfg-if 1.0.0", 2892 + "foreign-types", 2893 + "libc", 2894 + "once_cell", 2895 + "openssl-macros", 2896 + "openssl-sys", 2897 + ] 2898 + 2899 + [[package]] 2900 + name = "openssl-macros" 2901 + version = "0.1.0" 2902 + source = "registry+https://github.com/rust-lang/crates.io-index" 2903 + checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 2904 + dependencies = [ 2905 + "proc-macro2", 2906 + "quote", 2907 + "syn", 2908 + ] 2909 + 2910 + [[package]] 2911 + name = "openssl-probe" 2912 + version = "0.1.5" 2913 + source = "registry+https://github.com/rust-lang/crates.io-index" 2914 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 2915 + 2916 + [[package]] 2917 + name = "openssl-sys" 2918 + version = "0.9.79" 2919 + source = "registry+https://github.com/rust-lang/crates.io-index" 2920 + checksum = "5454462c0eced1e97f2ec09036abc8da362e66802f66fd20f86854d9d8cbcbc4" 2921 + dependencies = [ 2922 + "autocfg", 2923 + "cc", 2924 + "libc", 2925 + "pkg-config", 2926 + "vcpkg", 2927 + ] 2928 + 2929 + [[package]] 2930 + name = "opentelemetry" 2931 + version = "0.17.0" 2932 + source = "registry+https://github.com/rust-lang/crates.io-index" 2933 + checksum = "6105e89802af13fdf48c49d7646d3b533a70e536d818aae7e78ba0433d01acb8" 2934 + dependencies = [ 2935 + "async-trait", 2936 + "crossbeam-channel", 2937 + "futures-channel", 2938 + "futures-executor", 2939 + "futures-util", 2940 + "js-sys", 2941 + "lazy_static", 2942 + "percent-encoding", 2943 + "pin-project", 2944 + "rand 0.8.5", 2945 + "thiserror", 2946 + ] 2947 + 2948 + [[package]] 2949 + name = "opentelemetry-aws" 2950 + version = "0.5.0" 2951 + source = "registry+https://github.com/rust-lang/crates.io-index" 2952 + checksum = "72f80ed72cb487ccee5de9e6342e7240ce233a506071e0d07fd535981688342e" 2953 + dependencies = [ 2954 + "lazy_static", 2955 + "opentelemetry", 2956 + ] 2957 + 2958 + [[package]] 2959 + name = "os_pipe" 2960 + version = "1.1.2" 2961 + source = "registry+https://github.com/rust-lang/crates.io-index" 2962 + checksum = "c6a252f1f8c11e84b3ab59d7a488e48e4478a93937e027076638c49536204639" 2963 + dependencies = [ 2964 + "libc", 2965 + "windows-sys 0.42.0", 2966 + ] 2967 + 2968 + [[package]] 2969 + name = "os_str_bytes" 2970 + version = "6.4.1" 2971 + source = "registry+https://github.com/rust-lang/crates.io-index" 2972 + checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 2973 + 2974 + [[package]] 2975 + name = "outref" 2976 + version = "0.1.0" 2977 + source = "registry+https://github.com/rust-lang/crates.io-index" 2978 + checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4" 2979 + 2980 + [[package]] 2981 + name = "overload" 2982 + version = "0.1.1" 2983 + source = "registry+https://github.com/rust-lang/crates.io-index" 2984 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 2985 + 2986 + [[package]] 2987 + name = "owo-colors" 2988 + version = "3.5.0" 2989 + source = "registry+https://github.com/rust-lang/crates.io-index" 2990 + checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" 2991 + 2992 + [[package]] 2993 + name = "parking_lot" 2994 + version = "0.12.1" 2995 + source = "registry+https://github.com/rust-lang/crates.io-index" 2996 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2997 + dependencies = [ 2998 + "lock_api", 2999 + "parking_lot_core", 3000 + ] 3001 + 3002 + [[package]] 3003 + name = "parking_lot_core" 3004 + version = "0.9.4" 3005 + source = "registry+https://github.com/rust-lang/crates.io-index" 3006 + checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0" 3007 + dependencies = [ 3008 + "cfg-if 1.0.0", 3009 + "libc", 3010 + "redox_syscall", 3011 + "smallvec", 3012 + "windows-sys 0.42.0", 3013 + ] 3014 + 3015 + [[package]] 3016 + name = "password-hash" 3017 + version = "0.4.2" 3018 + source = "registry+https://github.com/rust-lang/crates.io-index" 3019 + checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 3020 + dependencies = [ 3021 + "base64ct", 3022 + "rand_core 0.6.4", 3023 + "subtle", 3024 + ] 3025 + 3026 + [[package]] 3027 + name = "path-slash" 3028 + version = "0.2.1" 3029 + source = "registry+https://github.com/rust-lang/crates.io-index" 3030 + checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42" 3031 + 3032 + [[package]] 3033 + name = "pbkdf2" 3034 + version = "0.11.0" 3035 + source = "registry+https://github.com/rust-lang/crates.io-index" 3036 + checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 3037 + dependencies = [ 3038 + "digest", 3039 + "hmac", 3040 + "password-hash", 3041 + "sha2", 3042 + ] 3043 + 3044 + [[package]] 3045 + name = "percent-encoding" 3046 + version = "2.2.0" 3047 + source = "registry+https://github.com/rust-lang/crates.io-index" 3048 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 3049 + 3050 + [[package]] 3051 + name = "pest" 3052 + version = "2.5.0" 3053 + source = "registry+https://github.com/rust-lang/crates.io-index" 3054 + checksum = "5f400b0f7905bf702f9f3dc3df5a121b16c54e9e8012c082905fdf09a931861a" 3055 + dependencies = [ 3056 + "thiserror", 3057 + "ucd-trie", 3058 + ] 3059 + 3060 + [[package]] 3061 + name = "pest_derive" 3062 + version = "2.5.0" 3063 + source = "registry+https://github.com/rust-lang/crates.io-index" 3064 + checksum = "423c2ba011d6e27b02b482a3707c773d19aec65cc024637aec44e19652e66f63" 3065 + dependencies = [ 3066 + "pest", 3067 + "pest_generator", 3068 + ] 3069 + 3070 + [[package]] 3071 + name = "pest_generator" 3072 + version = "2.5.0" 3073 + source = "registry+https://github.com/rust-lang/crates.io-index" 3074 + checksum = "3e64e6c2c85031c02fdbd9e5c72845445ca0a724d419aa0bc068ac620c9935c1" 3075 + dependencies = [ 3076 + "pest", 3077 + "pest_meta", 3078 + "proc-macro2", 3079 + "quote", 3080 + "syn", 3081 + ] 3082 + 3083 + [[package]] 3084 + name = "pest_meta" 3085 + version = "2.5.0" 3086 + source = "registry+https://github.com/rust-lang/crates.io-index" 3087 + checksum = "57959b91f0a133f89a68be874a5c88ed689c19cd729ecdb5d762ebf16c64d662" 3088 + dependencies = [ 3089 + "once_cell", 3090 + "pest", 3091 + "sha1", 3092 + ] 3093 + 3094 + [[package]] 3095 + name = "phf" 3096 + version = "0.8.0" 3097 + source = "registry+https://github.com/rust-lang/crates.io-index" 3098 + checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 3099 + dependencies = [ 3100 + "phf_shared", 3101 + ] 3102 + 3103 + [[package]] 3104 + name = "phf_codegen" 3105 + version = "0.8.0" 3106 + source = "registry+https://github.com/rust-lang/crates.io-index" 3107 + checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 3108 + dependencies = [ 3109 + "phf_generator", 3110 + "phf_shared", 3111 + ] 3112 + 3113 + [[package]] 3114 + name = "phf_generator" 3115 + version = "0.8.0" 3116 + source = "registry+https://github.com/rust-lang/crates.io-index" 3117 + checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 3118 + dependencies = [ 3119 + "phf_shared", 3120 + "rand 0.7.3", 3121 + ] 3122 + 3123 + [[package]] 3124 + name = "phf_shared" 3125 + version = "0.8.0" 3126 + source = "registry+https://github.com/rust-lang/crates.io-index" 3127 + checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 3128 + dependencies = [ 3129 + "siphasher", 3130 + ] 3131 + 3132 + [[package]] 3133 + name = "pin-project" 3134 + version = "1.0.12" 3135 + source = "registry+https://github.com/rust-lang/crates.io-index" 3136 + checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 3137 + dependencies = [ 3138 + "pin-project-internal", 3139 + ] 3140 + 3141 + [[package]] 3142 + name = "pin-project-internal" 3143 + version = "1.0.12" 3144 + source = "registry+https://github.com/rust-lang/crates.io-index" 3145 + checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 3146 + dependencies = [ 3147 + "proc-macro2", 3148 + "quote", 3149 + "syn", 3150 + ] 3151 + 3152 + [[package]] 3153 + name = "pin-project-lite" 3154 + version = "0.2.9" 3155 + source = "registry+https://github.com/rust-lang/crates.io-index" 3156 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 3157 + 3158 + [[package]] 3159 + name = "pin-utils" 3160 + version = "0.1.0" 3161 + source = "registry+https://github.com/rust-lang/crates.io-index" 3162 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3163 + 3164 + [[package]] 3165 + name = "pkg-config" 3166 + version = "0.3.26" 3167 + source = "registry+https://github.com/rust-lang/crates.io-index" 3168 + checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 3169 + 3170 + [[package]] 3171 + name = "portable-atomic" 3172 + version = "0.3.15" 3173 + source = "registry+https://github.com/rust-lang/crates.io-index" 3174 + checksum = "15eb2c6e362923af47e13c23ca5afb859e83d54452c55b0b9ac763b8f7c1ac16" 3175 + 3176 + [[package]] 3177 + name = "ppv-lite86" 3178 + version = "0.2.17" 3179 + source = "registry+https://github.com/rust-lang/crates.io-index" 3180 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 3181 + 3182 + [[package]] 3183 + name = "proc-macro-error" 3184 + version = "1.0.4" 3185 + source = "registry+https://github.com/rust-lang/crates.io-index" 3186 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3187 + dependencies = [ 3188 + "proc-macro-error-attr", 3189 + "proc-macro2", 3190 + "quote", 3191 + "syn", 3192 + "version_check", 3193 + ] 3194 + 3195 + [[package]] 3196 + name = "proc-macro-error-attr" 3197 + version = "1.0.4" 3198 + source = "registry+https://github.com/rust-lang/crates.io-index" 3199 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3200 + dependencies = [ 3201 + "proc-macro2", 3202 + "quote", 3203 + "version_check", 3204 + ] 3205 + 3206 + [[package]] 3207 + name = "proc-macro-hack" 3208 + version = "0.5.19" 3209 + source = "registry+https://github.com/rust-lang/crates.io-index" 3210 + checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 3211 + 3212 + [[package]] 3213 + name = "proc-macro2" 3214 + version = "1.0.47" 3215 + source = "registry+https://github.com/rust-lang/crates.io-index" 3216 + checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" 3217 + dependencies = [ 3218 + "unicode-ident", 3219 + ] 3220 + 3221 + [[package]] 3222 + name = "proc-quote" 3223 + version = "0.4.0" 3224 + source = "registry+https://github.com/rust-lang/crates.io-index" 3225 + checksum = "5e84ab161de78c915302ca325a19bee6df272800e2ae1a43fe3ef430bab2a100" 3226 + dependencies = [ 3227 + "proc-macro-hack", 3228 + "proc-macro2", 3229 + "proc-quote-impl", 3230 + "quote", 3231 + "syn", 3232 + ] 3233 + 3234 + [[package]] 3235 + name = "proc-quote-impl" 3236 + version = "0.3.2" 3237 + source = "registry+https://github.com/rust-lang/crates.io-index" 3238 + checksum = "7fb3ec628b063cdbcf316e06a8b8c1a541d28fa6c0a8eacd2bfb2b7f49e88aa0" 3239 + dependencies = [ 3240 + "proc-macro-hack", 3241 + "proc-macro2", 3242 + "quote", 3243 + ] 3244 + 3245 + [[package]] 3246 + name = "project-origins" 3247 + version = "1.2.0" 3248 + source = "registry+https://github.com/rust-lang/crates.io-index" 3249 + checksum = "629e0d57f265ca8238345cb616eea8847b8ecb86b5d97d155be2c8963a314379" 3250 + dependencies = [ 3251 + "futures", 3252 + "tokio", 3253 + "tokio-stream", 3254 + ] 3255 + 3256 + [[package]] 3257 + name = "query_map" 3258 + version = "0.5.0" 3259 + source = "registry+https://github.com/rust-lang/crates.io-index" 3260 + checksum = "fe3212d819cbdcce67f786cdaf3fe0c2e9d09a6dcd9c9367a1bd344135b8c809" 3261 + dependencies = [ 3262 + "form_urlencoded", 3263 + "serde", 3264 + "serde_derive", 3265 + ] 3266 + 3267 + [[package]] 3268 + name = "quote" 3269 + version = "1.0.21" 3270 + source = "registry+https://github.com/rust-lang/crates.io-index" 3271 + checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 3272 + dependencies = [ 3273 + "proc-macro2", 3274 + ] 3275 + 3276 + [[package]] 3277 + name = "rand" 3278 + version = "0.7.3" 3279 + source = "registry+https://github.com/rust-lang/crates.io-index" 3280 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 3281 + dependencies = [ 3282 + "getrandom 0.1.16", 3283 + "libc", 3284 + "rand_chacha 0.2.2", 3285 + "rand_core 0.5.1", 3286 + "rand_hc", 3287 + "rand_pcg", 3288 + ] 3289 + 3290 + [[package]] 3291 + name = "rand" 3292 + version = "0.8.5" 3293 + source = "registry+https://github.com/rust-lang/crates.io-index" 3294 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3295 + dependencies = [ 3296 + "libc", 3297 + "rand_chacha 0.3.1", 3298 + "rand_core 0.6.4", 3299 + ] 3300 + 3301 + [[package]] 3302 + name = "rand_chacha" 3303 + version = "0.2.2" 3304 + source = "registry+https://github.com/rust-lang/crates.io-index" 3305 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 3306 + dependencies = [ 3307 + "ppv-lite86", 3308 + "rand_core 0.5.1", 3309 + ] 3310 + 3311 + [[package]] 3312 + name = "rand_chacha" 3313 + version = "0.3.1" 3314 + source = "registry+https://github.com/rust-lang/crates.io-index" 3315 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3316 + dependencies = [ 3317 + "ppv-lite86", 3318 + "rand_core 0.6.4", 3319 + ] 3320 + 3321 + [[package]] 3322 + name = "rand_core" 3323 + version = "0.5.1" 3324 + source = "registry+https://github.com/rust-lang/crates.io-index" 3325 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 3326 + dependencies = [ 3327 + "getrandom 0.1.16", 3328 + ] 3329 + 3330 + [[package]] 3331 + name = "rand_core" 3332 + version = "0.6.4" 3333 + source = "registry+https://github.com/rust-lang/crates.io-index" 3334 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3335 + dependencies = [ 3336 + "getrandom 0.2.8", 3337 + ] 3338 + 3339 + [[package]] 3340 + name = "rand_hc" 3341 + version = "0.2.0" 3342 + source = "registry+https://github.com/rust-lang/crates.io-index" 3343 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 3344 + dependencies = [ 3345 + "rand_core 0.5.1", 3346 + ] 3347 + 3348 + [[package]] 3349 + name = "rand_pcg" 3350 + version = "0.2.1" 3351 + source = "registry+https://github.com/rust-lang/crates.io-index" 3352 + checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 3353 + dependencies = [ 3354 + "rand_core 0.5.1", 3355 + ] 3356 + 3357 + [[package]] 3358 + name = "rayon" 3359 + version = "1.6.0" 3360 + source = "registry+https://github.com/rust-lang/crates.io-index" 3361 + checksum = "1e060280438193c554f654141c9ea9417886713b7acd75974c85b18a69a88e0b" 3362 + dependencies = [ 3363 + "crossbeam-deque", 3364 + "either", 3365 + "rayon-core", 3366 + ] 3367 + 3368 + [[package]] 3369 + name = "rayon-core" 3370 + version = "1.10.1" 3371 + source = "registry+https://github.com/rust-lang/crates.io-index" 3372 + checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3" 3373 + dependencies = [ 3374 + "crossbeam-channel", 3375 + "crossbeam-deque", 3376 + "crossbeam-utils", 3377 + "num_cpus", 3378 + ] 3379 + 3380 + [[package]] 3381 + name = "redox_syscall" 3382 + version = "0.2.16" 3383 + source = "registry+https://github.com/rust-lang/crates.io-index" 3384 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3385 + dependencies = [ 3386 + "bitflags", 3387 + ] 3388 + 3389 + [[package]] 3390 + name = "redox_users" 3391 + version = "0.4.3" 3392 + source = "registry+https://github.com/rust-lang/crates.io-index" 3393 + checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 3394 + dependencies = [ 3395 + "getrandom 0.2.8", 3396 + "redox_syscall", 3397 + "thiserror", 3398 + ] 3399 + 3400 + [[package]] 3401 + name = "regex" 3402 + version = "1.7.0" 3403 + source = "registry+https://github.com/rust-lang/crates.io-index" 3404 + checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" 3405 + dependencies = [ 3406 + "aho-corasick", 3407 + "memchr", 3408 + "regex-syntax", 3409 + ] 3410 + 3411 + [[package]] 3412 + name = "regex-automata" 3413 + version = "0.1.10" 3414 + source = "registry+https://github.com/rust-lang/crates.io-index" 3415 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 3416 + dependencies = [ 3417 + "regex-syntax", 3418 + ] 3419 + 3420 + [[package]] 3421 + name = "regex-syntax" 3422 + version = "0.6.28" 3423 + source = "registry+https://github.com/rust-lang/crates.io-index" 3424 + checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 3425 + 3426 + [[package]] 3427 + name = "remove_dir_all" 3428 + version = "0.7.0" 3429 + source = "registry+https://github.com/rust-lang/crates.io-index" 3430 + checksum = "882f368737489ea543bc5c340e6f3d34a28c39980bd9a979e47322b26f60ac40" 3431 + dependencies = [ 3432 + "libc", 3433 + "log", 3434 + "num_cpus", 3435 + "rayon", 3436 + "winapi", 3437 + ] 3438 + 3439 + [[package]] 3440 + name = "reqwest" 3441 + version = "0.11.13" 3442 + source = "registry+https://github.com/rust-lang/crates.io-index" 3443 + checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c" 3444 + dependencies = [ 3445 + "base64", 3446 + "bytes", 3447 + "encoding_rs", 3448 + "futures-core", 3449 + "futures-util", 3450 + "h2", 3451 + "http", 3452 + "http-body", 3453 + "hyper", 3454 + "hyper-rustls", 3455 + "ipnet", 3456 + "js-sys", 3457 + "log", 3458 + "mime", 3459 + "once_cell", 3460 + "percent-encoding", 3461 + "pin-project-lite", 3462 + "rustls", 3463 + "rustls-pemfile", 3464 + "serde", 3465 + "serde_json", 3466 + "serde_urlencoded", 3467 + "tokio", 3468 + "tokio-rustls", 3469 + "tower-service", 3470 + "url", 3471 + "wasm-bindgen", 3472 + "wasm-bindgen-futures", 3473 + "web-sys", 3474 + "webpki-roots", 3475 + "winreg", 3476 + ] 3477 + 3478 + [[package]] 3479 + name = "ring" 3480 + version = "0.16.20" 3481 + source = "registry+https://github.com/rust-lang/crates.io-index" 3482 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 3483 + dependencies = [ 3484 + "cc", 3485 + "libc", 3486 + "once_cell", 3487 + "spin", 3488 + "untrusted", 3489 + "web-sys", 3490 + "winapi", 3491 + ] 3492 + 3493 + [[package]] 3494 + name = "rustc-demangle" 3495 + version = "0.1.21" 3496 + source = "registry+https://github.com/rust-lang/crates.io-index" 3497 + checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 3498 + 3499 + [[package]] 3500 + name = "rustc_version" 3501 + version = "0.4.0" 3502 + source = "registry+https://github.com/rust-lang/crates.io-index" 3503 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 3504 + dependencies = [ 3505 + "semver", 3506 + ] 3507 + 3508 + [[package]] 3509 + name = "rustix" 3510 + version = "0.35.13" 3511 + source = "registry+https://github.com/rust-lang/crates.io-index" 3512 + checksum = "727a1a6d65f786ec22df8a81ca3121107f235970dc1705ed681d3e6e8b9cd5f9" 3513 + dependencies = [ 3514 + "bitflags", 3515 + "errno", 3516 + "io-lifetimes 0.7.5", 3517 + "libc", 3518 + "linux-raw-sys 0.0.46", 3519 + "windows-sys 0.42.0", 3520 + ] 3521 + 3522 + [[package]] 3523 + name = "rustix" 3524 + version = "0.36.3" 3525 + source = "registry+https://github.com/rust-lang/crates.io-index" 3526 + checksum = "0b1fbb4dfc4eb1d390c02df47760bb19a84bb80b301ecc947ab5406394d8223e" 3527 + dependencies = [ 3528 + "bitflags", 3529 + "errno", 3530 + "io-lifetimes 1.0.2", 3531 + "libc", 3532 + "linux-raw-sys 0.1.3", 3533 + "windows-sys 0.42.0", 3534 + ] 3535 + 3536 + [[package]] 3537 + name = "rustls" 3538 + version = "0.20.7" 3539 + source = "registry+https://github.com/rust-lang/crates.io-index" 3540 + checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c" 3541 + dependencies = [ 3542 + "log", 3543 + "ring", 3544 + "sct", 3545 + "webpki", 3546 + ] 3547 + 3548 + [[package]] 3549 + name = "rustls-native-certs" 3550 + version = "0.6.2" 3551 + source = "registry+https://github.com/rust-lang/crates.io-index" 3552 + checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50" 3553 + dependencies = [ 3554 + "openssl-probe", 3555 + "rustls-pemfile", 3556 + "schannel", 3557 + "security-framework", 3558 + ] 3559 + 3560 + [[package]] 3561 + name = "rustls-pemfile" 3562 + version = "1.0.1" 3563 + source = "registry+https://github.com/rust-lang/crates.io-index" 3564 + checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55" 3565 + dependencies = [ 3566 + "base64", 3567 + ] 3568 + 3569 + [[package]] 3570 + name = "rustversion" 3571 + version = "1.0.9" 3572 + source = "registry+https://github.com/rust-lang/crates.io-index" 3573 + checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" 3574 + 3575 + [[package]] 3576 + name = "ryu" 3577 + version = "1.0.11" 3578 + source = "registry+https://github.com/rust-lang/crates.io-index" 3579 + checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 3580 + 3581 + [[package]] 3582 + name = "safe-lock" 3583 + version = "0.1.3" 3584 + source = "registry+https://github.com/rust-lang/crates.io-index" 3585 + checksum = "077d73db7973cccf63eb4aff1e5a34dc2459baa867512088269ea5f2f4253c90" 3586 + 3587 + [[package]] 3588 + name = "safe-proc-macro2" 3589 + version = "1.0.36" 3590 + source = "registry+https://github.com/rust-lang/crates.io-index" 3591 + checksum = "814c536dcd27acf03296c618dab7ad62d28e70abd7ba41d3f34a2ce707a2c666" 3592 + dependencies = [ 3593 + "unicode-xid", 3594 + ] 3595 + 3596 + [[package]] 3597 + name = "safe-quote" 3598 + version = "1.0.15" 3599 + source = "registry+https://github.com/rust-lang/crates.io-index" 3600 + checksum = "77e530f7831f3feafcd5f1aae406ac205dd998436b4007c8e80f03eca78a88f7" 3601 + dependencies = [ 3602 + "safe-proc-macro2", 3603 + ] 3604 + 3605 + [[package]] 3606 + name = "safe-regex" 3607 + version = "0.2.5" 3608 + source = "registry+https://github.com/rust-lang/crates.io-index" 3609 + checksum = "a15289bf322e0673d52756a18194167f2378ec1a15fe884af6e2d2cb934822b0" 3610 + dependencies = [ 3611 + "safe-regex-macro", 3612 + ] 3613 + 3614 + [[package]] 3615 + name = "safe-regex-compiler" 3616 + version = "0.2.5" 3617 + source = "registry+https://github.com/rust-lang/crates.io-index" 3618 + checksum = "fba76fae590a2aa665279deb1f57b5098cbace01a0c5e60e262fcf55f7c51542" 3619 + dependencies = [ 3620 + "safe-proc-macro2", 3621 + "safe-quote", 3622 + ] 3623 + 3624 + [[package]] 3625 + name = "safe-regex-macro" 3626 + version = "0.2.5" 3627 + source = "registry+https://github.com/rust-lang/crates.io-index" 3628 + checksum = "96c2e96b5c03f158d1b16ba79af515137795f4ad4e8de3f790518aae91f1d127" 3629 + dependencies = [ 3630 + "safe-proc-macro2", 3631 + "safe-regex-compiler", 3632 + ] 3633 + 3634 + [[package]] 3635 + name = "same-file" 3636 + version = "1.0.6" 3637 + source = "registry+https://github.com/rust-lang/crates.io-index" 3638 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3639 + dependencies = [ 3640 + "winapi-util", 3641 + ] 3642 + 3643 + [[package]] 3644 + name = "schannel" 3645 + version = "0.1.20" 3646 + source = "registry+https://github.com/rust-lang/crates.io-index" 3647 + checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 3648 + dependencies = [ 3649 + "lazy_static", 3650 + "windows-sys 0.36.1", 3651 + ] 3652 + 3653 + [[package]] 3654 + name = "scopeguard" 3655 + version = "1.1.0" 3656 + source = "registry+https://github.com/rust-lang/crates.io-index" 3657 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 3658 + 3659 + [[package]] 3660 + name = "scratch" 3661 + version = "1.0.2" 3662 + source = "registry+https://github.com/rust-lang/crates.io-index" 3663 + checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" 3664 + 3665 + [[package]] 3666 + name = "sct" 3667 + version = "0.7.0" 3668 + source = "registry+https://github.com/rust-lang/crates.io-index" 3669 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 3670 + dependencies = [ 3671 + "ring", 3672 + "untrusted", 3673 + ] 3674 + 3675 + [[package]] 3676 + name = "security-framework" 3677 + version = "2.7.0" 3678 + source = "registry+https://github.com/rust-lang/crates.io-index" 3679 + checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" 3680 + dependencies = [ 3681 + "bitflags", 3682 + "core-foundation", 3683 + "core-foundation-sys", 3684 + "libc", 3685 + "security-framework-sys", 3686 + ] 3687 + 3688 + [[package]] 3689 + name = "security-framework-sys" 3690 + version = "2.6.1" 3691 + source = "registry+https://github.com/rust-lang/crates.io-index" 3692 + checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 3693 + dependencies = [ 3694 + "core-foundation-sys", 3695 + "libc", 3696 + ] 3697 + 3698 + [[package]] 3699 + name = "semver" 3700 + version = "1.0.14" 3701 + source = "registry+https://github.com/rust-lang/crates.io-index" 3702 + checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4" 3703 + dependencies = [ 3704 + "serde", 3705 + ] 3706 + 3707 + [[package]] 3708 + name = "serde" 3709 + version = "1.0.147" 3710 + source = "registry+https://github.com/rust-lang/crates.io-index" 3711 + checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965" 3712 + dependencies = [ 3713 + "serde_derive", 3714 + ] 3715 + 3716 + [[package]] 3717 + name = "serde_derive" 3718 + version = "1.0.147" 3719 + source = "registry+https://github.com/rust-lang/crates.io-index" 3720 + checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852" 3721 + dependencies = [ 3722 + "proc-macro2", 3723 + "quote", 3724 + "syn", 3725 + ] 3726 + 3727 + [[package]] 3728 + name = "serde_json" 3729 + version = "1.0.89" 3730 + source = "registry+https://github.com/rust-lang/crates.io-index" 3731 + checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db" 3732 + dependencies = [ 3733 + "itoa", 3734 + "ryu", 3735 + "serde", 3736 + ] 3737 + 3738 + [[package]] 3739 + name = "serde_urlencoded" 3740 + version = "0.7.1" 3741 + source = "registry+https://github.com/rust-lang/crates.io-index" 3742 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3743 + dependencies = [ 3744 + "form_urlencoded", 3745 + "itoa", 3746 + "ryu", 3747 + "serde", 3748 + ] 3749 + 3750 + [[package]] 3751 + name = "sha1" 3752 + version = "0.10.5" 3753 + source = "registry+https://github.com/rust-lang/crates.io-index" 3754 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 3755 + dependencies = [ 3756 + "cfg-if 1.0.0", 3757 + "cpufeatures", 3758 + "digest", 3759 + ] 3760 + 3761 + [[package]] 3762 + name = "sha1_smol" 3763 + version = "1.0.0" 3764 + source = "registry+https://github.com/rust-lang/crates.io-index" 3765 + checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 3766 + 3767 + [[package]] 3768 + name = "sha2" 3769 + version = "0.10.6" 3770 + source = "registry+https://github.com/rust-lang/crates.io-index" 3771 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 3772 + dependencies = [ 3773 + "cfg-if 1.0.0", 3774 + "cpufeatures", 3775 + "digest", 3776 + ] 3777 + 3778 + [[package]] 3779 + name = "sharded-slab" 3780 + version = "0.1.4" 3781 + source = "registry+https://github.com/rust-lang/crates.io-index" 3782 + checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 3783 + dependencies = [ 3784 + "lazy_static", 3785 + ] 3786 + 3787 + [[package]] 3788 + name = "shell-escape" 3789 + version = "0.1.5" 3790 + source = "registry+https://github.com/rust-lang/crates.io-index" 3791 + checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f" 3792 + 3793 + [[package]] 3794 + name = "signal-hook" 3795 + version = "0.3.14" 3796 + source = "registry+https://github.com/rust-lang/crates.io-index" 3797 + checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d" 3798 + dependencies = [ 3799 + "libc", 3800 + "signal-hook-registry", 3801 + ] 3802 + 3803 + [[package]] 3804 + name = "signal-hook-mio" 3805 + version = "0.2.3" 3806 + source = "registry+https://github.com/rust-lang/crates.io-index" 3807 + checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" 3808 + dependencies = [ 3809 + "libc", 3810 + "mio", 3811 + "signal-hook", 3812 + ] 3813 + 3814 + [[package]] 3815 + name = "signal-hook-registry" 3816 + version = "1.4.0" 3817 + source = "registry+https://github.com/rust-lang/crates.io-index" 3818 + checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 3819 + dependencies = [ 3820 + "libc", 3821 + ] 3822 + 3823 + [[package]] 3824 + name = "simd-abstraction" 3825 + version = "0.7.1" 3826 + source = "registry+https://github.com/rust-lang/crates.io-index" 3827 + checksum = "9cadb29c57caadc51ff8346233b5cec1d240b68ce55cf1afc764818791876987" 3828 + dependencies = [ 3829 + "outref", 3830 + ] 3831 + 3832 + [[package]] 3833 + name = "similar" 3834 + version = "2.2.1" 3835 + source = "registry+https://github.com/rust-lang/crates.io-index" 3836 + checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" 3837 + 3838 + [[package]] 3839 + name = "siphasher" 3840 + version = "0.3.10" 3841 + source = "registry+https://github.com/rust-lang/crates.io-index" 3842 + checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 3843 + 3844 + [[package]] 3845 + name = "slab" 3846 + version = "0.4.7" 3847 + source = "registry+https://github.com/rust-lang/crates.io-index" 3848 + checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 3849 + dependencies = [ 3850 + "autocfg", 3851 + ] 3852 + 3853 + [[package]] 3854 + name = "smallvec" 3855 + version = "1.10.0" 3856 + source = "registry+https://github.com/rust-lang/crates.io-index" 3857 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 3858 + 3859 + [[package]] 3860 + name = "smawk" 3861 + version = "0.3.1" 3862 + source = "registry+https://github.com/rust-lang/crates.io-index" 3863 + checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043" 3864 + 3865 + [[package]] 3866 + name = "snapbox" 3867 + version = "0.4.3" 3868 + source = "registry+https://github.com/rust-lang/crates.io-index" 3869 + checksum = "efbd7b250c7243273b5aec4ca366fced84ad716d110bb7baae4814678952ebde" 3870 + dependencies = [ 3871 + "backtrace", 3872 + "concolor", 3873 + "content_inspector", 3874 + "dunce", 3875 + "filetime", 3876 + "libc", 3877 + "normalize-line-endings", 3878 + "os_pipe", 3879 + "similar", 3880 + "snapbox-macros", 3881 + "tempfile", 3882 + "wait-timeout", 3883 + "walkdir", 3884 + "windows-sys 0.42.0", 3885 + "yansi", 3886 + ] 3887 + 3888 + [[package]] 3889 + name = "snapbox-macros" 3890 + version = "0.3.1" 3891 + source = "registry+https://github.com/rust-lang/crates.io-index" 3892 + checksum = "485e65c1203eb37244465e857d15a26d3a85a5410648ccb53b18bd44cb3a7336" 3893 + 3894 + [[package]] 3895 + name = "socket2" 3896 + version = "0.4.7" 3897 + source = "registry+https://github.com/rust-lang/crates.io-index" 3898 + checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 3899 + dependencies = [ 3900 + "libc", 3901 + "winapi", 3902 + ] 3903 + 3904 + [[package]] 3905 + name = "spin" 3906 + version = "0.5.2" 3907 + source = "registry+https://github.com/rust-lang/crates.io-index" 3908 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 3909 + 3910 + [[package]] 3911 + name = "static_assertions" 3912 + version = "1.1.0" 3913 + source = "registry+https://github.com/rust-lang/crates.io-index" 3914 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3915 + 3916 + [[package]] 3917 + name = "strsim" 3918 + version = "0.10.0" 3919 + source = "registry+https://github.com/rust-lang/crates.io-index" 3920 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 3921 + 3922 + [[package]] 3923 + name = "strum" 3924 + version = "0.24.1" 3925 + source = "registry+https://github.com/rust-lang/crates.io-index" 3926 + checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 3927 + 3928 + [[package]] 3929 + name = "strum_macros" 3930 + version = "0.24.3" 3931 + source = "registry+https://github.com/rust-lang/crates.io-index" 3932 + checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 3933 + dependencies = [ 3934 + "heck", 3935 + "proc-macro2", 3936 + "quote", 3937 + "rustversion", 3938 + "syn", 3939 + ] 3940 + 3941 + [[package]] 3942 + name = "subtle" 3943 + version = "2.4.1" 3944 + source = "registry+https://github.com/rust-lang/crates.io-index" 3945 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 3946 + 3947 + [[package]] 3948 + name = "supports-color" 3949 + version = "1.3.1" 3950 + source = "registry+https://github.com/rust-lang/crates.io-index" 3951 + checksum = "8ba6faf2ca7ee42fdd458f4347ae0a9bd6bcc445ad7cb57ad82b383f18870d6f" 3952 + dependencies = [ 3953 + "atty", 3954 + "is_ci", 3955 + ] 3956 + 3957 + [[package]] 3958 + name = "supports-hyperlinks" 3959 + version = "1.2.0" 3960 + source = "registry+https://github.com/rust-lang/crates.io-index" 3961 + checksum = "590b34f7c5f01ecc9d78dba4b3f445f31df750a67621cf31626f3b7441ce6406" 3962 + dependencies = [ 3963 + "atty", 3964 + ] 3965 + 3966 + [[package]] 3967 + name = "supports-unicode" 3968 + version = "1.0.2" 3969 + source = "registry+https://github.com/rust-lang/crates.io-index" 3970 + checksum = "a8b945e45b417b125a8ec51f1b7df2f8df7920367700d1f98aedd21e5735f8b2" 3971 + dependencies = [ 3972 + "atty", 3973 + ] 3974 + 3975 + [[package]] 3976 + name = "syn" 3977 + version = "1.0.103" 3978 + source = "registry+https://github.com/rust-lang/crates.io-index" 3979 + checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" 3980 + dependencies = [ 3981 + "proc-macro2", 3982 + "quote", 3983 + "unicode-ident", 3984 + ] 3985 + 3986 + [[package]] 3987 + name = "sync_wrapper" 3988 + version = "0.1.1" 3989 + source = "registry+https://github.com/rust-lang/crates.io-index" 3990 + checksum = "20518fe4a4c9acf048008599e464deb21beeae3d3578418951a189c235a7a9a8" 3991 + 3992 + [[package]] 3993 + name = "tar" 3994 + version = "0.4.38" 3995 + source = "registry+https://github.com/rust-lang/crates.io-index" 3996 + checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 3997 + dependencies = [ 3998 + "filetime", 3999 + "libc", 4000 + ] 4001 + 4002 + [[package]] 4003 + name = "target-lexicon" 4004 + version = "0.12.5" 4005 + source = "registry+https://github.com/rust-lang/crates.io-index" 4006 + checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d" 4007 + 4008 + [[package]] 4009 + name = "tempfile" 4010 + version = "3.4.0" 4011 + source = "registry+https://github.com/rust-lang/crates.io-index" 4012 + checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" 4013 + dependencies = [ 4014 + "cfg-if 1.0.0", 4015 + "fastrand", 4016 + "redox_syscall", 4017 + "rustix 0.36.3", 4018 + "windows-sys 0.42.0", 4019 + ] 4020 + 4021 + [[package]] 4022 + name = "termcolor" 4023 + version = "1.1.3" 4024 + source = "registry+https://github.com/rust-lang/crates.io-index" 4025 + checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 4026 + dependencies = [ 4027 + "winapi-util", 4028 + ] 4029 + 4030 + [[package]] 4031 + name = "terminal_size" 4032 + version = "0.1.17" 4033 + source = "registry+https://github.com/rust-lang/crates.io-index" 4034 + checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" 4035 + dependencies = [ 4036 + "libc", 4037 + "winapi", 4038 + ] 4039 + 4040 + [[package]] 4041 + name = "terminal_size" 4042 + version = "0.2.2" 4043 + source = "registry+https://github.com/rust-lang/crates.io-index" 4044 + checksum = "40ca90c434fd12083d1a6bdcbe9f92a14f96c8a1ba600ba451734ac334521f7a" 4045 + dependencies = [ 4046 + "rustix 0.35.13", 4047 + "windows-sys 0.42.0", 4048 + ] 4049 + 4050 + [[package]] 4051 + name = "terminfo" 4052 + version = "0.7.3" 4053 + source = "registry+https://github.com/rust-lang/crates.io-index" 4054 + checksum = "76971977e6121664ec1b960d1313aacfa75642adc93b9d4d53b247bd4cb1747e" 4055 + dependencies = [ 4056 + "dirs 2.0.2", 4057 + "fnv", 4058 + "nom 5.1.2", 4059 + "phf", 4060 + "phf_codegen", 4061 + ] 4062 + 4063 + [[package]] 4064 + name = "textwrap" 4065 + version = "0.15.2" 4066 + source = "registry+https://github.com/rust-lang/crates.io-index" 4067 + checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d" 4068 + dependencies = [ 4069 + "smawk", 4070 + "unicode-linebreak", 4071 + "unicode-width", 4072 + ] 4073 + 4074 + [[package]] 4075 + name = "thiserror" 4076 + version = "1.0.38" 4077 + source = "registry+https://github.com/rust-lang/crates.io-index" 4078 + checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 4079 + dependencies = [ 4080 + "thiserror-impl", 4081 + ] 4082 + 4083 + [[package]] 4084 + name = "thiserror-impl" 4085 + version = "1.0.38" 4086 + source = "registry+https://github.com/rust-lang/crates.io-index" 4087 + checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 4088 + dependencies = [ 4089 + "proc-macro2", 4090 + "quote", 4091 + "syn", 4092 + ] 4093 + 4094 + [[package]] 4095 + name = "thread_local" 4096 + version = "1.1.4" 4097 + source = "registry+https://github.com/rust-lang/crates.io-index" 4098 + checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 4099 + dependencies = [ 4100 + "once_cell", 4101 + ] 4102 + 4103 + [[package]] 4104 + name = "time" 4105 + version = "0.1.45" 4106 + source = "registry+https://github.com/rust-lang/crates.io-index" 4107 + checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 4108 + dependencies = [ 4109 + "libc", 4110 + "wasi 0.10.0+wasi-snapshot-preview1", 4111 + "winapi", 4112 + ] 4113 + 4114 + [[package]] 4115 + name = "time" 4116 + version = "0.3.17" 4117 + source = "registry+https://github.com/rust-lang/crates.io-index" 4118 + checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 4119 + dependencies = [ 4120 + "itoa", 4121 + "libc", 4122 + "num_threads", 4123 + "serde", 4124 + "time-core", 4125 + "time-macros", 4126 + ] 4127 + 4128 + [[package]] 4129 + name = "time-core" 4130 + version = "0.1.0" 4131 + source = "registry+https://github.com/rust-lang/crates.io-index" 4132 + checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 4133 + 4134 + [[package]] 4135 + name = "time-macros" 4136 + version = "0.2.6" 4137 + source = "registry+https://github.com/rust-lang/crates.io-index" 4138 + checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 4139 + dependencies = [ 4140 + "time-core", 4141 + ] 4142 + 4143 + [[package]] 4144 + name = "tinyvec" 4145 + version = "1.6.0" 4146 + source = "registry+https://github.com/rust-lang/crates.io-index" 4147 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 4148 + dependencies = [ 4149 + "tinyvec_macros", 4150 + ] 4151 + 4152 + [[package]] 4153 + name = "tinyvec_macros" 4154 + version = "0.1.0" 4155 + source = "registry+https://github.com/rust-lang/crates.io-index" 4156 + checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 4157 + 4158 + [[package]] 4159 + name = "tokio" 4160 + version = "1.26.0" 4161 + source = "registry+https://github.com/rust-lang/crates.io-index" 4162 + checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" 4163 + dependencies = [ 4164 + "autocfg", 4165 + "bytes", 4166 + "libc", 4167 + "memchr", 4168 + "mio", 4169 + "num_cpus", 4170 + "pin-project-lite", 4171 + "signal-hook-registry", 4172 + "socket2", 4173 + "tokio-macros", 4174 + "windows-sys 0.45.0", 4175 + ] 4176 + 4177 + [[package]] 4178 + name = "tokio-graceful-shutdown" 4179 + version = "0.5.0" 4180 + source = "registry+https://github.com/rust-lang/crates.io-index" 4181 + checksum = "2b9614e6d7b687b4daf9b5191d45039258b19405fb1493051cee400f29ec0e57" 4182 + dependencies = [ 4183 + "anyhow", 4184 + "async-recursion", 4185 + "futures", 4186 + "log", 4187 + "tokio", 4188 + "tokio-util", 4189 + ] 4190 + 4191 + [[package]] 4192 + name = "tokio-macros" 4193 + version = "1.8.0" 4194 + source = "registry+https://github.com/rust-lang/crates.io-index" 4195 + checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" 4196 + dependencies = [ 4197 + "proc-macro2", 4198 + "quote", 4199 + "syn", 4200 + ] 4201 + 4202 + [[package]] 4203 + name = "tokio-rustls" 4204 + version = "0.23.4" 4205 + source = "registry+https://github.com/rust-lang/crates.io-index" 4206 + checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 4207 + dependencies = [ 4208 + "rustls", 4209 + "tokio", 4210 + "webpki", 4211 + ] 4212 + 4213 + [[package]] 4214 + name = "tokio-stream" 4215 + version = "0.1.11" 4216 + source = "registry+https://github.com/rust-lang/crates.io-index" 4217 + checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce" 4218 + dependencies = [ 4219 + "futures-core", 4220 + "pin-project-lite", 4221 + "tokio", 4222 + ] 4223 + 4224 + [[package]] 4225 + name = "tokio-util" 4226 + version = "0.7.4" 4227 + source = "registry+https://github.com/rust-lang/crates.io-index" 4228 + checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740" 4229 + dependencies = [ 4230 + "bytes", 4231 + "futures-core", 4232 + "futures-sink", 4233 + "pin-project-lite", 4234 + "tokio", 4235 + "tracing", 4236 + ] 4237 + 4238 + [[package]] 4239 + name = "toml_datetime" 4240 + version = "0.5.0" 4241 + source = "registry+https://github.com/rust-lang/crates.io-index" 4242 + checksum = "808b51e57d0ef8f71115d8f3a01e7d3750d01c79cac4b3eda910f4389fdf92fd" 4243 + dependencies = [ 4244 + "serde", 4245 + ] 4246 + 4247 + [[package]] 4248 + name = "toml_edit" 4249 + version = "0.15.0" 4250 + source = "registry+https://github.com/rust-lang/crates.io-index" 4251 + checksum = "b1541ba70885967e662f69d31ab3aeca7b1aaecfcd58679590b893e9239c3646" 4252 + dependencies = [ 4253 + "combine", 4254 + "indexmap", 4255 + "itertools", 4256 + "kstring", 4257 + "serde", 4258 + "toml_datetime", 4259 + ] 4260 + 4261 + [[package]] 4262 + name = "tower" 4263 + version = "0.4.13" 4264 + source = "registry+https://github.com/rust-lang/crates.io-index" 4265 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 4266 + dependencies = [ 4267 + "futures-core", 4268 + "futures-util", 4269 + "pin-project", 4270 + "pin-project-lite", 4271 + "tokio", 4272 + "tower-layer", 4273 + "tower-service", 4274 + "tracing", 4275 + ] 4276 + 4277 + [[package]] 4278 + name = "tower-http" 4279 + version = "0.3.4" 4280 + source = "registry+https://github.com/rust-lang/crates.io-index" 4281 + checksum = "3c530c8675c1dbf98facee631536fa116b5fb6382d7dd6dc1b118d970eafe3ba" 4282 + dependencies = [ 4283 + "bitflags", 4284 + "bytes", 4285 + "futures-core", 4286 + "futures-util", 4287 + "http", 4288 + "http-body", 4289 + "http-range-header", 4290 + "pin-project-lite", 4291 + "tower", 4292 + "tower-layer", 4293 + "tower-service", 4294 + "tracing", 4295 + "uuid", 4296 + ] 4297 + 4298 + [[package]] 4299 + name = "tower-layer" 4300 + version = "0.3.2" 4301 + source = "registry+https://github.com/rust-lang/crates.io-index" 4302 + checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 4303 + 4304 + [[package]] 4305 + name = "tower-service" 4306 + version = "0.3.2" 4307 + source = "registry+https://github.com/rust-lang/crates.io-index" 4308 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 4309 + 4310 + [[package]] 4311 + name = "tracing" 4312 + version = "0.1.37" 4313 + source = "registry+https://github.com/rust-lang/crates.io-index" 4314 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 4315 + dependencies = [ 4316 + "cfg-if 1.0.0", 4317 + "log", 4318 + "pin-project-lite", 4319 + "tracing-attributes", 4320 + "tracing-core", 4321 + ] 4322 + 4323 + [[package]] 4324 + name = "tracing-attributes" 4325 + version = "0.1.23" 4326 + source = "registry+https://github.com/rust-lang/crates.io-index" 4327 + checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 4328 + dependencies = [ 4329 + "proc-macro2", 4330 + "quote", 4331 + "syn", 4332 + ] 4333 + 4334 + [[package]] 4335 + name = "tracing-core" 4336 + version = "0.1.30" 4337 + source = "registry+https://github.com/rust-lang/crates.io-index" 4338 + checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 4339 + dependencies = [ 4340 + "once_cell", 4341 + "valuable", 4342 + ] 4343 + 4344 + [[package]] 4345 + name = "tracing-log" 4346 + version = "0.1.3" 4347 + source = "registry+https://github.com/rust-lang/crates.io-index" 4348 + checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 4349 + dependencies = [ 4350 + "lazy_static", 4351 + "log", 4352 + "tracing-core", 4353 + ] 4354 + 4355 + [[package]] 4356 + name = "tracing-opentelemetry" 4357 + version = "0.17.4" 4358 + source = "registry+https://github.com/rust-lang/crates.io-index" 4359 + checksum = "fbbe89715c1dbbb790059e2565353978564924ee85017b5fff365c872ff6721f" 4360 + dependencies = [ 4361 + "once_cell", 4362 + "opentelemetry", 4363 + "tracing", 4364 + "tracing-core", 4365 + "tracing-log", 4366 + "tracing-subscriber", 4367 + ] 4368 + 4369 + [[package]] 4370 + name = "tracing-subscriber" 4371 + version = "0.3.16" 4372 + source = "registry+https://github.com/rust-lang/crates.io-index" 4373 + checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 4374 + dependencies = [ 4375 + "matchers", 4376 + "nu-ansi-term", 4377 + "once_cell", 4378 + "regex", 4379 + "sharded-slab", 4380 + "smallvec", 4381 + "thread_local", 4382 + "tracing", 4383 + "tracing-core", 4384 + "tracing-log", 4385 + ] 4386 + 4387 + [[package]] 4388 + name = "try-lock" 4389 + version = "0.2.3" 4390 + source = "registry+https://github.com/rust-lang/crates.io-index" 4391 + checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 4392 + 4393 + [[package]] 4394 + name = "typenum" 4395 + version = "1.15.0" 4396 + source = "registry+https://github.com/rust-lang/crates.io-index" 4397 + checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 4398 + 4399 + [[package]] 4400 + name = "ucd-trie" 4401 + version = "0.1.5" 4402 + source = "registry+https://github.com/rust-lang/crates.io-index" 4403 + checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 4404 + 4405 + [[package]] 4406 + name = "unicode-bidi" 4407 + version = "0.3.8" 4408 + source = "registry+https://github.com/rust-lang/crates.io-index" 4409 + checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 4410 + 4411 + [[package]] 4412 + name = "unicode-bom" 4413 + version = "1.1.4" 4414 + source = "registry+https://github.com/rust-lang/crates.io-index" 4415 + checksum = "63ec69f541d875b783ca40184d655f2927c95f0bffd486faa83cd3ac3529ec32" 4416 + 4417 + [[package]] 4418 + name = "unicode-ident" 4419 + version = "1.0.5" 4420 + source = "registry+https://github.com/rust-lang/crates.io-index" 4421 + checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" 4422 + 4423 + [[package]] 4424 + name = "unicode-linebreak" 4425 + version = "0.1.4" 4426 + source = "registry+https://github.com/rust-lang/crates.io-index" 4427 + checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137" 4428 + dependencies = [ 4429 + "hashbrown", 4430 + "regex", 4431 + ] 4432 + 4433 + [[package]] 4434 + name = "unicode-normalization" 4435 + version = "0.1.22" 4436 + source = "registry+https://github.com/rust-lang/crates.io-index" 4437 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 4438 + dependencies = [ 4439 + "tinyvec", 4440 + ] 4441 + 4442 + [[package]] 4443 + name = "unicode-segmentation" 4444 + version = "1.10.0" 4445 + source = "registry+https://github.com/rust-lang/crates.io-index" 4446 + checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" 4447 + 4448 + [[package]] 4449 + name = "unicode-width" 4450 + version = "0.1.10" 4451 + source = "registry+https://github.com/rust-lang/crates.io-index" 4452 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 4453 + 4454 + [[package]] 4455 + name = "unicode-xid" 4456 + version = "0.2.4" 4457 + source = "registry+https://github.com/rust-lang/crates.io-index" 4458 + checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 4459 + 4460 + [[package]] 4461 + name = "untrusted" 4462 + version = "0.7.1" 4463 + source = "registry+https://github.com/rust-lang/crates.io-index" 4464 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 4465 + 4466 + [[package]] 4467 + name = "url" 4468 + version = "2.3.1" 4469 + source = "registry+https://github.com/rust-lang/crates.io-index" 4470 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 4471 + dependencies = [ 4472 + "form_urlencoded", 4473 + "idna", 4474 + "percent-encoding", 4475 + ] 4476 + 4477 + [[package]] 4478 + name = "urlencoding" 4479 + version = "2.1.2" 4480 + source = "registry+https://github.com/rust-lang/crates.io-index" 4481 + checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9" 4482 + 4483 + [[package]] 4484 + name = "uuid" 4485 + version = "1.2.2" 4486 + source = "registry+https://github.com/rust-lang/crates.io-index" 4487 + checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c" 4488 + dependencies = [ 4489 + "getrandom 0.2.8", 4490 + ] 4491 + 4492 + [[package]] 4493 + name = "valuable" 4494 + version = "0.1.0" 4495 + source = "registry+https://github.com/rust-lang/crates.io-index" 4496 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 4497 + 4498 + [[package]] 4499 + name = "vcpkg" 4500 + version = "0.2.15" 4501 + source = "registry+https://github.com/rust-lang/crates.io-index" 4502 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 4503 + 4504 + [[package]] 4505 + name = "version_check" 4506 + version = "0.9.4" 4507 + source = "registry+https://github.com/rust-lang/crates.io-index" 4508 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 4509 + 4510 + [[package]] 4511 + name = "wait-timeout" 4512 + version = "0.2.0" 4513 + source = "registry+https://github.com/rust-lang/crates.io-index" 4514 + checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 4515 + dependencies = [ 4516 + "libc", 4517 + ] 4518 + 4519 + [[package]] 4520 + name = "walkdir" 4521 + version = "2.3.2" 4522 + source = "registry+https://github.com/rust-lang/crates.io-index" 4523 + checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 4524 + dependencies = [ 4525 + "same-file", 4526 + "winapi", 4527 + "winapi-util", 4528 + ] 4529 + 4530 + [[package]] 4531 + name = "want" 4532 + version = "0.3.0" 4533 + source = "registry+https://github.com/rust-lang/crates.io-index" 4534 + checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 4535 + dependencies = [ 4536 + "log", 4537 + "try-lock", 4538 + ] 4539 + 4540 + [[package]] 4541 + name = "wasi" 4542 + version = "0.9.0+wasi-snapshot-preview1" 4543 + source = "registry+https://github.com/rust-lang/crates.io-index" 4544 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 4545 + 4546 + [[package]] 4547 + name = "wasi" 4548 + version = "0.10.0+wasi-snapshot-preview1" 4549 + source = "registry+https://github.com/rust-lang/crates.io-index" 4550 + checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 4551 + 4552 + [[package]] 4553 + name = "wasi" 4554 + version = "0.11.0+wasi-snapshot-preview1" 4555 + source = "registry+https://github.com/rust-lang/crates.io-index" 4556 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 4557 + 4558 + [[package]] 4559 + name = "wasm-bindgen" 4560 + version = "0.2.83" 4561 + source = "registry+https://github.com/rust-lang/crates.io-index" 4562 + checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 4563 + dependencies = [ 4564 + "cfg-if 1.0.0", 4565 + "wasm-bindgen-macro", 4566 + ] 4567 + 4568 + [[package]] 4569 + name = "wasm-bindgen-backend" 4570 + version = "0.2.83" 4571 + source = "registry+https://github.com/rust-lang/crates.io-index" 4572 + checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 4573 + dependencies = [ 4574 + "bumpalo", 4575 + "log", 4576 + "once_cell", 4577 + "proc-macro2", 4578 + "quote", 4579 + "syn", 4580 + "wasm-bindgen-shared", 4581 + ] 4582 + 4583 + [[package]] 4584 + name = "wasm-bindgen-futures" 4585 + version = "0.4.33" 4586 + source = "registry+https://github.com/rust-lang/crates.io-index" 4587 + checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" 4588 + dependencies = [ 4589 + "cfg-if 1.0.0", 4590 + "js-sys", 4591 + "wasm-bindgen", 4592 + "web-sys", 4593 + ] 4594 + 4595 + [[package]] 4596 + name = "wasm-bindgen-macro" 4597 + version = "0.2.83" 4598 + source = "registry+https://github.com/rust-lang/crates.io-index" 4599 + checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 4600 + dependencies = [ 4601 + "quote", 4602 + "wasm-bindgen-macro-support", 4603 + ] 4604 + 4605 + [[package]] 4606 + name = "wasm-bindgen-macro-support" 4607 + version = "0.2.83" 4608 + source = "registry+https://github.com/rust-lang/crates.io-index" 4609 + checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 4610 + dependencies = [ 4611 + "proc-macro2", 4612 + "quote", 4613 + "syn", 4614 + "wasm-bindgen-backend", 4615 + "wasm-bindgen-shared", 4616 + ] 4617 + 4618 + [[package]] 4619 + name = "wasm-bindgen-shared" 4620 + version = "0.2.83" 4621 + source = "registry+https://github.com/rust-lang/crates.io-index" 4622 + checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 4623 + 4624 + [[package]] 4625 + name = "watchexec" 4626 + version = "2.2.0" 4627 + source = "registry+https://github.com/rust-lang/crates.io-index" 4628 + checksum = "f44a7216549b0e37228ec8ffd46ef32119c5f27a29a2a1cddd655e3059b80e6e" 4629 + dependencies = [ 4630 + "async-priority-channel", 4631 + "async-recursion", 4632 + "atomic-take", 4633 + "clearscreen", 4634 + "command-group", 4635 + "futures", 4636 + "ignore-files", 4637 + "miette 5.5.0", 4638 + "nix", 4639 + "normalize-path", 4640 + "notify", 4641 + "once_cell", 4642 + "project-origins", 4643 + "thiserror", 4644 + "tokio", 4645 + "tracing", 4646 + "watchexec-events", 4647 + "watchexec-signals", 4648 + ] 4649 + 4650 + [[package]] 4651 + name = "watchexec-events" 4652 + version = "1.0.0" 4653 + source = "registry+https://github.com/rust-lang/crates.io-index" 4654 + checksum = "01603bbe02fd75918f010dadad456d47eda14fb8fdcab276b0b4b8362f142ae3" 4655 + dependencies = [ 4656 + "nix", 4657 + "notify", 4658 + "watchexec-signals", 4659 + ] 4660 + 4661 + [[package]] 4662 + name = "watchexec-filterer-ignore" 4663 + version = "1.0.0" 4664 + source = "registry+https://github.com/rust-lang/crates.io-index" 4665 + checksum = "536dc4978afb9af4c272898c0000b41143570023312b40a692c9477ebef309d1" 4666 + dependencies = [ 4667 + "ignore", 4668 + "ignore-files", 4669 + "tracing", 4670 + "watchexec", 4671 + ] 4672 + 4673 + [[package]] 4674 + name = "watchexec-signals" 4675 + version = "1.0.0" 4676 + source = "registry+https://github.com/rust-lang/crates.io-index" 4677 + checksum = "cc2a5df96c388901c94ca04055fcd51d4196ca3e971c5e805bd4a4b61dd6a7e5" 4678 + dependencies = [ 4679 + "miette 5.5.0", 4680 + "nix", 4681 + "thiserror", 4682 + ] 4683 + 4684 + [[package]] 4685 + name = "web-sys" 4686 + version = "0.3.60" 4687 + source = "registry+https://github.com/rust-lang/crates.io-index" 4688 + checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" 4689 + dependencies = [ 4690 + "js-sys", 4691 + "wasm-bindgen", 4692 + ] 4693 + 4694 + [[package]] 4695 + name = "webpki" 4696 + version = "0.22.0" 4697 + source = "registry+https://github.com/rust-lang/crates.io-index" 4698 + checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 4699 + dependencies = [ 4700 + "ring", 4701 + "untrusted", 4702 + ] 4703 + 4704 + [[package]] 4705 + name = "webpki-roots" 4706 + version = "0.22.5" 4707 + source = "registry+https://github.com/rust-lang/crates.io-index" 4708 + checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be" 4709 + dependencies = [ 4710 + "webpki", 4711 + ] 4712 + 4713 + [[package]] 4714 + name = "which" 4715 + version = "4.3.0" 4716 + source = "registry+https://github.com/rust-lang/crates.io-index" 4717 + checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" 4718 + dependencies = [ 4719 + "either", 4720 + "libc", 4721 + "once_cell", 4722 + ] 4723 + 4724 + [[package]] 4725 + name = "winapi" 4726 + version = "0.3.9" 4727 + source = "registry+https://github.com/rust-lang/crates.io-index" 4728 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4729 + dependencies = [ 4730 + "winapi-i686-pc-windows-gnu", 4731 + "winapi-x86_64-pc-windows-gnu", 4732 + ] 4733 + 4734 + [[package]] 4735 + name = "winapi-i686-pc-windows-gnu" 4736 + version = "0.4.0" 4737 + source = "registry+https://github.com/rust-lang/crates.io-index" 4738 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4739 + 4740 + [[package]] 4741 + name = "winapi-util" 4742 + version = "0.1.5" 4743 + source = "registry+https://github.com/rust-lang/crates.io-index" 4744 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 4745 + dependencies = [ 4746 + "winapi", 4747 + ] 4748 + 4749 + [[package]] 4750 + name = "winapi-x86_64-pc-windows-gnu" 4751 + version = "0.4.0" 4752 + source = "registry+https://github.com/rust-lang/crates.io-index" 4753 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4754 + 4755 + [[package]] 4756 + name = "windows" 4757 + version = "0.43.0" 4758 + source = "registry+https://github.com/rust-lang/crates.io-index" 4759 + checksum = "04662ed0e3e5630dfa9b26e4cb823b817f1a9addda855d973a9458c236556244" 4760 + dependencies = [ 4761 + "windows_aarch64_gnullvm", 4762 + "windows_aarch64_msvc 0.42.2", 4763 + "windows_i686_gnu 0.42.2", 4764 + "windows_i686_msvc 0.42.2", 4765 + "windows_x86_64_gnu 0.42.2", 4766 + "windows_x86_64_gnullvm", 4767 + "windows_x86_64_msvc 0.42.2", 4768 + ] 4769 + 4770 + [[package]] 4771 + name = "windows-sys" 4772 + version = "0.36.1" 4773 + source = "registry+https://github.com/rust-lang/crates.io-index" 4774 + checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 4775 + dependencies = [ 4776 + "windows_aarch64_msvc 0.36.1", 4777 + "windows_i686_gnu 0.36.1", 4778 + "windows_i686_msvc 0.36.1", 4779 + "windows_x86_64_gnu 0.36.1", 4780 + "windows_x86_64_msvc 0.36.1", 4781 + ] 4782 + 4783 + [[package]] 4784 + name = "windows-sys" 4785 + version = "0.42.0" 4786 + source = "registry+https://github.com/rust-lang/crates.io-index" 4787 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 4788 + dependencies = [ 4789 + "windows_aarch64_gnullvm", 4790 + "windows_aarch64_msvc 0.42.2", 4791 + "windows_i686_gnu 0.42.2", 4792 + "windows_i686_msvc 0.42.2", 4793 + "windows_x86_64_gnu 0.42.2", 4794 + "windows_x86_64_gnullvm", 4795 + "windows_x86_64_msvc 0.42.2", 4796 + ] 4797 + 4798 + [[package]] 4799 + name = "windows-sys" 4800 + version = "0.45.0" 4801 + source = "registry+https://github.com/rust-lang/crates.io-index" 4802 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 4803 + dependencies = [ 4804 + "windows-targets", 4805 + ] 4806 + 4807 + [[package]] 4808 + name = "windows-targets" 4809 + version = "0.42.2" 4810 + source = "registry+https://github.com/rust-lang/crates.io-index" 4811 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 4812 + dependencies = [ 4813 + "windows_aarch64_gnullvm", 4814 + "windows_aarch64_msvc 0.42.2", 4815 + "windows_i686_gnu 0.42.2", 4816 + "windows_i686_msvc 0.42.2", 4817 + "windows_x86_64_gnu 0.42.2", 4818 + "windows_x86_64_gnullvm", 4819 + "windows_x86_64_msvc 0.42.2", 4820 + ] 4821 + 4822 + [[package]] 4823 + name = "windows_aarch64_gnullvm" 4824 + version = "0.42.2" 4825 + source = "registry+https://github.com/rust-lang/crates.io-index" 4826 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 4827 + 4828 + [[package]] 4829 + name = "windows_aarch64_msvc" 4830 + version = "0.36.1" 4831 + source = "registry+https://github.com/rust-lang/crates.io-index" 4832 + checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 4833 + 4834 + [[package]] 4835 + name = "windows_aarch64_msvc" 4836 + version = "0.42.2" 4837 + source = "registry+https://github.com/rust-lang/crates.io-index" 4838 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 4839 + 4840 + [[package]] 4841 + name = "windows_i686_gnu" 4842 + version = "0.36.1" 4843 + source = "registry+https://github.com/rust-lang/crates.io-index" 4844 + checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 4845 + 4846 + [[package]] 4847 + name = "windows_i686_gnu" 4848 + version = "0.42.2" 4849 + source = "registry+https://github.com/rust-lang/crates.io-index" 4850 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 4851 + 4852 + [[package]] 4853 + name = "windows_i686_msvc" 4854 + version = "0.36.1" 4855 + source = "registry+https://github.com/rust-lang/crates.io-index" 4856 + checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 4857 + 4858 + [[package]] 4859 + name = "windows_i686_msvc" 4860 + version = "0.42.2" 4861 + source = "registry+https://github.com/rust-lang/crates.io-index" 4862 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 4863 + 4864 + [[package]] 4865 + name = "windows_x86_64_gnu" 4866 + version = "0.36.1" 4867 + source = "registry+https://github.com/rust-lang/crates.io-index" 4868 + checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 4869 + 4870 + [[package]] 4871 + name = "windows_x86_64_gnu" 4872 + version = "0.42.2" 4873 + source = "registry+https://github.com/rust-lang/crates.io-index" 4874 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 4875 + 4876 + [[package]] 4877 + name = "windows_x86_64_gnullvm" 4878 + version = "0.42.2" 4879 + source = "registry+https://github.com/rust-lang/crates.io-index" 4880 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 4881 + 4882 + [[package]] 4883 + name = "windows_x86_64_msvc" 4884 + version = "0.36.1" 4885 + source = "registry+https://github.com/rust-lang/crates.io-index" 4886 + checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 4887 + 4888 + [[package]] 4889 + name = "windows_x86_64_msvc" 4890 + version = "0.42.2" 4891 + source = "registry+https://github.com/rust-lang/crates.io-index" 4892 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 4893 + 4894 + [[package]] 4895 + name = "winreg" 4896 + version = "0.10.1" 4897 + source = "registry+https://github.com/rust-lang/crates.io-index" 4898 + checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 4899 + dependencies = [ 4900 + "winapi", 4901 + ] 4902 + 4903 + [[package]] 4904 + name = "xmlparser" 4905 + version = "0.13.5" 4906 + source = "registry+https://github.com/rust-lang/crates.io-index" 4907 + checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd" 4908 + 4909 + [[package]] 4910 + name = "yansi" 4911 + version = "0.5.1" 4912 + source = "registry+https://github.com/rust-lang/crates.io-index" 4913 + checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 4914 + 4915 + [[package]] 4916 + name = "zeroize" 4917 + version = "1.5.7" 4918 + source = "registry+https://github.com/rust-lang/crates.io-index" 4919 + checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f" 4920 + 4921 + [[package]] 4922 + name = "zip" 4923 + version = "0.6.3" 4924 + source = "registry+https://github.com/rust-lang/crates.io-index" 4925 + checksum = "537ce7411d25e54e8ae21a7ce0b15840e7bfcff15b51d697ec3266cc76bdf080" 4926 + dependencies = [ 4927 + "aes", 4928 + "byteorder", 4929 + "bzip2", 4930 + "constant_time_eq", 4931 + "crc32fast", 4932 + "crossbeam-utils", 4933 + "flate2", 4934 + "hmac", 4935 + "pbkdf2", 4936 + "sha1", 4937 + "time 0.3.17", 4938 + "zstd", 4939 + ] 4940 + 4941 + [[package]] 4942 + name = "zstd" 4943 + version = "0.11.2+zstd.1.5.2" 4944 + source = "registry+https://github.com/rust-lang/crates.io-index" 4945 + checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 4946 + dependencies = [ 4947 + "zstd-safe", 4948 + ] 4949 + 4950 + [[package]] 4951 + name = "zstd-safe" 4952 + version = "5.0.2+zstd.1.5.2" 4953 + source = "registry+https://github.com/rust-lang/crates.io-index" 4954 + checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 4955 + dependencies = [ 4956 + "libc", 4957 + "zstd-sys", 4958 + ] 4959 + 4960 + [[package]] 4961 + name = "zstd-sys" 4962 + version = "2.0.3+zstd.1.5.2" 4963 + source = "registry+https://github.com/rust-lang/crates.io-index" 4964 + checksum = "44ccf97612ac95f3ccb89b2d7346b345e52f1c3019be4984f0455fb4ba991f8a" 4965 + dependencies = [ 4966 + "cc", 4967 + "libc", 4968 + ]
+26 -8
pkgs/development/tools/rust/cargo-lambda/default.nix
··· 1 1 { lib 2 + , cacert 3 + , curl 2 4 , rustPlatform 3 5 , fetchFromGitHub 4 6 , makeWrapper 7 + , pkg-config 8 + , openssl 5 9 , stdenv 10 + , CoreServices 6 11 , Security 7 - , cargo-watch 8 12 , zig 9 13 }: 10 14 11 15 rustPlatform.buildRustPackage rec { 12 16 pname = "cargo-lambda"; 13 - version = "0.13.0"; 17 + version = "0.18.1"; 14 18 15 19 src = fetchFromGitHub { 16 20 owner = pname; 17 21 repo = pname; 18 22 rev = "v${version}"; 19 - sha256 = "sha256-JwrTwCn4qXcjXjy4cPYM3WCblJS0J5Xxnc6WESMwCpU="; 23 + sha256 = "sha256-un+GQflxhMHCMH5UEeUVsYx59ryn7MR4ApooeOuhccc="; 20 24 }; 21 25 22 - cargoSha256 = "sha256-p3q5S6IFQQgNp/MHGSUE1DVLFyMLWDTv/dxrUACKSWo="; 26 + cargoLock = { 27 + lockFile = ./Cargo.lock; 28 + outputHashes = { 29 + "cargo-test-macro-0.1.0" = "sha256-XvTKAbP/r1BthpEM84CYZ2yfJczxqzscGkN4JXLgvfA="; 30 + }; 31 + }; 23 32 24 - nativeBuildInputs = [ makeWrapper ]; 33 + nativeCheckInputs = [cacert]; 34 + 35 + nativeBuildInputs = [ makeWrapper pkg-config ]; 25 36 26 - buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 37 + buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ curl CoreServices Security ]; 27 38 28 39 checkFlags = [ 29 - # Disabled because it accesses the network. 40 + # Disabled because they accesses the network. 41 + "--skip=test_build_basic_extension" 42 + "--skip=test_build_basic_function" 43 + "--skip=test_build_http_function" 44 + "--skip=test_build_logs_extension" 45 + "--skip=test_build_telemetry_extension" 30 46 "--skip=test_download_example" 47 + "--skip=test_init_subcommand" 48 + "--skip=test_init_subcommand_without_override" 31 49 ]; 32 50 33 51 # remove date from version output to make reproducible ··· 36 54 ''; 37 55 38 56 postInstall = '' 39 - wrapProgram $out/bin/cargo-lambda --prefix PATH : ${lib.makeBinPath [ cargo-watch zig ]} 57 + wrapProgram $out/bin/cargo-lambda --prefix PATH : ${lib.makeBinPath [ zig ]} 40 58 ''; 41 59 42 60 CARGO_LAMBDA_BUILD_INFO = "(nixpkgs)";
+8 -21
pkgs/development/web/deno/default.nix
··· 2 2 , lib 3 3 , callPackage 4 4 , fetchFromGitHub 5 - , fetchpatch 6 5 , rustPlatform 7 6 , installShellFiles 8 7 , tinycc 9 8 , libiconv 10 - , libobjc 11 - , Security 12 - , CoreServices 13 - , Metal 14 - , Foundation 15 - , QuartzCore 9 + , darwin 16 10 , librusty_v8 ? callPackage ./librusty_v8.nix { } 17 11 }: 18 12 19 13 rustPlatform.buildRustPackage rec { 20 14 pname = "deno"; 21 - version = "1.31.1"; 15 + version = "1.32.3"; 22 16 23 17 src = fetchFromGitHub { 24 18 owner = "denoland"; 25 19 repo = pname; 26 20 rev = "v${version}"; 27 - hash = "sha256-0S5BSXWnv4DMcc8cijRQx6NyDReg5aJJT65TeNFlkkw="; 21 + hash = "sha256-zltMn8ped1Euia/zRCvkpSUzJwFTpbZgrnot21x5tSA="; 28 22 }; 29 - cargoHash = "sha256-7Xfnc91yQiAwAF5fvtiwnELUDb7LJeye3GtXNzYkUo8="; 30 - 31 - cargoPatches = [ 32 - # resolved in 1.31.2 33 - (fetchpatch { 34 - name = "CVE-2023-28446.patch"; 35 - url = "https://github.com/denoland/deno/commit/78d430103a8f6931154ddbbe19d36f3b8630286d.patch"; 36 - hash = "sha256-kXwr9wWxk1OaaubCr8pfmSp3TrJMQkbAg72nIHp/seA="; 37 - }) 38 - ]; 23 + cargoHash = "sha256-XDs3f44ta9MaJlaMWRVkNZd9DaOfoSHJluUmL68DWOw="; 39 24 40 25 postPatch = '' 41 26 # upstream uses lld on aarch64-darwin for faster builds ··· 44 29 ''; 45 30 46 31 nativeBuildInputs = [ installShellFiles ]; 47 - buildInputs = lib.optionals stdenv.isDarwin 48 - [ libiconv libobjc Security CoreServices Metal Foundation QuartzCore ]; 32 + buildInputs = lib.optionals stdenv.isDarwin ( 33 + [ libiconv darwin.libobjc ] ++ 34 + (with darwin.apple_sdk.frameworks; [ Security CoreServices Metal Foundation QuartzCore ]) 35 + ); 49 36 50 37 buildAndTestSubdir = "cli"; 51 38
+5 -5
pkgs/development/web/deno/librusty_v8.nix
··· 11 11 }; 12 12 in 13 13 fetch_librusty_v8 { 14 - version = "0.63.0"; 14 + version = "0.68.0"; 15 15 shas = { 16 - x86_64-linux = "sha256-D1NLAFMD1B4NOaBFsKBin5Gs+hmNC9LgNy3Z+w/1VGs="; 17 - aarch64-linux = "sha256-3V2WWMCjJNiuCRmx66ISBk+pzvCKCqvOE9F3YWESABo="; 18 - x86_64-darwin = "sha256-rUWSHxlFDT4cDoTLhSgRr04+2/oroeIiWURHbNDcMF8="; 19 - aarch64-darwin = "sha256-LaoIjHrBqWn0BIpAOaiHAg5qCGoPlSHtFhiAi4og9q0="; 16 + x86_64-linux = "sha256-yq7YPD2TM6Uw0EvCqIsZ/lbE1RLgIg7a42qDVrr5fX4="; 17 + aarch64-linux = "sha256-uZFm3hAeyEUUXqRJFLM3OBVfglH3AecjFKVgeJZu3L0="; 18 + x86_64-darwin = "sha256-YkxoggK0I4rT/KNJ30StDPLUc02Mdjwal3JH+s/YTQo="; 19 + aarch64-darwin = "sha256-aXE7W3sSzbhvC661BYTTHyHlihmVVtFSv85nSjGOLkU="; 20 20 }; 21 21 }
+11 -11
pkgs/development/web/deno/update/src.ts
··· 15 15 16 16 const log = logger("src"); 17 17 18 - const prefetchSha256 = (nixpkgs: string, version: string) => 18 + const prefetchHash = (nixpkgs: string, version: string) => 19 19 run("nix-prefetch", ["-f", nixpkgs, "deno.src", "--rev", version]); 20 - const prefetchCargoSha256 = (nixpkgs: string) => 20 + const prefetchCargoHash = (nixpkgs: string) => 21 21 run( 22 22 "nix-prefetch", 23 - [`{ sha256 }: (import ${nixpkgs} {}).deno.cargoDeps.overrideAttrs (_: { inherit sha256; })`], 23 + [`{ sha256 }: (import ${nixpkgs} {}).deno.cargoDeps.overrideAttrs (_: { hash = sha256; })`], 24 24 ); 25 25 26 26 const replace = (str: string, replacers: Replacer[]) => ··· 45 45 denoVersion: string, 46 46 ) { 47 47 log("Starting src update"); 48 - const trimVersion = denoVersion.substr(1); 49 - log("Fetching sha256 for:", trimVersion); 50 - const sha256 = await prefetchSha256(nixpkgs, denoVersion); 48 + const trimVersion = denoVersion.substring(1); 49 + log("Fetching hash for:", trimVersion); 50 + const sha256 = await prefetchHash(nixpkgs, denoVersion); 51 51 log("sha256 to update:", sha256); 52 52 await updateNix( 53 53 filePath, 54 54 [ 55 55 genVerReplacer("version", trimVersion), 56 - genShaReplacer("sha256", sha256), 56 + genShaReplacer("hash", sha256), 57 57 ], 58 58 ); 59 - log("Fetching cargoSha256 for:", sha256); 60 - const cargoSha256 = await prefetchCargoSha256(nixpkgs); 61 - log("cargoSha256 to update:", cargoSha256); 59 + log("Fetching cargoHash for:", sha256); 60 + const cargoHash = await prefetchCargoHash(nixpkgs); 61 + log("cargoHash to update:", cargoHash); 62 62 await updateNix( 63 63 filePath, 64 - [genShaReplacer("cargoSha256", cargoSha256)], 64 + [genShaReplacer("cargoHash", cargoHash)], 65 65 ); 66 66 log("Finished src update"); 67 67 }
+20 -16
pkgs/games/katago/default.nix
··· 14 14 , openssl 15 15 , writeShellScriptBin 16 16 , enableAVX2 ? stdenv.hostPlatform.avx2Support 17 + , backend ? "opencl" 17 18 , enableBigBoards ? false 18 - , enableCuda ? false 19 19 , enableContrib ? false 20 - , enableGPU ? true 21 20 , enableTcmalloc ? true 22 21 }: 23 22 24 - assert !enableGPU -> ( 25 - !enableCuda); 23 + assert lib.assertOneOf "backend" backend [ "opencl" "cuda" "tensorrt" "eigen" ]; 26 24 27 25 # N.b. older versions of cuda toolkit (e.g. 10) do not support newer versions 28 26 # of gcc. If you need to use cuda10, please override stdenv with gcc8Stdenv 29 27 stdenv.mkDerivation rec { 30 28 pname = "katago"; 31 - version = "1.11.0"; 32 - githash = "d8d0cd76cf73df08af3d7061a639488ae9494419"; 29 + version = "1.12.4"; 30 + githash = "75280bf26582090dd4985dca62bc7124116c856d"; 33 31 34 32 src = fetchFromGitHub { 35 33 owner = "lightvector"; 36 34 repo = "katago"; 37 35 rev = "v${version}"; 38 - sha256 = "sha256-TZKkkYe2PPzgPhItBZBSJDwU3anhsujuCGIYru55OtU="; 36 + sha256 = "sha256-1rznAxEFJ/Ah5/WiSwc+rtITOUOPYOua5BLKeqHOBr0="; 39 37 }; 40 38 41 39 fakegit = writeShellScriptBin "git" "echo ${githash}"; ··· 48 46 buildInputs = [ 49 47 libzip 50 48 boost 51 - ] ++ lib.optionals (!enableGPU) [ 49 + ] ++ lib.optionals (backend == "eigen") [ 52 50 eigen 53 - ] ++ lib.optionals (enableGPU && enableCuda) [ 51 + ] ++ lib.optionals (backend == "cuda") [ 54 52 cudaPackages.cudnn 55 53 cudaPackages.cudatoolkit 56 54 mesa.drivers 57 - ] ++ lib.optionals (enableGPU && !enableCuda) [ 55 + ] ++ lib.optionals (backend == "tensorrt") [ 56 + cudaPackages.cudatoolkit 57 + cudaPackages.tensorrt 58 + mesa.drivers 59 + ] ++ lib.optionals (backend == "opencl") [ 58 60 opencl-headers 59 61 ocl-icd 60 62 ] ++ lib.optionals enableContrib [ ··· 65 67 66 68 cmakeFlags = [ 67 69 "-DNO_GIT_REVISION=ON" 68 - ] ++ lib.optionals (!enableGPU) [ 69 - "-DUSE_BACKEND=EIGEN" 70 70 ] ++ lib.optionals enableAVX2 [ 71 71 "-DUSE_AVX2=ON" 72 - ] ++ lib.optionals (enableGPU && enableCuda) [ 72 + ] ++ lib.optionals (backend == "eigen") [ 73 + "-DUSE_BACKEND=EIGEN" 74 + ] ++ lib.optionals (backend == "cuda") [ 73 75 "-DUSE_BACKEND=CUDA" 74 - ] ++ lib.optionals (enableGPU && !enableCuda) [ 76 + ] ++ lib.optionals (backend == "tensorrt") [ 77 + "-DUSE_BACKEND=TENSORRT" 78 + ] ++ lib.optionals (backend == "opencl") [ 75 79 "-DUSE_BACKEND=OPENCL" 76 80 ] ++ lib.optionals enableContrib [ 77 81 "-DBUILD_DISTRIBUTED=1" ··· 85 89 86 90 preConfigure = '' 87 91 cd cpp/ 88 - '' + lib.optionalString enableCuda '' 92 + '' + lib.optionalString (backend == "cuda" || backend == "tensorrt") '' 89 93 export CUDA_PATH="${cudaPackages.cudatoolkit}" 90 94 export EXTRA_LDFLAGS="-L/run/opengl-driver/lib" 91 95 ''; ··· 93 97 installPhase = '' 94 98 runHook preInstall 95 99 mkdir -p $out/bin; cp katago $out/bin; 96 - '' + lib.optionalString enableCuda '' 100 + '' + lib.optionalString (backend == "cuda" || backend == "tensorrt") '' 97 101 wrapProgram $out/bin/katago \ 98 102 --prefix LD_LIBRARY_PATH : "/run/opengl-driver/lib" 99 103 '' + ''
+69
pkgs/games/path-of-building/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, runCommand, unzip, meson, ninja, pkg-config, qtbase, qttools, wrapQtAppsHook, luajit }: 2 + let 3 + dataVersion = "2.28.0"; 4 + frontendVersion = "unstable-2023-04-09"; 5 + in 6 + stdenv.mkDerivation { 7 + pname = "path-of-building"; 8 + version = "${dataVersion}-${frontendVersion}"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "ernstp"; 12 + repo = "pobfrontend"; 13 + rev = "9faa19aa362f975737169824c1578d5011487c18"; 14 + hash = "sha256-zhw2PZ6ZNMgZ2hG+a6AcYBkeg7kbBHNc2eSt4if17Wk="; 15 + }; 16 + 17 + data = runCommand "path-of-building-data" { 18 + src = fetchFromGitHub { 19 + owner = "PathOfBuildingCommunity"; 20 + repo = "PathOfBuilding"; 21 + rev = "v${dataVersion}"; 22 + hash = "sha256-IO6qUE6OcjNibljNzcJQlwji3DZqrBm7cvHedKuAwpM="; 23 + }; 24 + 25 + nativeBuildInputs = [ unzip ]; 26 + } 27 + '' 28 + # I have absolutely no idea how this file is generated 29 + # and I don't think I want to know. The Flatpak also does this. 30 + unzip -j -d $out $src/runtime-win32.zip lua/sha1.lua 31 + 32 + # Install the actual data 33 + cp -r $src/src $src/runtime/lua/*.lua $src/manifest.xml $out 34 + 35 + # Pretend this is an official build so we don't get the ugly "dev mode" warning 36 + substituteInPlace $out/manifest.xml --replace '<Version' '<Version platform="nixos"' 37 + touch $out/installed.cfg 38 + 39 + # Completely stub out the update check 40 + chmod +w $out/src/UpdateCheck.lua 41 + echo 'return "none"' > $out/src/UpdateCheck.lua 42 + ''; 43 + 44 + nativeBuildInputs = [ meson ninja pkg-config qttools wrapQtAppsHook ]; 45 + buildInputs = [ qtbase luajit luajit.pkgs.lua-curl ]; 46 + dontWrapQtApps = true; 47 + 48 + installPhase = '' 49 + runHook preInstall 50 + install -Dm555 pobfrontend $out/bin/pobfrontend 51 + runHook postInstall 52 + ''; 53 + 54 + postFixup = '' 55 + wrapQtApp $out/bin/pobfrontend \ 56 + --set LUA_PATH "$LUA_PATH" \ 57 + --set LUA_CPATH "$LUA_CPATH" \ 58 + --chdir "$data" 59 + ''; 60 + 61 + meta = { 62 + description = "Offline build planner for Path of Exile"; 63 + homepage = "https://pathofbuilding.community/"; 64 + license = lib.licenses.mit; 65 + maintainers = [ lib.maintainers.k900 ]; 66 + mainProgram = "pobfrontend"; 67 + broken = stdenv.isDarwin; # doesn't find uic6 for some reason 68 + }; 69 + }
+9 -13
pkgs/servers/monitoring/grafana-agent/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "grafana-agent"; 5 - version = "0.30.2"; 5 + version = "0.32.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "grafana"; 10 10 repo = "agent"; 11 - sha256 = "sha256-yexCK4GBA997CShtuQQTs1GBsXoknUnWWO0Uotb9EG8="; 11 + sha256 = "sha256-t5rQSNLpX0ktK4mKgX6OhNLkANQ1LbFEjmQo/r7UHOM="; 12 12 }; 13 13 14 - vendorHash = "sha256-Cl3oygH1RPF+ZdJvkDmr7eyU5daxaZwNE8pQOHK/qP4="; 14 + vendorHash = "sha256-5beHG1mZkNcDhccleqTlMA+uiV5d6SSh2QWiL4g3O28="; 15 + proxyVendor = true; # darwin/linux hash mismatch 15 16 16 17 ldflags = let 17 18 prefix = "github.com/grafana/agent/pkg/build"; ··· 32 33 ]; 33 34 34 35 subPackages = [ 35 - "cmd/agent" 36 - "cmd/agentctl" 36 + "cmd/grafana-agent" 37 + "cmd/grafana-agentctl" 37 38 ]; 38 39 39 40 # uses go-systemd, which uses libsystemd headers 40 41 # https://github.com/coreos/go-systemd/issues/351 41 42 env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.isLinux [ "-I${lib.getDev systemd}/include" ]); 42 43 43 - # tries to access /sys: https://github.com/grafana/agent/issues/333 44 - preBuild = '' 45 - rm pkg/integrations/node_exporter/node_exporter_test.go 46 - ''; 47 - 48 44 # go-systemd uses libsystemd under the hood, which does dlopen(libsystemd) at 49 45 # runtime. 50 46 # Add to RUNPATH so it can be found. 51 47 postFixup = lib.optionalString stdenv.isLinux '' 52 48 patchelf \ 53 - --set-rpath "${lib.makeLibraryPath [ (lib.getLib systemd) ]}:$(patchelf --print-rpath $out/bin/agent)" \ 54 - $out/bin/agent 49 + --set-rpath "${lib.makeLibraryPath [ (lib.getLib systemd) ]}:$(patchelf --print-rpath $out/bin/grafana-agent)" \ 50 + $out/bin/grafana-agent 55 51 ''; 56 52 57 53 passthru.tests.grafana-agent = nixosTests.grafana-agent; ··· 60 56 description = "A lightweight subset of Prometheus and more, optimized for Grafana Cloud"; 61 57 license = licenses.asl20; 62 58 homepage = "https://grafana.com/products/cloud"; 63 - maintainers = with maintainers; [ flokli ]; 59 + maintainers = with maintainers; [ flokli indeednotjames ]; 64 60 }; 65 61 }
+2
pkgs/servers/monitoring/loki/default.nix
··· 28 28 "cmd/logcli" 29 29 ]; 30 30 31 + tags = ["promtail_journal_enabled"]; 32 + 31 33 nativeBuildInputs = [ makeWrapper ]; 32 34 buildInputs = lib.optionals stdenv.isLinux [ systemd.dev ]; 33 35
+2 -2
pkgs/servers/samba/4.x.nix
··· 51 51 52 52 stdenv.mkDerivation rec { 53 53 pname = "samba"; 54 - version = "4.17.5"; 54 + version = "4.17.7"; 55 55 56 56 src = fetchurl { 57 57 url = "mirror://samba/pub/samba/stable/${pname}-${version}.tar.gz"; 58 - hash = "sha256-67eIDUdP/AnXO1/He8vWV/YjWRAzczGpwk1/acoRRCs="; 58 + hash = "sha256-lcnBa2VKiM+u/ZWAUt1XPi+F7N8RTk7Owxh1N6CU2Rk="; 59 59 }; 60 60 61 61 outputs = [ "out" "dev" "man" ];
+19 -6
pkgs/tools/graphics/mangohud/default.nix
··· 13 13 , hwdata 14 14 , libX11 15 15 , mangohud32 16 - , vulkan-headers 17 16 , appstream 18 17 , glslang 19 18 , makeWrapper ··· 22 21 , ninja 23 22 , pkg-config 24 23 , unzip 25 - , vulkan-loader 26 24 , libXNVCtrl 27 25 , wayland 28 26 , glew ··· 69 67 sha256 = "sha256-PDjyddV5KxKGORECWUMp6YsXc3kks0T5gxKrCZKbdL4="; 70 68 }; 71 69 }; 70 + 71 + # Derived from subprojects/vulkan-headers.wrap 72 + vulkan-headers = rec { 73 + version = "1.2.158"; 74 + src = fetchFromGitHub { 75 + owner = "KhronosGroup"; 76 + repo = "Vulkan-Headers"; 77 + rev = "v${version}"; 78 + hash = "sha256-5uyk2nMwV1MjXoa3hK/WUeGLwpINJJEvY16kc5DEaks="; 79 + }; 80 + patch = fetchurl { 81 + url = "https://wrapdb.mesonbuild.com/v2/vulkan-headers_${version}-2/get_patch"; 82 + hash = "sha256-hgNYz15z9FjNHoj4w4EW0SOrQh1c4uQSnsOOrt2CDhc="; 83 + }; 84 + }; 72 85 in stdenv.mkDerivation rec { 73 86 pname = "mangohud"; 74 87 version = "0.6.8"; ··· 88 101 cd "$sourceRoot/subprojects" 89 102 cp -R --no-preserve=mode,ownership ${imgui.src} imgui-${imgui.version} 90 103 cp -R --no-preserve=mode,ownership ${spdlog.src} spdlog-${spdlog.version} 104 + cp -R --no-preserve=mode,ownership ${vulkan-headers.src} Vulkan-Headers-${vulkan-headers.version} 91 105 )''; 92 106 107 + env.NIX_CFLAGS_COMPILE = "-I${vulkan-headers.src}/include"; 108 + 93 109 patches = [ 94 110 # Hard code dependencies. Can't use makeWrapper since the Vulkan 95 111 # layer can be used without the mangohud executable by setting MANGOHUD=1. ··· 126 142 cd subprojects 127 143 unzip ${imgui.patch} 128 144 unzip ${spdlog.patch} 145 + unzip ${vulkan-headers.patch} 129 146 )''; 130 147 131 148 mesonFlags = [ 132 - "-Duse_system_vulkan=enabled" 133 - "-Dvulkan_datadir=${vulkan-headers}/share" 134 149 "-Dwith_wayland=enabled" 135 150 ] ++ lib.optionals gamescopeSupport [ 136 151 "-Dmangoapp_layer=true" ··· 147 162 ninja 148 163 pkg-config 149 164 unzip 150 - vulkan-loader 151 165 ]; 152 166 153 167 buildInputs = [ ··· 159 173 glew 160 174 glfw 161 175 nlohmann_json 162 - vulkan-headers 163 176 xorg.libXrandr 164 177 ]; 165 178
+2 -2
pkgs/tools/misc/qmk/default.nix
··· 11 11 12 12 python3.pkgs.buildPythonApplication rec { 13 13 pname = "qmk"; 14 - version = "1.1.1"; 14 + version = "1.1.2"; 15 15 format = "pyproject"; 16 16 17 17 src = python3.pkgs.fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-3QKOCevNYfi9+MuCkp36/A4AfZelo4A7RYGbRkF3Mmk="; 19 + hash = "sha256-+HH4jxoMoxujGgCdcWQX5GvFOKT4347eaoAckHbCKZg="; 20 20 }; 21 21 22 22 nativeBuildInputs = with python3.pkgs; [
+3 -3
pkgs/tools/misc/starship/default.nix
··· 14 14 15 15 rustPlatform.buildRustPackage rec { 16 16 pname = "starship"; 17 - version = "1.14.1"; 17 + version = "1.14.2"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "starship"; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - hash = "sha256-KhuAgC58oEdUiCWZjUShfDpNe0m0ENfn2QJVOlzpIyo="; 23 + hash = "sha256-t+Ur6QmemMz6WAZnii7f2O+9R7hPp+5oej4PuaifznE="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ installShellFiles cmake ]; ··· 36 36 --zsh <($out/bin/starship completions zsh) 37 37 ''; 38 38 39 - cargoHash = "sha256-gdJzH2/gJDg3sNR28Daq4B+KEn565jXhkxZFsrVx/uI="; 39 + cargoHash = "sha256-NSUId0CXTRF1Qqo9XPDgxY2vMyMBuJtJYGGuQ0HHk90="; 40 40 41 41 nativeCheckInputs = [ git ]; 42 42
+32
pkgs/tools/misc/twm/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , stdenv 4 + , rustPlatform 5 + , openssl 6 + , pkg-config 7 + , Security 8 + }: 9 + 10 + rustPlatform.buildRustPackage rec { 11 + pname = "twm"; 12 + version = "0.1.1"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "vinnymeller"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + sha256 = "sha256-YURzNHbmGLEqNEcc4FImIqn/KcRwGdxYXM5QzM3dxbo="; 19 + }; 20 + 21 + cargoHash = "sha256-sc2/eQZjY1x5KIzQ+yr8NgAMKJ6iHWwCy6fRSBp7Fw4="; 22 + 23 + nativeBuildInputs = [ pkg-config ]; 24 + buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; 25 + 26 + meta = with lib; { 27 + description = "A customizable workspace manager for tmux"; 28 + homepage = "https://github.com/vinnymeller/twm"; 29 + license = licenses.gpl2Only; 30 + maintainers = with maintainers; [ vinnymeller ]; 31 + }; 32 + }
+3 -3
pkgs/tools/misc/zellij/default.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "zellij"; 18 - version = "0.35.2"; 18 + version = "0.36.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "zellij-org"; 22 22 repo = "zellij"; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-2wgv84Qm/X5mcEcM5ch7tFHZVg/xassUOtssSzbr0fs="; 24 + sha256 = "sha256-6hd4vZfcztD+i3hRP057Z9kYbl/QYK7e5X18tKRmNVQ="; 25 25 }; 26 26 27 - cargoSha256 = "sha256-GAPzWmFUtLWlcDAGHhEowvjM/OKRUuuD/0aa1tbmKuI="; 27 + cargoSha256 = "sha256-71HQ/75tl6ogGm5geDPZtz8oYCxUkAWUrU1lhK2AG0c="; 28 28 29 29 nativeBuildInputs = [ 30 30 mandown
+2 -2
pkgs/tools/networking/qrcp/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "qrcp"; 10 - version = "0.10.0"; 10 + version = "0.10.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "claudiodangelis"; 14 14 repo = "qrcp"; 15 15 rev = version; 16 - sha256 = "sha256-pGFqKnOZhwuyN0lHmQPLQ4bJhMsMYoxbh0oEJdK1wAQ="; 16 + sha256 = "sha256-3GPZ6+gx5i/xULM3lq7D+b0onBC6clgeZsI1CvZ943s="; 17 17 }; 18 18 19 19 vendorSha256 = "sha256-XVBDPhQsnUdftS+jZ1zWZlfSbFXxXrKSqiGTPpLq5i0=";
+19 -11
pkgs/top-level/all-packages.nix
··· 3180 3180 3181 3181 cudd = callPackage ../development/libraries/cudd { }; 3182 3182 3183 - cue = callPackage ../development/tools/cue { 3184 - buildGoModule = buildGo118Module; # tests fail with 1.19 3185 - }; 3183 + cue = callPackage ../development/tools/cue { }; 3186 3184 3187 3185 writeCueValidator = callPackage ../development/tools/cue/validator.nix { }; 3188 3186 ··· 6390 6388 6391 6389 changetower = callPackage ../tools/networking/changetower { }; 6392 6390 6391 + chatblade = callPackage ../applications/misc/chatblade { }; 6392 + 6393 6393 checkbashisms = callPackage ../development/tools/misc/checkbashisms { }; 6394 6394 6395 6395 checkmate = callPackage ../development/tools/checkmate { }; ··· 6624 6624 6625 6625 deer = callPackage ../shells/zsh/zsh-deer { }; 6626 6626 6627 - deno = callPackage ../development/web/deno { 6628 - inherit (darwin) libobjc; 6629 - inherit (darwin.apple_sdk.frameworks) 6630 - Security CoreServices Metal Foundation QuartzCore; 6631 - }; 6627 + deno = callPackage ../development/web/deno { }; 6632 6628 6633 6629 detox = callPackage ../tools/misc/detox { }; 6634 6630 ··· 11408 11404 inherit (qt5) qttools; 11409 11405 }; 11410 11406 11407 + revolt-desktop = callPackage ../applications/networking/instant-messengers/revolt-desktop { }; 11408 + 11411 11409 rbw = callPackage ../tools/security/rbw { 11412 11410 inherit (darwin.apple_sdk.frameworks) Security; 11413 11411 }; ··· 13026 13024 ttygif = callPackage ../tools/misc/ttygif { }; 13027 13025 13028 13026 ttylog = callPackage ../tools/misc/ttylog { }; 13027 + 13028 + twm = callPackage ../tools/misc/twm { 13029 + inherit (darwin.apple_sdk.frameworks) Security; 13030 + }; 13029 13031 13030 13032 txtpbfmt = callPackage ../development/tools/txtpbfmt { }; 13031 13033 ··· 16085 16087 }; 16086 16088 cargo-insta = callPackage ../development/tools/rust/cargo-insta { }; 16087 16089 cargo-lambda = callPackage ../development/tools/rust/cargo-lambda { 16088 - inherit (darwin.apple_sdk.frameworks) Security; 16090 + inherit (darwin.apple_sdk.frameworks) CoreServices Security; 16089 16091 }; 16090 16092 cargo-limit = callPackage ../development/tools/rust/cargo-limit { }; 16091 16093 cargo-make = callPackage ../development/tools/rust/cargo-make { ··· 36022 36024 katago = callPackage ../games/katago { }; 36023 36025 36024 36026 katagoWithCuda = katago.override { 36025 - enableCuda = true; 36027 + backend = "cuda"; 36026 36028 }; 36027 36029 36028 36030 katagoCPU = katago.override { 36029 - enableGPU = false; 36031 + backend = "eigen"; 36032 + }; 36033 + 36034 + katagoTensorRT = katago.override { 36035 + backend = "tensorrt"; 36030 36036 }; 36031 36037 36032 36038 klavaro = callPackage ../games/klavaro { }; ··· 36249 36255 pacvim = callPackage ../games/pacvim { }; 36250 36256 36251 36257 papermc = callPackage ../games/papermc { }; 36258 + 36259 + path-of-building = qt6Packages.callPackage ../games/path-of-building {}; 36252 36260 36253 36261 pentobi = libsForQt5.callPackage ../games/pentobi { }; 36254 36262