Merge staging-next into staging

authored by

nixpkgs-ci[bot] and committed by
GitHub
6e0bdfa0 1eb7c2d9

+1966 -11391
+5
maintainers/maintainer-list.nix
··· 26415 26415 github = "zfnmxt"; 26416 26416 githubId = 37446532; 26417 26417 }; 26418 + zh4ngx = { 26419 + github = "zh4ngx"; 26420 + githubId = 1329212; 26421 + name = "Andy Zhang"; 26422 + }; 26418 26423 zhaofengli = { 26419 26424 email = "hello@zhaofeng.li"; 26420 26425 matrix = "@zhaofeng:zhaofeng.li";
+2
nixos/doc/manual/release-notes/rl-2505.section.md
··· 234 234 235 235 - `pytestFlagsArray` and `unittestFlagsArray` are kept for compatibility purposes. They continue to be Bash-expanded before concatenated. This compatibility layer will be removed in future releases. 236 236 237 + - The `haka` package and module has been removed because the package was broken and unmaintained for 9 years. 238 + 237 239 - `strawberry` has been updated to 1.2, which drops support for the VLC backend and Qt 5. The `strawberry-qt5` package 238 240 and `withGstreamer`/`withVlc` override options have been removed due to this. 239 241
-1
nixos/modules/module-list.nix
··· 1385 1385 ./services/security/esdm.nix 1386 1386 ./services/security/fail2ban.nix 1387 1387 ./services/security/fprintd.nix 1388 - ./services/security/haka.nix 1389 1388 ./services/security/haveged.nix 1390 1389 ./services/security/hockeypuck.nix 1391 1390 ./services/security/hologram-agent.nix
+3
nixos/modules/rename.nix
··· 292 292 See https://www.isc.org/blogs/isc-dhcp-eol/ for details. 293 293 Please switch to a different implementation like kea or dnsmasq. 294 294 '') 295 + (mkRemovedOptionModule [ "services" "haka" ] '' 296 + The corresponding package was broken and removed from nixpkgs. 297 + '') 295 298 (mkRemovedOptionModule [ "services" "tedicross" ] '' 296 299 The corresponding package was broken and removed from nixpkgs. 297 300 '')
+2 -2
nixos/modules/services/networking/nats.nix
··· 22 22 nativeBuildInputs = [ nats-server ]; 23 23 } 24 24 '' 25 - nats-server --config "${configFile}" -t 26 - ln -s "${configFile}" "$out" 25 + nats-server --config "${file}" -t 26 + ln -s "${file}" "$out" 27 27 '' 28 28 ) { }; 29 29
-154
nixos/modules/services/security/haka.nix
··· 1 - # This module defines global configuration for Haka. 2 - { 3 - config, 4 - lib, 5 - pkgs, 6 - ... 7 - }: 8 - let 9 - 10 - cfg = config.services.haka; 11 - 12 - haka = cfg.package; 13 - 14 - hakaConf = pkgs.writeText "haka.conf" '' 15 - [general] 16 - configuration = ${ 17 - if lib.strings.hasPrefix "/" cfg.configFile then 18 - "${cfg.configFile}" 19 - else 20 - "${haka}/share/haka/sample/${cfg.configFile}" 21 - } 22 - ${lib.optionalString (builtins.lessThan 0 cfg.threads) "thread = ${cfg.threads}"} 23 - 24 - [packet] 25 - ${lib.optionalString cfg.pcap ''module = "packet/pcap"''} 26 - ${lib.optionalString cfg.nfqueue ''module = "packet/nqueue"''} 27 - ${lib.optionalString cfg.dump.enable ''dump = "yes"''} 28 - ${lib.optionalString cfg.dump.enable ''dump_input = "${cfg.dump.input}"''} 29 - ${lib.optionalString cfg.dump.enable ''dump_output = "${cfg.dump.output}"''} 30 - 31 - interfaces = "${lib.strings.concatStringsSep "," cfg.interfaces}" 32 - 33 - [log] 34 - # Select the log module 35 - module = "log/syslog" 36 - 37 - # Set the default logging level 38 - #level = "info,packet=debug" 39 - 40 - [alert] 41 - # Select the alert module 42 - module = "alert/syslog" 43 - 44 - # Disable alert on standard output 45 - #alert_on_stdout = no 46 - 47 - # alert/file module option 48 - #file = "/dev/null" 49 - ''; 50 - 51 - in 52 - 53 - { 54 - 55 - ###### interface 56 - 57 - options = { 58 - 59 - services.haka = { 60 - 61 - enable = lib.mkEnableOption "Haka"; 62 - 63 - package = lib.mkPackageOption pkgs "haka" { }; 64 - 65 - configFile = lib.mkOption { 66 - default = "empty.lua"; 67 - example = "/srv/haka/myfilter.lua"; 68 - type = lib.types.str; 69 - description = '' 70 - Specify which configuration file Haka uses. 71 - It can be absolute path or a path relative to the sample directory of 72 - the haka git repo. 73 - ''; 74 - }; 75 - 76 - interfaces = lib.mkOption { 77 - default = [ "eth0" ]; 78 - example = [ "any" ]; 79 - type = with lib.types; listOf str; 80 - description = '' 81 - Specify which interface(s) Haka listens to. 82 - Use 'any' to listen to all interfaces. 83 - ''; 84 - }; 85 - 86 - threads = lib.mkOption { 87 - default = 0; 88 - example = 4; 89 - type = lib.types.int; 90 - description = '' 91 - The number of threads that will be used. 92 - All system threads are used by default. 93 - ''; 94 - }; 95 - 96 - pcap = lib.mkOption { 97 - default = true; 98 - type = lib.types.bool; 99 - description = "Whether to enable pcap"; 100 - }; 101 - 102 - nfqueue = lib.mkEnableOption "nfqueue"; 103 - 104 - dump.enable = lib.mkEnableOption "dump"; 105 - dump.input = lib.mkOption { 106 - default = "/tmp/input.pcap"; 107 - example = "/path/to/file.pcap"; 108 - type = lib.types.path; 109 - description = "Path to file where incoming packets are dumped"; 110 - }; 111 - 112 - dump.output = lib.mkOption { 113 - default = "/tmp/output.pcap"; 114 - example = "/path/to/file.pcap"; 115 - type = lib.types.path; 116 - description = "Path to file where outgoing packets are dumped"; 117 - }; 118 - }; 119 - }; 120 - 121 - ###### implementation 122 - 123 - config = lib.mkIf cfg.enable { 124 - 125 - assertions = [ 126 - { 127 - assertion = cfg.pcap != cfg.nfqueue; 128 - message = "either pcap or nfqueue can be enabled, not both."; 129 - } 130 - { 131 - assertion = cfg.nfqueue -> !cfg.dump.enable; 132 - message = "dump can only be used with nfqueue."; 133 - } 134 - { 135 - assertion = cfg.interfaces != [ ]; 136 - message = "at least one interface must be specified."; 137 - } 138 - ]; 139 - 140 - environment.systemPackages = [ haka ]; 141 - 142 - systemd.services.haka = { 143 - description = "Haka"; 144 - wantedBy = [ "multi-user.target" ]; 145 - after = [ "network.target" ]; 146 - serviceConfig = { 147 - ExecStart = "${haka}/bin/haka -c ${hakaConf}"; 148 - ExecStop = "${haka}/bin/hakactl stop"; 149 - User = "root"; 150 - Type = "forking"; 151 - }; 152 - }; 153 - }; 154 - }
-27
nixos/tests/haka.nix
··· 1 - # This test runs haka and probes it with hakactl 2 - 3 - import ./make-test-python.nix ( 4 - { pkgs, ... }: 5 - { 6 - name = "haka"; 7 - meta = with pkgs.lib.maintainers; { 8 - maintainers = [ tvestelind ]; 9 - }; 10 - 11 - nodes = { 12 - haka = 13 - { ... }: 14 - { 15 - services.haka.enable = true; 16 - }; 17 - }; 18 - 19 - testScript = '' 20 - start_all() 21 - 22 - haka.wait_for_unit("haka.service") 23 - haka.succeed("hakactl status") 24 - haka.succeed("hakactl stop") 25 - ''; 26 - } 27 - )
+27 -3
pkgs/applications/audio/openutau/default.nix
··· 6 6 , dbus 7 7 , fontconfig 8 8 , portaudio 9 + , copyDesktopItems 10 + , makeDesktopItem 9 11 }: 10 12 11 13 buildDotnetModule rec { ··· 18 20 rev = "build/${version}"; 19 21 hash = "sha256-HE0KxPKU7tYZbYiCL8sm6I/NZiX0MJktt+5d6qB1A2E="; 20 22 }; 23 + 24 + nativeBuildInputs = [ copyDesktopItems ]; 25 + 26 + desktopItems = [ 27 + (makeDesktopItem { 28 + name = "openutau"; 29 + desktopName = "OpenUtau"; 30 + startupWMClass = "openutau"; 31 + icon = "openutau"; 32 + genericName = "Utau"; 33 + comment = "Open source UTAU successor"; 34 + exec = "OpenUtau"; 35 + categories = [ "Music" ]; 36 + }) 37 + ]; 21 38 22 39 dotnet-sdk = dotnetCorePackages.sdk_8_0; 23 40 dotnet-runtime = dotnetCorePackages.runtime_8_0; ··· 58 75 else if (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) then "linux-arm64" 59 76 else if stdenv.hostPlatform.isDarwin then "osx" 60 77 else null; 61 - in lib.optionalString (runtime != null) '' 62 - cp runtimes/${runtime}/native/libworldline${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/OpenUtau/ 63 - ''; 78 + shouldInstallResampler = lib.optionalString (runtime != null) '' 79 + cp runtimes/${runtime}/native/libworldline${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/OpenUtau/ 80 + ''; 81 + shouldInstallDesktopItem = lib.optionalString stdenv.hostPlatform.isLinux '' 82 + install -Dm655 -t $out/share/icons/hicolor/scalable/apps Logo/openutau.svg 83 + ''; 84 + in '' 85 + ${shouldInstallResampler} 86 + ${shouldInstallDesktopItem} 87 + ''; 64 88 65 89 passthru.updateScript = ./update.sh; 66 90
-9995
pkgs/applications/blockchains/lighthouse/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 = "Inflector" 7 - version = "0.11.4" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" 10 - dependencies = [ 11 - "lazy_static", 12 - "regex", 13 - ] 14 - 15 - [[package]] 16 - name = "account_manager" 17 - version = "0.3.5" 18 - dependencies = [ 19 - "account_utils", 20 - "bls", 21 - "clap", 22 - "clap_utils", 23 - "directory", 24 - "environment", 25 - "eth2", 26 - "eth2_keystore", 27 - "eth2_network_config", 28 - "eth2_wallet", 29 - "eth2_wallet_manager", 30 - "filesystem", 31 - "safe_arith", 32 - "sensitive_url", 33 - "slashing_protection", 34 - "slot_clock", 35 - "tempfile", 36 - "tokio", 37 - "types", 38 - "validator_dir", 39 - ] 40 - 41 - [[package]] 42 - name = "account_utils" 43 - version = "0.1.0" 44 - dependencies = [ 45 - "directory", 46 - "eth2_keystore", 47 - "eth2_wallet", 48 - "filesystem", 49 - "rand", 50 - "regex", 51 - "rpassword", 52 - "serde", 53 - "serde_yaml", 54 - "slog", 55 - "types", 56 - "validator_dir", 57 - "zeroize", 58 - ] 59 - 60 - [[package]] 61 - name = "addr2line" 62 - version = "0.22.0" 63 - source = "registry+https://github.com/rust-lang/crates.io-index" 64 - checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 65 - dependencies = [ 66 - "gimli", 67 - ] 68 - 69 - [[package]] 70 - name = "adler" 71 - version = "1.0.2" 72 - source = "registry+https://github.com/rust-lang/crates.io-index" 73 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 74 - 75 - [[package]] 76 - name = "adler32" 77 - version = "1.2.0" 78 - source = "registry+https://github.com/rust-lang/crates.io-index" 79 - checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 80 - 81 - [[package]] 82 - name = "aead" 83 - version = "0.4.3" 84 - source = "registry+https://github.com/rust-lang/crates.io-index" 85 - checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" 86 - dependencies = [ 87 - "generic-array", 88 - ] 89 - 90 - [[package]] 91 - name = "aead" 92 - version = "0.5.2" 93 - source = "registry+https://github.com/rust-lang/crates.io-index" 94 - checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 95 - dependencies = [ 96 - "crypto-common", 97 - "generic-array", 98 - ] 99 - 100 - [[package]] 101 - name = "aes" 102 - version = "0.7.5" 103 - source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 105 - dependencies = [ 106 - "cfg-if", 107 - "cipher 0.3.0", 108 - "cpufeatures", 109 - "ctr 0.8.0", 110 - "opaque-debug", 111 - ] 112 - 113 - [[package]] 114 - name = "aes" 115 - version = "0.8.4" 116 - source = "registry+https://github.com/rust-lang/crates.io-index" 117 - checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 118 - dependencies = [ 119 - "cfg-if", 120 - "cipher 0.4.4", 121 - "cpufeatures", 122 - ] 123 - 124 - [[package]] 125 - name = "aes-gcm" 126 - version = "0.9.2" 127 - source = "registry+https://github.com/rust-lang/crates.io-index" 128 - checksum = "bc3be92e19a7ef47457b8e6f90707e12b6ac5d20c6f3866584fa3be0787d839f" 129 - dependencies = [ 130 - "aead 0.4.3", 131 - "aes 0.7.5", 132 - "cipher 0.3.0", 133 - "ctr 0.7.0", 134 - "ghash 0.4.4", 135 - "subtle", 136 - ] 137 - 138 - [[package]] 139 - name = "aes-gcm" 140 - version = "0.10.3" 141 - source = "registry+https://github.com/rust-lang/crates.io-index" 142 - checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 143 - dependencies = [ 144 - "aead 0.5.2", 145 - "aes 0.8.4", 146 - "cipher 0.4.4", 147 - "ctr 0.9.2", 148 - "ghash 0.5.1", 149 - "subtle", 150 - ] 151 - 152 - [[package]] 153 - name = "ahash" 154 - version = "0.8.11" 155 - source = "registry+https://github.com/rust-lang/crates.io-index" 156 - checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 157 - dependencies = [ 158 - "cfg-if", 159 - "once_cell", 160 - "version_check", 161 - "zerocopy", 162 - ] 163 - 164 - [[package]] 165 - name = "aho-corasick" 166 - version = "1.1.3" 167 - source = "registry+https://github.com/rust-lang/crates.io-index" 168 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 169 - dependencies = [ 170 - "memchr", 171 - ] 172 - 173 - [[package]] 174 - name = "allocator-api2" 175 - version = "0.2.18" 176 - source = "registry+https://github.com/rust-lang/crates.io-index" 177 - checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 178 - 179 - [[package]] 180 - name = "alloy-consensus" 181 - version = "0.2.0" 182 - source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "f58047cc851e58c26224521d1ecda466e3d746ebca0274cd5427aa660a88c353" 184 - dependencies = [ 185 - "alloy-eips", 186 - "alloy-primitives", 187 - "alloy-rlp", 188 - "c-kzg", 189 - ] 190 - 191 - [[package]] 192 - name = "alloy-eips" 193 - version = "0.2.0" 194 - source = "registry+https://github.com/rust-lang/crates.io-index" 195 - checksum = "d32a3e14fa0d152d00bd8daf605eb74ad397efb0f54bd7155585823dddb4401e" 196 - dependencies = [ 197 - "alloy-primitives", 198 - "alloy-rlp", 199 - "c-kzg", 200 - "once_cell", 201 - "serde", 202 - "sha2 0.10.8", 203 - ] 204 - 205 - [[package]] 206 - name = "alloy-primitives" 207 - version = "0.7.7" 208 - source = "registry+https://github.com/rust-lang/crates.io-index" 209 - checksum = "ccb3ead547f4532bc8af961649942f0b9c16ee9226e26caa3f38420651cc0bf4" 210 - dependencies = [ 211 - "alloy-rlp", 212 - "bytes", 213 - "cfg-if", 214 - "const-hex", 215 - "derive_more", 216 - "hex-literal", 217 - "itoa", 218 - "k256 0.13.3", 219 - "keccak-asm", 220 - "proptest", 221 - "rand", 222 - "ruint", 223 - "serde", 224 - "tiny-keccak", 225 - ] 226 - 227 - [[package]] 228 - name = "alloy-rlp" 229 - version = "0.3.7" 230 - source = "registry+https://github.com/rust-lang/crates.io-index" 231 - checksum = "a43b18702501396fa9bcdeecd533bc85fac75150d308fc0f6800a01e6234a003" 232 - dependencies = [ 233 - "alloy-rlp-derive", 234 - "arrayvec", 235 - "bytes", 236 - ] 237 - 238 - [[package]] 239 - name = "alloy-rlp-derive" 240 - version = "0.3.7" 241 - source = "registry+https://github.com/rust-lang/crates.io-index" 242 - checksum = "d83524c1f6162fcb5b0decf775498a125066c86dda6066ed609531b0e912f85a" 243 - dependencies = [ 244 - "proc-macro2", 245 - "quote", 246 - "syn 2.0.72", 247 - ] 248 - 249 - [[package]] 250 - name = "android-tzdata" 251 - version = "0.1.1" 252 - source = "registry+https://github.com/rust-lang/crates.io-index" 253 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 254 - 255 - [[package]] 256 - name = "android_system_properties" 257 - version = "0.1.5" 258 - source = "registry+https://github.com/rust-lang/crates.io-index" 259 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 260 - dependencies = [ 261 - "libc", 262 - ] 263 - 264 - [[package]] 265 - name = "anes" 266 - version = "0.1.6" 267 - source = "registry+https://github.com/rust-lang/crates.io-index" 268 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 269 - 270 - [[package]] 271 - name = "anstream" 272 - version = "0.6.14" 273 - source = "registry+https://github.com/rust-lang/crates.io-index" 274 - checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 275 - dependencies = [ 276 - "anstyle", 277 - "anstyle-parse", 278 - "anstyle-query", 279 - "anstyle-wincon", 280 - "colorchoice", 281 - "is_terminal_polyfill", 282 - "utf8parse", 283 - ] 284 - 285 - [[package]] 286 - name = "anstyle" 287 - version = "1.0.7" 288 - source = "registry+https://github.com/rust-lang/crates.io-index" 289 - checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 290 - 291 - [[package]] 292 - name = "anstyle-parse" 293 - version = "0.2.4" 294 - source = "registry+https://github.com/rust-lang/crates.io-index" 295 - checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 296 - dependencies = [ 297 - "utf8parse", 298 - ] 299 - 300 - [[package]] 301 - name = "anstyle-query" 302 - version = "1.1.0" 303 - source = "registry+https://github.com/rust-lang/crates.io-index" 304 - checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" 305 - dependencies = [ 306 - "windows-sys 0.52.0", 307 - ] 308 - 309 - [[package]] 310 - name = "anstyle-wincon" 311 - version = "3.0.3" 312 - source = "registry+https://github.com/rust-lang/crates.io-index" 313 - checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 314 - dependencies = [ 315 - "anstyle", 316 - "windows-sys 0.52.0", 317 - ] 318 - 319 - [[package]] 320 - name = "anyhow" 321 - version = "1.0.86" 322 - source = "registry+https://github.com/rust-lang/crates.io-index" 323 - checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 324 - 325 - [[package]] 326 - name = "arbitrary" 327 - version = "1.3.2" 328 - source = "registry+https://github.com/rust-lang/crates.io-index" 329 - checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 330 - dependencies = [ 331 - "derive_arbitrary", 332 - ] 333 - 334 - [[package]] 335 - name = "arc-swap" 336 - version = "1.7.1" 337 - source = "registry+https://github.com/rust-lang/crates.io-index" 338 - checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 339 - 340 - [[package]] 341 - name = "archery" 342 - version = "0.4.0" 343 - source = "registry+https://github.com/rust-lang/crates.io-index" 344 - checksum = "0a8da9bc4c4053ee067669762bcaeea6e241841295a2b6c948312dad6ef4cc02" 345 - dependencies = [ 346 - "static_assertions", 347 - ] 348 - 349 - [[package]] 350 - name = "ark-ff" 351 - version = "0.3.0" 352 - source = "registry+https://github.com/rust-lang/crates.io-index" 353 - checksum = "6b3235cc41ee7a12aaaf2c575a2ad7b46713a8a50bda2fc3b003a04845c05dd6" 354 - dependencies = [ 355 - "ark-ff-asm 0.3.0", 356 - "ark-ff-macros 0.3.0", 357 - "ark-serialize 0.3.0", 358 - "ark-std 0.3.0", 359 - "derivative", 360 - "num-bigint", 361 - "num-traits", 362 - "paste", 363 - "rustc_version 0.3.3", 364 - "zeroize", 365 - ] 366 - 367 - [[package]] 368 - name = "ark-ff" 369 - version = "0.4.2" 370 - source = "registry+https://github.com/rust-lang/crates.io-index" 371 - checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba" 372 - dependencies = [ 373 - "ark-ff-asm 0.4.2", 374 - "ark-ff-macros 0.4.2", 375 - "ark-serialize 0.4.2", 376 - "ark-std 0.4.0", 377 - "derivative", 378 - "digest 0.10.7", 379 - "itertools 0.10.5", 380 - "num-bigint", 381 - "num-traits", 382 - "paste", 383 - "rustc_version 0.4.0", 384 - "zeroize", 385 - ] 386 - 387 - [[package]] 388 - name = "ark-ff-asm" 389 - version = "0.3.0" 390 - source = "registry+https://github.com/rust-lang/crates.io-index" 391 - checksum = "db02d390bf6643fb404d3d22d31aee1c4bc4459600aef9113833d17e786c6e44" 392 - dependencies = [ 393 - "quote", 394 - "syn 1.0.109", 395 - ] 396 - 397 - [[package]] 398 - name = "ark-ff-asm" 399 - version = "0.4.2" 400 - source = "registry+https://github.com/rust-lang/crates.io-index" 401 - checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348" 402 - dependencies = [ 403 - "quote", 404 - "syn 1.0.109", 405 - ] 406 - 407 - [[package]] 408 - name = "ark-ff-macros" 409 - version = "0.3.0" 410 - source = "registry+https://github.com/rust-lang/crates.io-index" 411 - checksum = "db2fd794a08ccb318058009eefdf15bcaaaaf6f8161eb3345f907222bac38b20" 412 - dependencies = [ 413 - "num-bigint", 414 - "num-traits", 415 - "quote", 416 - "syn 1.0.109", 417 - ] 418 - 419 - [[package]] 420 - name = "ark-ff-macros" 421 - version = "0.4.2" 422 - source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565" 424 - dependencies = [ 425 - "num-bigint", 426 - "num-traits", 427 - "proc-macro2", 428 - "quote", 429 - "syn 1.0.109", 430 - ] 431 - 432 - [[package]] 433 - name = "ark-serialize" 434 - version = "0.3.0" 435 - source = "registry+https://github.com/rust-lang/crates.io-index" 436 - checksum = "1d6c2b318ee6e10f8c2853e73a83adc0ccb88995aa978d8a3408d492ab2ee671" 437 - dependencies = [ 438 - "ark-std 0.3.0", 439 - "digest 0.9.0", 440 - ] 441 - 442 - [[package]] 443 - name = "ark-serialize" 444 - version = "0.4.2" 445 - source = "registry+https://github.com/rust-lang/crates.io-index" 446 - checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" 447 - dependencies = [ 448 - "ark-std 0.4.0", 449 - "digest 0.10.7", 450 - "num-bigint", 451 - ] 452 - 453 - [[package]] 454 - name = "ark-std" 455 - version = "0.3.0" 456 - source = "registry+https://github.com/rust-lang/crates.io-index" 457 - checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c" 458 - dependencies = [ 459 - "num-traits", 460 - "rand", 461 - ] 462 - 463 - [[package]] 464 - name = "ark-std" 465 - version = "0.4.0" 466 - source = "registry+https://github.com/rust-lang/crates.io-index" 467 - checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" 468 - dependencies = [ 469 - "num-traits", 470 - "rand", 471 - ] 472 - 473 - [[package]] 474 - name = "arraydeque" 475 - version = "0.5.1" 476 - source = "registry+https://github.com/rust-lang/crates.io-index" 477 - checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236" 478 - 479 - [[package]] 480 - name = "arrayref" 481 - version = "0.3.8" 482 - source = "registry+https://github.com/rust-lang/crates.io-index" 483 - checksum = "9d151e35f61089500b617991b791fc8bfd237ae50cd5950803758a179b41e67a" 484 - 485 - [[package]] 486 - name = "arrayvec" 487 - version = "0.7.4" 488 - source = "registry+https://github.com/rust-lang/crates.io-index" 489 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 490 - 491 - [[package]] 492 - name = "asn1-rs" 493 - version = "0.6.1" 494 - source = "registry+https://github.com/rust-lang/crates.io-index" 495 - checksum = "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" 496 - dependencies = [ 497 - "asn1-rs-derive", 498 - "asn1-rs-impl", 499 - "displaydoc", 500 - "nom", 501 - "num-traits", 502 - "rusticata-macros", 503 - "thiserror", 504 - "time", 505 - ] 506 - 507 - [[package]] 508 - name = "asn1-rs-derive" 509 - version = "0.5.0" 510 - source = "registry+https://github.com/rust-lang/crates.io-index" 511 - checksum = "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" 512 - dependencies = [ 513 - "proc-macro2", 514 - "quote", 515 - "syn 2.0.72", 516 - "synstructure", 517 - ] 518 - 519 - [[package]] 520 - name = "asn1-rs-impl" 521 - version = "0.2.0" 522 - source = "registry+https://github.com/rust-lang/crates.io-index" 523 - checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" 524 - dependencies = [ 525 - "proc-macro2", 526 - "quote", 527 - "syn 2.0.72", 528 - ] 529 - 530 - [[package]] 531 - name = "asn1_der" 532 - version = "0.7.6" 533 - source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "155a5a185e42c6b77ac7b88a15143d930a9e9727a5b7b77eed417404ab15c247" 535 - 536 - [[package]] 537 - name = "async-channel" 538 - version = "1.9.0" 539 - source = "registry+https://github.com/rust-lang/crates.io-index" 540 - checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 541 - dependencies = [ 542 - "concurrent-queue", 543 - "event-listener 2.5.3", 544 - "futures-core", 545 - ] 546 - 547 - [[package]] 548 - name = "async-io" 549 - version = "2.3.3" 550 - source = "registry+https://github.com/rust-lang/crates.io-index" 551 - checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964" 552 - dependencies = [ 553 - "async-lock", 554 - "cfg-if", 555 - "concurrent-queue", 556 - "futures-io", 557 - "futures-lite", 558 - "parking", 559 - "polling", 560 - "rustix 0.38.34", 561 - "slab", 562 - "tracing", 563 - "windows-sys 0.52.0", 564 - ] 565 - 566 - [[package]] 567 - name = "async-lock" 568 - version = "3.4.0" 569 - source = "registry+https://github.com/rust-lang/crates.io-index" 570 - checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 571 - dependencies = [ 572 - "event-listener 5.3.1", 573 - "event-listener-strategy", 574 - "pin-project-lite", 575 - ] 576 - 577 - [[package]] 578 - name = "async-trait" 579 - version = "0.1.81" 580 - source = "registry+https://github.com/rust-lang/crates.io-index" 581 - checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" 582 - dependencies = [ 583 - "proc-macro2", 584 - "quote", 585 - "syn 2.0.72", 586 - ] 587 - 588 - [[package]] 589 - name = "async_io_stream" 590 - version = "0.3.3" 591 - source = "registry+https://github.com/rust-lang/crates.io-index" 592 - checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c" 593 - dependencies = [ 594 - "futures", 595 - "pharos", 596 - "rustc_version 0.4.0", 597 - ] 598 - 599 - [[package]] 600 - name = "asynchronous-codec" 601 - version = "0.6.2" 602 - source = "registry+https://github.com/rust-lang/crates.io-index" 603 - checksum = "4057f2c32adbb2fc158e22fb38433c8e9bbf76b75a4732c7c0cbaf695fb65568" 604 - dependencies = [ 605 - "bytes", 606 - "futures-sink", 607 - "futures-util", 608 - "memchr", 609 - "pin-project-lite", 610 - ] 611 - 612 - [[package]] 613 - name = "asynchronous-codec" 614 - version = "0.7.0" 615 - source = "registry+https://github.com/rust-lang/crates.io-index" 616 - checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233" 617 - dependencies = [ 618 - "bytes", 619 - "futures-sink", 620 - "futures-util", 621 - "memchr", 622 - "pin-project-lite", 623 - ] 624 - 625 - [[package]] 626 - name = "attohttpc" 627 - version = "0.24.1" 628 - source = "registry+https://github.com/rust-lang/crates.io-index" 629 - checksum = "8d9a9bf8b79a749ee0b911b91b671cc2b6c670bdbc7e3dfd537576ddc94bb2a2" 630 - dependencies = [ 631 - "http 0.2.12", 632 - "log", 633 - "url", 634 - ] 635 - 636 - [[package]] 637 - name = "atty" 638 - version = "0.2.14" 639 - source = "registry+https://github.com/rust-lang/crates.io-index" 640 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 641 - dependencies = [ 642 - "hermit-abi 0.1.19", 643 - "libc", 644 - "winapi", 645 - ] 646 - 647 - [[package]] 648 - name = "auto_impl" 649 - version = "1.2.0" 650 - source = "registry+https://github.com/rust-lang/crates.io-index" 651 - checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" 652 - dependencies = [ 653 - "proc-macro2", 654 - "quote", 655 - "syn 2.0.72", 656 - ] 657 - 658 - [[package]] 659 - name = "autocfg" 660 - version = "1.3.0" 661 - source = "registry+https://github.com/rust-lang/crates.io-index" 662 - checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 663 - 664 - [[package]] 665 - name = "axum" 666 - version = "0.7.5" 667 - source = "registry+https://github.com/rust-lang/crates.io-index" 668 - checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" 669 - dependencies = [ 670 - "async-trait", 671 - "axum-core", 672 - "bytes", 673 - "futures-util", 674 - "http 1.1.0", 675 - "http-body 1.0.1", 676 - "http-body-util", 677 - "hyper 1.4.1", 678 - "hyper-util", 679 - "itoa", 680 - "matchit", 681 - "memchr", 682 - "mime", 683 - "percent-encoding", 684 - "pin-project-lite", 685 - "rustversion", 686 - "serde", 687 - "serde_json", 688 - "serde_path_to_error", 689 - "serde_urlencoded", 690 - "sync_wrapper 1.0.1", 691 - "tokio", 692 - "tower", 693 - "tower-layer", 694 - "tower-service", 695 - "tracing", 696 - ] 697 - 698 - [[package]] 699 - name = "axum-core" 700 - version = "0.4.3" 701 - source = "registry+https://github.com/rust-lang/crates.io-index" 702 - checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" 703 - dependencies = [ 704 - "async-trait", 705 - "bytes", 706 - "futures-util", 707 - "http 1.1.0", 708 - "http-body 1.0.1", 709 - "http-body-util", 710 - "mime", 711 - "pin-project-lite", 712 - "rustversion", 713 - "sync_wrapper 0.1.2", 714 - "tower-layer", 715 - "tower-service", 716 - "tracing", 717 - ] 718 - 719 - [[package]] 720 - name = "backtrace" 721 - version = "0.3.73" 722 - source = "registry+https://github.com/rust-lang/crates.io-index" 723 - checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 724 - dependencies = [ 725 - "addr2line", 726 - "cc", 727 - "cfg-if", 728 - "libc", 729 - "miniz_oxide", 730 - "object", 731 - "rustc-demangle", 732 - ] 733 - 734 - [[package]] 735 - name = "base-x" 736 - version = "0.2.11" 737 - source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 739 - 740 - [[package]] 741 - name = "base16ct" 742 - version = "0.1.1" 743 - source = "registry+https://github.com/rust-lang/crates.io-index" 744 - checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 745 - 746 - [[package]] 747 - name = "base16ct" 748 - version = "0.2.0" 749 - source = "registry+https://github.com/rust-lang/crates.io-index" 750 - checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 751 - 752 - [[package]] 753 - name = "base64" 754 - version = "0.13.1" 755 - source = "registry+https://github.com/rust-lang/crates.io-index" 756 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 757 - 758 - [[package]] 759 - name = "base64" 760 - version = "0.21.7" 761 - source = "registry+https://github.com/rust-lang/crates.io-index" 762 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 763 - 764 - [[package]] 765 - name = "base64" 766 - version = "0.22.1" 767 - source = "registry+https://github.com/rust-lang/crates.io-index" 768 - checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 769 - 770 - [[package]] 771 - name = "base64ct" 772 - version = "1.6.0" 773 - source = "registry+https://github.com/rust-lang/crates.io-index" 774 - checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 775 - 776 - [[package]] 777 - name = "beacon_chain" 778 - version = "0.2.0" 779 - dependencies = [ 780 - "bitvec 1.0.1", 781 - "bls", 782 - "derivative", 783 - "environment", 784 - "eth1", 785 - "eth2", 786 - "eth2_network_config", 787 - "ethereum_hashing", 788 - "ethereum_serde_utils", 789 - "ethereum_ssz", 790 - "ethereum_ssz_derive", 791 - "execution_layer", 792 - "fork_choice", 793 - "futures", 794 - "genesis", 795 - "hex", 796 - "int_to_bytes", 797 - "itertools 0.10.5", 798 - "kzg", 799 - "lazy_static", 800 - "lighthouse_metrics", 801 - "lighthouse_version", 802 - "logging", 803 - "lru", 804 - "maplit", 805 - "merkle_proof", 806 - "oneshot_broadcast", 807 - "operation_pool", 808 - "parking_lot 0.12.3", 809 - "proto_array", 810 - "rand", 811 - "rayon", 812 - "safe_arith", 813 - "sensitive_url", 814 - "serde", 815 - "serde_json", 816 - "slasher", 817 - "slog", 818 - "slog-async", 819 - "slog-term", 820 - "sloggers", 821 - "slot_clock", 822 - "smallvec", 823 - "ssz_types", 824 - "state_processing", 825 - "store", 826 - "strum", 827 - "superstruct", 828 - "task_executor", 829 - "tempfile", 830 - "tokio", 831 - "tokio-stream", 832 - "tree_hash", 833 - "tree_hash_derive", 834 - "types", 835 - ] 836 - 837 - [[package]] 838 - name = "beacon_node" 839 - version = "5.3.0" 840 - dependencies = [ 841 - "beacon_chain", 842 - "clap", 843 - "clap_utils", 844 - "client", 845 - "directory", 846 - "dirs", 847 - "environment", 848 - "eth2_config", 849 - "execution_layer", 850 - "genesis", 851 - "hex", 852 - "http_api", 853 - "hyper 1.4.1", 854 - "lighthouse_network", 855 - "monitoring_api", 856 - "node_test_rig", 857 - "sensitive_url", 858 - "serde_json", 859 - "slasher", 860 - "slog", 861 - "store", 862 - "strum", 863 - "task_executor", 864 - "types", 865 - "unused_port", 866 - ] 867 - 868 - [[package]] 869 - name = "beacon_processor" 870 - version = "0.1.0" 871 - dependencies = [ 872 - "fnv", 873 - "futures", 874 - "itertools 0.10.5", 875 - "lazy_static", 876 - "lighthouse_metrics", 877 - "lighthouse_network", 878 - "logging", 879 - "num_cpus", 880 - "parking_lot 0.12.3", 881 - "serde", 882 - "slog", 883 - "slot_clock", 884 - "strum", 885 - "task_executor", 886 - "tokio", 887 - "tokio-util", 888 - "types", 889 - ] 890 - 891 - [[package]] 892 - name = "bincode" 893 - version = "1.3.3" 894 - source = "registry+https://github.com/rust-lang/crates.io-index" 895 - checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 896 - dependencies = [ 897 - "serde", 898 - ] 899 - 900 - [[package]] 901 - name = "bindgen" 902 - version = "0.69.4" 903 - source = "registry+https://github.com/rust-lang/crates.io-index" 904 - checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 905 - dependencies = [ 906 - "bitflags 2.6.0", 907 - "cexpr", 908 - "clang-sys", 909 - "itertools 0.12.1", 910 - "lazy_static", 911 - "lazycell", 912 - "proc-macro2", 913 - "quote", 914 - "regex", 915 - "rustc-hash", 916 - "shlex", 917 - "syn 2.0.72", 918 - ] 919 - 920 - [[package]] 921 - name = "bit-set" 922 - version = "0.5.3" 923 - source = "registry+https://github.com/rust-lang/crates.io-index" 924 - checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 925 - dependencies = [ 926 - "bit-vec", 927 - ] 928 - 929 - [[package]] 930 - name = "bit-vec" 931 - version = "0.6.3" 932 - source = "registry+https://github.com/rust-lang/crates.io-index" 933 - checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 934 - 935 - [[package]] 936 - name = "bitflags" 937 - version = "1.3.2" 938 - source = "registry+https://github.com/rust-lang/crates.io-index" 939 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 940 - 941 - [[package]] 942 - name = "bitflags" 943 - version = "2.6.0" 944 - source = "registry+https://github.com/rust-lang/crates.io-index" 945 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 946 - 947 - [[package]] 948 - name = "bitvec" 949 - version = "0.20.4" 950 - source = "registry+https://github.com/rust-lang/crates.io-index" 951 - checksum = "7774144344a4faa177370406a7ff5f1da24303817368584c6206c8303eb07848" 952 - dependencies = [ 953 - "funty 1.1.0", 954 - "radium 0.6.2", 955 - "tap", 956 - "wyz 0.2.0", 957 - ] 958 - 959 - [[package]] 960 - name = "bitvec" 961 - version = "1.0.1" 962 - source = "registry+https://github.com/rust-lang/crates.io-index" 963 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 964 - dependencies = [ 965 - "funty 2.0.0", 966 - "radium 0.7.0", 967 - "tap", 968 - "wyz 0.5.1", 969 - ] 970 - 971 - [[package]] 972 - name = "blake2" 973 - version = "0.10.6" 974 - source = "registry+https://github.com/rust-lang/crates.io-index" 975 - checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" 976 - dependencies = [ 977 - "digest 0.10.7", 978 - ] 979 - 980 - [[package]] 981 - name = "block-buffer" 982 - version = "0.9.0" 983 - source = "registry+https://github.com/rust-lang/crates.io-index" 984 - checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 985 - dependencies = [ 986 - "block-padding", 987 - "generic-array", 988 - ] 989 - 990 - [[package]] 991 - name = "block-buffer" 992 - version = "0.10.4" 993 - source = "registry+https://github.com/rust-lang/crates.io-index" 994 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 995 - dependencies = [ 996 - "generic-array", 997 - ] 998 - 999 - [[package]] 1000 - name = "block-padding" 1001 - version = "0.2.1" 1002 - source = "registry+https://github.com/rust-lang/crates.io-index" 1003 - checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" 1004 - 1005 - [[package]] 1006 - name = "bls" 1007 - version = "0.2.0" 1008 - dependencies = [ 1009 - "arbitrary", 1010 - "blst", 1011 - "ethereum-types 0.14.1", 1012 - "ethereum_hashing", 1013 - "ethereum_serde_utils", 1014 - "ethereum_ssz", 1015 - "hex", 1016 - "rand", 1017 - "serde", 1018 - "tree_hash", 1019 - "zeroize", 1020 - ] 1021 - 1022 - [[package]] 1023 - name = "blst" 1024 - version = "0.3.12" 1025 - source = "registry+https://github.com/rust-lang/crates.io-index" 1026 - checksum = "62dc83a094a71d43eeadd254b1ec2d24cb6a0bb6cadce00df51f0db594711a32" 1027 - dependencies = [ 1028 - "cc", 1029 - "glob", 1030 - "threadpool", 1031 - "zeroize", 1032 - ] 1033 - 1034 - [[package]] 1035 - name = "bollard-stubs" 1036 - version = "1.42.0-rc.3" 1037 - source = "registry+https://github.com/rust-lang/crates.io-index" 1038 - checksum = "ed59b5c00048f48d7af971b71f800fdf23e858844a6f9e4d32ca72e9399e7864" 1039 - dependencies = [ 1040 - "serde", 1041 - "serde_with", 1042 - ] 1043 - 1044 - [[package]] 1045 - name = "boot_node" 1046 - version = "5.3.0" 1047 - dependencies = [ 1048 - "beacon_node", 1049 - "clap", 1050 - "clap_utils", 1051 - "eth2_network_config", 1052 - "ethereum_ssz", 1053 - "hex", 1054 - "lighthouse_network", 1055 - "log", 1056 - "logging", 1057 - "serde", 1058 - "slog", 1059 - "slog-async", 1060 - "slog-scope", 1061 - "slog-term", 1062 - "tokio", 1063 - "types", 1064 - ] 1065 - 1066 - [[package]] 1067 - name = "bs58" 1068 - version = "0.4.0" 1069 - source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" 1071 - 1072 - [[package]] 1073 - name = "bs58" 1074 - version = "0.5.1" 1075 - source = "registry+https://github.com/rust-lang/crates.io-index" 1076 - checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" 1077 - dependencies = [ 1078 - "tinyvec", 1079 - ] 1080 - 1081 - [[package]] 1082 - name = "builder_client" 1083 - version = "0.1.0" 1084 - dependencies = [ 1085 - "eth2", 1086 - "lighthouse_version", 1087 - "reqwest", 1088 - "sensitive_url", 1089 - "serde", 1090 - ] 1091 - 1092 - [[package]] 1093 - name = "bumpalo" 1094 - version = "3.16.0" 1095 - source = "registry+https://github.com/rust-lang/crates.io-index" 1096 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 1097 - 1098 - [[package]] 1099 - name = "byte-slice-cast" 1100 - version = "1.2.2" 1101 - source = "registry+https://github.com/rust-lang/crates.io-index" 1102 - checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" 1103 - 1104 - [[package]] 1105 - name = "byteorder" 1106 - version = "1.5.0" 1107 - source = "registry+https://github.com/rust-lang/crates.io-index" 1108 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 1109 - 1110 - [[package]] 1111 - name = "bytes" 1112 - version = "1.6.1" 1113 - source = "registry+https://github.com/rust-lang/crates.io-index" 1114 - checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952" 1115 - dependencies = [ 1116 - "serde", 1117 - ] 1118 - 1119 - [[package]] 1120 - name = "bzip2" 1121 - version = "0.4.4" 1122 - source = "registry+https://github.com/rust-lang/crates.io-index" 1123 - checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 1124 - dependencies = [ 1125 - "bzip2-sys", 1126 - "libc", 1127 - ] 1128 - 1129 - [[package]] 1130 - name = "bzip2-sys" 1131 - version = "0.1.11+1.0.8" 1132 - source = "registry+https://github.com/rust-lang/crates.io-index" 1133 - checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 1134 - dependencies = [ 1135 - "cc", 1136 - "libc", 1137 - "pkg-config", 1138 - ] 1139 - 1140 - [[package]] 1141 - name = "c-kzg" 1142 - version = "1.0.2" 1143 - source = "registry+https://github.com/rust-lang/crates.io-index" 1144 - checksum = "cdf100c4cea8f207e883ff91ca886d621d8a166cb04971dfaa9bb8fd99ed95df" 1145 - dependencies = [ 1146 - "blst", 1147 - "cc", 1148 - "glob", 1149 - "hex", 1150 - "libc", 1151 - "serde", 1152 - ] 1153 - 1154 - [[package]] 1155 - name = "camino" 1156 - version = "1.1.7" 1157 - source = "registry+https://github.com/rust-lang/crates.io-index" 1158 - checksum = "e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239" 1159 - dependencies = [ 1160 - "serde", 1161 - ] 1162 - 1163 - [[package]] 1164 - name = "cargo-platform" 1165 - version = "0.1.8" 1166 - source = "registry+https://github.com/rust-lang/crates.io-index" 1167 - checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc" 1168 - dependencies = [ 1169 - "serde", 1170 - ] 1171 - 1172 - [[package]] 1173 - name = "cargo_metadata" 1174 - version = "0.15.4" 1175 - source = "registry+https://github.com/rust-lang/crates.io-index" 1176 - checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" 1177 - dependencies = [ 1178 - "camino", 1179 - "cargo-platform", 1180 - "semver 1.0.23", 1181 - "serde", 1182 - "serde_json", 1183 - "thiserror", 1184 - ] 1185 - 1186 - [[package]] 1187 - name = "cast" 1188 - version = "0.3.0" 1189 - source = "registry+https://github.com/rust-lang/crates.io-index" 1190 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 1191 - 1192 - [[package]] 1193 - name = "cc" 1194 - version = "1.1.6" 1195 - source = "registry+https://github.com/rust-lang/crates.io-index" 1196 - checksum = "2aba8f4e9906c7ce3c73463f62a7f0c65183ada1a2d47e397cc8810827f9694f" 1197 - dependencies = [ 1198 - "jobserver", 1199 - "libc", 1200 - ] 1201 - 1202 - [[package]] 1203 - name = "cexpr" 1204 - version = "0.6.0" 1205 - source = "registry+https://github.com/rust-lang/crates.io-index" 1206 - checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 1207 - dependencies = [ 1208 - "nom", 1209 - ] 1210 - 1211 - [[package]] 1212 - name = "cfg-if" 1213 - version = "1.0.0" 1214 - source = "registry+https://github.com/rust-lang/crates.io-index" 1215 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 1216 - 1217 - [[package]] 1218 - name = "cfg_aliases" 1219 - version = "0.1.1" 1220 - source = "registry+https://github.com/rust-lang/crates.io-index" 1221 - checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 1222 - 1223 - [[package]] 1224 - name = "chacha20" 1225 - version = "0.9.1" 1226 - source = "registry+https://github.com/rust-lang/crates.io-index" 1227 - checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" 1228 - dependencies = [ 1229 - "cfg-if", 1230 - "cipher 0.4.4", 1231 - "cpufeatures", 1232 - ] 1233 - 1234 - [[package]] 1235 - name = "chacha20poly1305" 1236 - version = "0.10.1" 1237 - source = "registry+https://github.com/rust-lang/crates.io-index" 1238 - checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" 1239 - dependencies = [ 1240 - "aead 0.5.2", 1241 - "chacha20", 1242 - "cipher 0.4.4", 1243 - "poly1305", 1244 - "zeroize", 1245 - ] 1246 - 1247 - [[package]] 1248 - name = "chrono" 1249 - version = "0.4.38" 1250 - source = "registry+https://github.com/rust-lang/crates.io-index" 1251 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 1252 - dependencies = [ 1253 - "android-tzdata", 1254 - "iana-time-zone", 1255 - "num-traits", 1256 - "windows-targets 0.52.6", 1257 - ] 1258 - 1259 - [[package]] 1260 - name = "ciborium" 1261 - version = "0.2.2" 1262 - source = "registry+https://github.com/rust-lang/crates.io-index" 1263 - checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 1264 - dependencies = [ 1265 - "ciborium-io", 1266 - "ciborium-ll", 1267 - "serde", 1268 - ] 1269 - 1270 - [[package]] 1271 - name = "ciborium-io" 1272 - version = "0.2.2" 1273 - source = "registry+https://github.com/rust-lang/crates.io-index" 1274 - checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 1275 - 1276 - [[package]] 1277 - name = "ciborium-ll" 1278 - version = "0.2.2" 1279 - source = "registry+https://github.com/rust-lang/crates.io-index" 1280 - checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 1281 - dependencies = [ 1282 - "ciborium-io", 1283 - "half", 1284 - ] 1285 - 1286 - [[package]] 1287 - name = "cipher" 1288 - version = "0.3.0" 1289 - source = "registry+https://github.com/rust-lang/crates.io-index" 1290 - checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 1291 - dependencies = [ 1292 - "generic-array", 1293 - ] 1294 - 1295 - [[package]] 1296 - name = "cipher" 1297 - version = "0.4.4" 1298 - source = "registry+https://github.com/rust-lang/crates.io-index" 1299 - checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 1300 - dependencies = [ 1301 - "crypto-common", 1302 - "inout", 1303 - "zeroize", 1304 - ] 1305 - 1306 - [[package]] 1307 - name = "clang-sys" 1308 - version = "1.8.1" 1309 - source = "registry+https://github.com/rust-lang/crates.io-index" 1310 - checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" 1311 - dependencies = [ 1312 - "glob", 1313 - "libc", 1314 - "libloading", 1315 - ] 1316 - 1317 - [[package]] 1318 - name = "clap" 1319 - version = "4.5.10" 1320 - source = "registry+https://github.com/rust-lang/crates.io-index" 1321 - checksum = "8f6b81fb3c84f5563d509c59b5a48d935f689e993afa90fe39047f05adef9142" 1322 - dependencies = [ 1323 - "clap_builder", 1324 - "clap_derive", 1325 - ] 1326 - 1327 - [[package]] 1328 - name = "clap_builder" 1329 - version = "4.5.10" 1330 - source = "registry+https://github.com/rust-lang/crates.io-index" 1331 - checksum = "5ca6706fd5224857d9ac5eb9355f6683563cc0541c7cd9d014043b57cbec78ac" 1332 - dependencies = [ 1333 - "anstream", 1334 - "anstyle", 1335 - "clap_lex", 1336 - "strsim 0.11.1", 1337 - "terminal_size", 1338 - ] 1339 - 1340 - [[package]] 1341 - name = "clap_derive" 1342 - version = "4.5.8" 1343 - source = "registry+https://github.com/rust-lang/crates.io-index" 1344 - checksum = "2bac35c6dafb060fd4d275d9a4ffae97917c13a6327903a8be2153cd964f7085" 1345 - dependencies = [ 1346 - "heck 0.5.0", 1347 - "proc-macro2", 1348 - "quote", 1349 - "syn 2.0.72", 1350 - ] 1351 - 1352 - [[package]] 1353 - name = "clap_lex" 1354 - version = "0.7.1" 1355 - source = "registry+https://github.com/rust-lang/crates.io-index" 1356 - checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" 1357 - 1358 - [[package]] 1359 - name = "clap_utils" 1360 - version = "0.1.0" 1361 - dependencies = [ 1362 - "clap", 1363 - "dirs", 1364 - "eth2_network_config", 1365 - "ethereum-types 0.14.1", 1366 - "ethereum_ssz", 1367 - "hex", 1368 - "serde", 1369 - "serde_json", 1370 - "serde_yaml", 1371 - "types", 1372 - ] 1373 - 1374 - [[package]] 1375 - name = "client" 1376 - version = "0.2.0" 1377 - dependencies = [ 1378 - "beacon_chain", 1379 - "beacon_processor", 1380 - "directory", 1381 - "dirs", 1382 - "environment", 1383 - "error-chain", 1384 - "eth1", 1385 - "eth2", 1386 - "eth2_config", 1387 - "ethereum_ssz", 1388 - "execution_layer", 1389 - "futures", 1390 - "genesis", 1391 - "http_api", 1392 - "http_metrics", 1393 - "lazy_static", 1394 - "lighthouse_metrics", 1395 - "lighthouse_network", 1396 - "monitoring_api", 1397 - "network", 1398 - "operation_pool", 1399 - "sensitive_url", 1400 - "serde", 1401 - "serde_yaml", 1402 - "slasher", 1403 - "slasher_service", 1404 - "slog", 1405 - "slot_clock", 1406 - "state_processing", 1407 - "store", 1408 - "task_executor", 1409 - "time", 1410 - "timer", 1411 - "tokio", 1412 - "types", 1413 - ] 1414 - 1415 - [[package]] 1416 - name = "cmake" 1417 - version = "0.1.50" 1418 - source = "registry+https://github.com/rust-lang/crates.io-index" 1419 - checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 1420 - dependencies = [ 1421 - "cc", 1422 - ] 1423 - 1424 - [[package]] 1425 - name = "colorchoice" 1426 - version = "1.0.1" 1427 - source = "registry+https://github.com/rust-lang/crates.io-index" 1428 - checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 1429 - 1430 - [[package]] 1431 - name = "compare_fields" 1432 - version = "0.2.0" 1433 - dependencies = [ 1434 - "compare_fields_derive", 1435 - "itertools 0.10.5", 1436 - ] 1437 - 1438 - [[package]] 1439 - name = "compare_fields_derive" 1440 - version = "0.2.0" 1441 - dependencies = [ 1442 - "quote", 1443 - "syn 1.0.109", 1444 - ] 1445 - 1446 - [[package]] 1447 - name = "concurrent-queue" 1448 - version = "2.5.0" 1449 - source = "registry+https://github.com/rust-lang/crates.io-index" 1450 - checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 1451 - dependencies = [ 1452 - "crossbeam-utils", 1453 - ] 1454 - 1455 - [[package]] 1456 - name = "const-hex" 1457 - version = "1.12.0" 1458 - source = "registry+https://github.com/rust-lang/crates.io-index" 1459 - checksum = "94fb8a24a26d37e1ffd45343323dc9fe6654ceea44c12f2fcb3d7ac29e610bc6" 1460 - dependencies = [ 1461 - "cfg-if", 1462 - "cpufeatures", 1463 - "hex", 1464 - "proptest", 1465 - "serde", 1466 - ] 1467 - 1468 - [[package]] 1469 - name = "const-oid" 1470 - version = "0.9.6" 1471 - source = "registry+https://github.com/rust-lang/crates.io-index" 1472 - checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 1473 - 1474 - [[package]] 1475 - name = "constant_time_eq" 1476 - version = "0.1.5" 1477 - source = "registry+https://github.com/rust-lang/crates.io-index" 1478 - checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 1479 - 1480 - [[package]] 1481 - name = "convert_case" 1482 - version = "0.4.0" 1483 - source = "registry+https://github.com/rust-lang/crates.io-index" 1484 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 1485 - 1486 - [[package]] 1487 - name = "core-foundation" 1488 - version = "0.9.4" 1489 - source = "registry+https://github.com/rust-lang/crates.io-index" 1490 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1491 - dependencies = [ 1492 - "core-foundation-sys", 1493 - "libc", 1494 - ] 1495 - 1496 - [[package]] 1497 - name = "core-foundation-sys" 1498 - version = "0.8.6" 1499 - source = "registry+https://github.com/rust-lang/crates.io-index" 1500 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 1501 - 1502 - [[package]] 1503 - name = "core2" 1504 - version = "0.4.0" 1505 - source = "registry+https://github.com/rust-lang/crates.io-index" 1506 - checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 1507 - dependencies = [ 1508 - "memchr", 1509 - ] 1510 - 1511 - [[package]] 1512 - name = "cpufeatures" 1513 - version = "0.2.12" 1514 - source = "registry+https://github.com/rust-lang/crates.io-index" 1515 - checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 1516 - dependencies = [ 1517 - "libc", 1518 - ] 1519 - 1520 - [[package]] 1521 - name = "crc32fast" 1522 - version = "1.4.2" 1523 - source = "registry+https://github.com/rust-lang/crates.io-index" 1524 - checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 1525 - dependencies = [ 1526 - "cfg-if", 1527 - ] 1528 - 1529 - [[package]] 1530 - name = "criterion" 1531 - version = "0.5.1" 1532 - source = "registry+https://github.com/rust-lang/crates.io-index" 1533 - checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 1534 - dependencies = [ 1535 - "anes", 1536 - "cast", 1537 - "ciborium", 1538 - "clap", 1539 - "criterion-plot", 1540 - "is-terminal", 1541 - "itertools 0.10.5", 1542 - "num-traits", 1543 - "once_cell", 1544 - "oorandom", 1545 - "plotters", 1546 - "rayon", 1547 - "regex", 1548 - "serde", 1549 - "serde_derive", 1550 - "serde_json", 1551 - "tinytemplate", 1552 - "walkdir", 1553 - ] 1554 - 1555 - [[package]] 1556 - name = "criterion-plot" 1557 - version = "0.5.0" 1558 - source = "registry+https://github.com/rust-lang/crates.io-index" 1559 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 1560 - dependencies = [ 1561 - "cast", 1562 - "itertools 0.10.5", 1563 - ] 1564 - 1565 - [[package]] 1566 - name = "crossbeam-channel" 1567 - version = "0.5.13" 1568 - source = "registry+https://github.com/rust-lang/crates.io-index" 1569 - checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 1570 - dependencies = [ 1571 - "crossbeam-utils", 1572 - ] 1573 - 1574 - [[package]] 1575 - name = "crossbeam-deque" 1576 - version = "0.8.5" 1577 - source = "registry+https://github.com/rust-lang/crates.io-index" 1578 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 1579 - dependencies = [ 1580 - "crossbeam-epoch", 1581 - "crossbeam-utils", 1582 - ] 1583 - 1584 - [[package]] 1585 - name = "crossbeam-epoch" 1586 - version = "0.9.18" 1587 - source = "registry+https://github.com/rust-lang/crates.io-index" 1588 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1589 - dependencies = [ 1590 - "crossbeam-utils", 1591 - ] 1592 - 1593 - [[package]] 1594 - name = "crossbeam-utils" 1595 - version = "0.8.20" 1596 - source = "registry+https://github.com/rust-lang/crates.io-index" 1597 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 1598 - 1599 - [[package]] 1600 - name = "crunchy" 1601 - version = "0.2.2" 1602 - source = "registry+https://github.com/rust-lang/crates.io-index" 1603 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1604 - 1605 - [[package]] 1606 - name = "crypto-bigint" 1607 - version = "0.4.9" 1608 - source = "registry+https://github.com/rust-lang/crates.io-index" 1609 - checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" 1610 - dependencies = [ 1611 - "generic-array", 1612 - "rand_core", 1613 - "subtle", 1614 - "zeroize", 1615 - ] 1616 - 1617 - [[package]] 1618 - name = "crypto-bigint" 1619 - version = "0.5.5" 1620 - source = "registry+https://github.com/rust-lang/crates.io-index" 1621 - checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1622 - dependencies = [ 1623 - "generic-array", 1624 - "rand_core", 1625 - "subtle", 1626 - "zeroize", 1627 - ] 1628 - 1629 - [[package]] 1630 - name = "crypto-common" 1631 - version = "0.1.6" 1632 - source = "registry+https://github.com/rust-lang/crates.io-index" 1633 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1634 - dependencies = [ 1635 - "generic-array", 1636 - "rand_core", 1637 - "typenum", 1638 - ] 1639 - 1640 - [[package]] 1641 - name = "crypto-mac" 1642 - version = "0.8.0" 1643 - source = "registry+https://github.com/rust-lang/crates.io-index" 1644 - checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" 1645 - dependencies = [ 1646 - "generic-array", 1647 - "subtle", 1648 - ] 1649 - 1650 - [[package]] 1651 - name = "crypto-mac" 1652 - version = "0.11.0" 1653 - source = "registry+https://github.com/rust-lang/crates.io-index" 1654 - checksum = "25fab6889090c8133f3deb8f73ba3c65a7f456f66436fc012a1b1e272b1e103e" 1655 - dependencies = [ 1656 - "generic-array", 1657 - "subtle", 1658 - ] 1659 - 1660 - [[package]] 1661 - name = "ctr" 1662 - version = "0.7.0" 1663 - source = "registry+https://github.com/rust-lang/crates.io-index" 1664 - checksum = "a232f92a03f37dd7d7dd2adc67166c77e9cd88de5b019b9a9eecfaeaf7bfd481" 1665 - dependencies = [ 1666 - "cipher 0.3.0", 1667 - ] 1668 - 1669 - [[package]] 1670 - name = "ctr" 1671 - version = "0.8.0" 1672 - source = "registry+https://github.com/rust-lang/crates.io-index" 1673 - checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea" 1674 - dependencies = [ 1675 - "cipher 0.3.0", 1676 - ] 1677 - 1678 - [[package]] 1679 - name = "ctr" 1680 - version = "0.9.2" 1681 - source = "registry+https://github.com/rust-lang/crates.io-index" 1682 - checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1683 - dependencies = [ 1684 - "cipher 0.4.4", 1685 - ] 1686 - 1687 - [[package]] 1688 - name = "ctrlc" 1689 - version = "3.4.4" 1690 - source = "registry+https://github.com/rust-lang/crates.io-index" 1691 - checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345" 1692 - dependencies = [ 1693 - "nix 0.28.0", 1694 - "windows-sys 0.52.0", 1695 - ] 1696 - 1697 - [[package]] 1698 - name = "curve25519-dalek" 1699 - version = "4.1.3" 1700 - source = "registry+https://github.com/rust-lang/crates.io-index" 1701 - checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 1702 - dependencies = [ 1703 - "cfg-if", 1704 - "cpufeatures", 1705 - "curve25519-dalek-derive", 1706 - "digest 0.10.7", 1707 - "fiat-crypto", 1708 - "rustc_version 0.4.0", 1709 - "subtle", 1710 - "zeroize", 1711 - ] 1712 - 1713 - [[package]] 1714 - name = "curve25519-dalek-derive" 1715 - version = "0.1.1" 1716 - source = "registry+https://github.com/rust-lang/crates.io-index" 1717 - checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 1718 - dependencies = [ 1719 - "proc-macro2", 1720 - "quote", 1721 - "syn 2.0.72", 1722 - ] 1723 - 1724 - [[package]] 1725 - name = "darling" 1726 - version = "0.13.4" 1727 - source = "registry+https://github.com/rust-lang/crates.io-index" 1728 - checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 1729 - dependencies = [ 1730 - "darling_core 0.13.4", 1731 - "darling_macro 0.13.4", 1732 - ] 1733 - 1734 - [[package]] 1735 - name = "darling" 1736 - version = "0.20.10" 1737 - source = "registry+https://github.com/rust-lang/crates.io-index" 1738 - checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" 1739 - dependencies = [ 1740 - "darling_core 0.20.10", 1741 - "darling_macro 0.20.10", 1742 - ] 1743 - 1744 - [[package]] 1745 - name = "darling_core" 1746 - version = "0.13.4" 1747 - source = "registry+https://github.com/rust-lang/crates.io-index" 1748 - checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 1749 - dependencies = [ 1750 - "fnv", 1751 - "ident_case", 1752 - "proc-macro2", 1753 - "quote", 1754 - "strsim 0.10.0", 1755 - "syn 1.0.109", 1756 - ] 1757 - 1758 - [[package]] 1759 - name = "darling_core" 1760 - version = "0.20.10" 1761 - source = "registry+https://github.com/rust-lang/crates.io-index" 1762 - checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" 1763 - dependencies = [ 1764 - "fnv", 1765 - "ident_case", 1766 - "proc-macro2", 1767 - "quote", 1768 - "strsim 0.11.1", 1769 - "syn 2.0.72", 1770 - ] 1771 - 1772 - [[package]] 1773 - name = "darling_macro" 1774 - version = "0.13.4" 1775 - source = "registry+https://github.com/rust-lang/crates.io-index" 1776 - checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 1777 - dependencies = [ 1778 - "darling_core 0.13.4", 1779 - "quote", 1780 - "syn 1.0.109", 1781 - ] 1782 - 1783 - [[package]] 1784 - name = "darling_macro" 1785 - version = "0.20.10" 1786 - source = "registry+https://github.com/rust-lang/crates.io-index" 1787 - checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" 1788 - dependencies = [ 1789 - "darling_core 0.20.10", 1790 - "quote", 1791 - "syn 2.0.72", 1792 - ] 1793 - 1794 - [[package]] 1795 - name = "darwin-libproc" 1796 - version = "0.1.2" 1797 - source = "registry+https://github.com/rust-lang/crates.io-index" 1798 - checksum = "9fb90051930c9a0f09e585762152048e23ac74d20c10590ef7cf01c0343c3046" 1799 - dependencies = [ 1800 - "darwin-libproc-sys", 1801 - "libc", 1802 - "memchr", 1803 - ] 1804 - 1805 - [[package]] 1806 - name = "darwin-libproc-sys" 1807 - version = "0.1.2" 1808 - source = "registry+https://github.com/rust-lang/crates.io-index" 1809 - checksum = "57cebb5bde66eecdd30ddc4b9cd208238b15db4982ccc72db59d699ea10867c1" 1810 - dependencies = [ 1811 - "libc", 1812 - ] 1813 - 1814 - [[package]] 1815 - name = "dary_heap" 1816 - version = "0.3.6" 1817 - source = "registry+https://github.com/rust-lang/crates.io-index" 1818 - checksum = "7762d17f1241643615821a8455a0b2c3e803784b058693d990b11f2dce25a0ca" 1819 - 1820 - [[package]] 1821 - name = "data-encoding" 1822 - version = "2.6.0" 1823 - source = "registry+https://github.com/rust-lang/crates.io-index" 1824 - checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" 1825 - 1826 - [[package]] 1827 - name = "data-encoding-macro" 1828 - version = "0.1.15" 1829 - source = "registry+https://github.com/rust-lang/crates.io-index" 1830 - checksum = "f1559b6cba622276d6d63706db152618eeb15b89b3e4041446b05876e352e639" 1831 - dependencies = [ 1832 - "data-encoding", 1833 - "data-encoding-macro-internal", 1834 - ] 1835 - 1836 - [[package]] 1837 - name = "data-encoding-macro-internal" 1838 - version = "0.1.13" 1839 - source = "registry+https://github.com/rust-lang/crates.io-index" 1840 - checksum = "332d754c0af53bc87c108fed664d121ecf59207ec4196041f04d6ab9002ad33f" 1841 - dependencies = [ 1842 - "data-encoding", 1843 - "syn 1.0.109", 1844 - ] 1845 - 1846 - [[package]] 1847 - name = "database_manager" 1848 - version = "0.1.0" 1849 - dependencies = [ 1850 - "beacon_chain", 1851 - "beacon_node", 1852 - "clap", 1853 - "clap_utils", 1854 - "environment", 1855 - "hex", 1856 - "serde", 1857 - "slog", 1858 - "store", 1859 - "strum", 1860 - "types", 1861 - ] 1862 - 1863 - [[package]] 1864 - name = "db-key" 1865 - version = "0.0.5" 1866 - source = "registry+https://github.com/rust-lang/crates.io-index" 1867 - checksum = "b72465f46d518f6015d9cf07f7f3013a95dd6b9c2747c3d65ae0cce43929d14f" 1868 - 1869 - [[package]] 1870 - name = "delay_map" 1871 - version = "0.3.0" 1872 - source = "registry+https://github.com/rust-lang/crates.io-index" 1873 - checksum = "e4355c25cbf99edcb6b4a0e906f6bdc6956eda149e84455bea49696429b2f8e8" 1874 - dependencies = [ 1875 - "futures", 1876 - "tokio-util", 1877 - ] 1878 - 1879 - [[package]] 1880 - name = "deposit_contract" 1881 - version = "0.2.0" 1882 - dependencies = [ 1883 - "ethabi 16.0.0", 1884 - "ethereum_ssz", 1885 - "hex", 1886 - "reqwest", 1887 - "serde_json", 1888 - "sha2 0.9.9", 1889 - "tree_hash", 1890 - "types", 1891 - ] 1892 - 1893 - [[package]] 1894 - name = "der" 1895 - version = "0.6.1" 1896 - source = "registry+https://github.com/rust-lang/crates.io-index" 1897 - checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" 1898 - dependencies = [ 1899 - "const-oid", 1900 - "zeroize", 1901 - ] 1902 - 1903 - [[package]] 1904 - name = "der" 1905 - version = "0.7.9" 1906 - source = "registry+https://github.com/rust-lang/crates.io-index" 1907 - checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" 1908 - dependencies = [ 1909 - "const-oid", 1910 - "pem-rfc7468", 1911 - "zeroize", 1912 - ] 1913 - 1914 - [[package]] 1915 - name = "der-parser" 1916 - version = "9.0.0" 1917 - source = "registry+https://github.com/rust-lang/crates.io-index" 1918 - checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" 1919 - dependencies = [ 1920 - "asn1-rs", 1921 - "displaydoc", 1922 - "nom", 1923 - "num-bigint", 1924 - "num-traits", 1925 - "rusticata-macros", 1926 - ] 1927 - 1928 - [[package]] 1929 - name = "deranged" 1930 - version = "0.3.11" 1931 - source = "registry+https://github.com/rust-lang/crates.io-index" 1932 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 1933 - dependencies = [ 1934 - "powerfmt", 1935 - ] 1936 - 1937 - [[package]] 1938 - name = "derivative" 1939 - version = "2.2.0" 1940 - source = "registry+https://github.com/rust-lang/crates.io-index" 1941 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 1942 - dependencies = [ 1943 - "proc-macro2", 1944 - "quote", 1945 - "syn 1.0.109", 1946 - ] 1947 - 1948 - [[package]] 1949 - name = "derive_arbitrary" 1950 - version = "1.3.2" 1951 - source = "registry+https://github.com/rust-lang/crates.io-index" 1952 - checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" 1953 - dependencies = [ 1954 - "proc-macro2", 1955 - "quote", 1956 - "syn 2.0.72", 1957 - ] 1958 - 1959 - [[package]] 1960 - name = "derive_more" 1961 - version = "0.99.18" 1962 - source = "registry+https://github.com/rust-lang/crates.io-index" 1963 - checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" 1964 - dependencies = [ 1965 - "convert_case", 1966 - "proc-macro2", 1967 - "quote", 1968 - "rustc_version 0.4.0", 1969 - "syn 2.0.72", 1970 - ] 1971 - 1972 - [[package]] 1973 - name = "diesel" 1974 - version = "2.2.2" 1975 - source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "bf97ee7261bb708fa3402fa9c17a54b70e90e3cb98afb3dc8999d5512cb03f94" 1977 - dependencies = [ 1978 - "bitflags 2.6.0", 1979 - "byteorder", 1980 - "diesel_derives", 1981 - "itoa", 1982 - "pq-sys", 1983 - "r2d2", 1984 - ] 1985 - 1986 - [[package]] 1987 - name = "diesel_derives" 1988 - version = "2.2.2" 1989 - source = "registry+https://github.com/rust-lang/crates.io-index" 1990 - checksum = "d6ff2be1e7312c858b2ef974f5c7089833ae57b5311b334b30923af58e5718d8" 1991 - dependencies = [ 1992 - "diesel_table_macro_syntax", 1993 - "dsl_auto_type", 1994 - "proc-macro2", 1995 - "quote", 1996 - "syn 2.0.72", 1997 - ] 1998 - 1999 - [[package]] 2000 - name = "diesel_migrations" 2001 - version = "2.2.0" 2002 - source = "registry+https://github.com/rust-lang/crates.io-index" 2003 - checksum = "8a73ce704bad4231f001bff3314d91dce4aba0770cee8b233991859abc15c1f6" 2004 - dependencies = [ 2005 - "diesel", 2006 - "migrations_internals", 2007 - "migrations_macros", 2008 - ] 2009 - 2010 - [[package]] 2011 - name = "diesel_table_macro_syntax" 2012 - version = "0.2.0" 2013 - source = "registry+https://github.com/rust-lang/crates.io-index" 2014 - checksum = "209c735641a413bc68c4923a9d6ad4bcb3ca306b794edaa7eb0b3228a99ffb25" 2015 - dependencies = [ 2016 - "syn 2.0.72", 2017 - ] 2018 - 2019 - [[package]] 2020 - name = "digest" 2021 - version = "0.9.0" 2022 - source = "registry+https://github.com/rust-lang/crates.io-index" 2023 - checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 2024 - dependencies = [ 2025 - "generic-array", 2026 - ] 2027 - 2028 - [[package]] 2029 - name = "digest" 2030 - version = "0.10.7" 2031 - source = "registry+https://github.com/rust-lang/crates.io-index" 2032 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 2033 - dependencies = [ 2034 - "block-buffer 0.10.4", 2035 - "const-oid", 2036 - "crypto-common", 2037 - "subtle", 2038 - ] 2039 - 2040 - [[package]] 2041 - name = "directory" 2042 - version = "0.1.0" 2043 - dependencies = [ 2044 - "clap", 2045 - "clap_utils", 2046 - "eth2_network_config", 2047 - ] 2048 - 2049 - [[package]] 2050 - name = "dirs" 2051 - version = "3.0.2" 2052 - source = "registry+https://github.com/rust-lang/crates.io-index" 2053 - checksum = "30baa043103c9d0c2a57cf537cc2f35623889dc0d405e6c3cccfadbc81c71309" 2054 - dependencies = [ 2055 - "dirs-sys", 2056 - ] 2057 - 2058 - [[package]] 2059 - name = "dirs-next" 2060 - version = "2.0.0" 2061 - source = "registry+https://github.com/rust-lang/crates.io-index" 2062 - checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 2063 - dependencies = [ 2064 - "cfg-if", 2065 - "dirs-sys-next", 2066 - ] 2067 - 2068 - [[package]] 2069 - name = "dirs-sys" 2070 - version = "0.3.7" 2071 - source = "registry+https://github.com/rust-lang/crates.io-index" 2072 - checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 2073 - dependencies = [ 2074 - "libc", 2075 - "redox_users", 2076 - "winapi", 2077 - ] 2078 - 2079 - [[package]] 2080 - name = "dirs-sys-next" 2081 - version = "0.1.2" 2082 - source = "registry+https://github.com/rust-lang/crates.io-index" 2083 - checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 2084 - dependencies = [ 2085 - "libc", 2086 - "redox_users", 2087 - "winapi", 2088 - ] 2089 - 2090 - [[package]] 2091 - name = "discv5" 2092 - version = "0.4.1" 2093 - source = "registry+https://github.com/rust-lang/crates.io-index" 2094 - checksum = "bac33cb3f99889a57e56a8c6ccb77aaf0cfc7787602b7af09783f736d77314e1" 2095 - dependencies = [ 2096 - "aes 0.7.5", 2097 - "aes-gcm 0.9.2", 2098 - "arrayvec", 2099 - "delay_map", 2100 - "enr", 2101 - "fnv", 2102 - "futures", 2103 - "hashlink 0.8.4", 2104 - "hex", 2105 - "hkdf", 2106 - "lazy_static", 2107 - "libp2p", 2108 - "lru", 2109 - "more-asserts", 2110 - "parking_lot 0.11.2", 2111 - "rand", 2112 - "rlp", 2113 - "smallvec", 2114 - "socket2 0.4.10", 2115 - "tokio", 2116 - "tracing", 2117 - "uint", 2118 - "zeroize", 2119 - ] 2120 - 2121 - [[package]] 2122 - name = "displaydoc" 2123 - version = "0.2.5" 2124 - source = "registry+https://github.com/rust-lang/crates.io-index" 2125 - checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 2126 - dependencies = [ 2127 - "proc-macro2", 2128 - "quote", 2129 - "syn 2.0.72", 2130 - ] 2131 - 2132 - [[package]] 2133 - name = "dsl_auto_type" 2134 - version = "0.1.2" 2135 - source = "registry+https://github.com/rust-lang/crates.io-index" 2136 - checksum = "c5d9abe6314103864cc2d8901b7ae224e0ab1a103a0a416661b4097b0779b607" 2137 - dependencies = [ 2138 - "darling 0.20.10", 2139 - "either", 2140 - "heck 0.5.0", 2141 - "proc-macro2", 2142 - "quote", 2143 - "syn 2.0.72", 2144 - ] 2145 - 2146 - [[package]] 2147 - name = "dtoa" 2148 - version = "1.0.9" 2149 - source = "registry+https://github.com/rust-lang/crates.io-index" 2150 - checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" 2151 - 2152 - [[package]] 2153 - name = "dunce" 2154 - version = "1.0.4" 2155 - source = "registry+https://github.com/rust-lang/crates.io-index" 2156 - checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 2157 - 2158 - [[package]] 2159 - name = "ecdsa" 2160 - version = "0.14.8" 2161 - source = "registry+https://github.com/rust-lang/crates.io-index" 2162 - checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" 2163 - dependencies = [ 2164 - "der 0.6.1", 2165 - "elliptic-curve 0.12.3", 2166 - "rfc6979 0.3.1", 2167 - "signature 1.6.4", 2168 - ] 2169 - 2170 - [[package]] 2171 - name = "ecdsa" 2172 - version = "0.16.9" 2173 - source = "registry+https://github.com/rust-lang/crates.io-index" 2174 - checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 2175 - dependencies = [ 2176 - "der 0.7.9", 2177 - "digest 0.10.7", 2178 - "elliptic-curve 0.13.8", 2179 - "rfc6979 0.4.0", 2180 - "signature 2.2.0", 2181 - "spki 0.7.3", 2182 - ] 2183 - 2184 - [[package]] 2185 - name = "ed25519" 2186 - version = "2.2.3" 2187 - source = "registry+https://github.com/rust-lang/crates.io-index" 2188 - checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 2189 - dependencies = [ 2190 - "pkcs8 0.10.2", 2191 - "signature 2.2.0", 2192 - ] 2193 - 2194 - [[package]] 2195 - name = "ed25519-dalek" 2196 - version = "2.1.1" 2197 - source = "registry+https://github.com/rust-lang/crates.io-index" 2198 - checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" 2199 - dependencies = [ 2200 - "curve25519-dalek", 2201 - "ed25519", 2202 - "rand_core", 2203 - "serde", 2204 - "sha2 0.10.8", 2205 - "subtle", 2206 - "zeroize", 2207 - ] 2208 - 2209 - [[package]] 2210 - name = "ef_tests" 2211 - version = "0.2.0" 2212 - dependencies = [ 2213 - "beacon_chain", 2214 - "bls", 2215 - "compare_fields", 2216 - "compare_fields_derive", 2217 - "derivative", 2218 - "eth2_network_config", 2219 - "ethereum-types 0.14.1", 2220 - "ethereum_ssz", 2221 - "ethereum_ssz_derive", 2222 - "execution_layer", 2223 - "fork_choice", 2224 - "fs2", 2225 - "hex", 2226 - "kzg", 2227 - "logging", 2228 - "rayon", 2229 - "serde", 2230 - "serde_json", 2231 - "serde_repr", 2232 - "serde_yaml", 2233 - "snap", 2234 - "state_processing", 2235 - "swap_or_not_shuffle", 2236 - "tree_hash", 2237 - "tree_hash_derive", 2238 - "types", 2239 - ] 2240 - 2241 - [[package]] 2242 - name = "either" 2243 - version = "1.13.0" 2244 - source = "registry+https://github.com/rust-lang/crates.io-index" 2245 - checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 2246 - 2247 - [[package]] 2248 - name = "elliptic-curve" 2249 - version = "0.12.3" 2250 - source = "registry+https://github.com/rust-lang/crates.io-index" 2251 - checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" 2252 - dependencies = [ 2253 - "base16ct 0.1.1", 2254 - "crypto-bigint 0.4.9", 2255 - "der 0.6.1", 2256 - "digest 0.10.7", 2257 - "ff 0.12.1", 2258 - "generic-array", 2259 - "group 0.12.1", 2260 - "rand_core", 2261 - "sec1 0.3.0", 2262 - "subtle", 2263 - "zeroize", 2264 - ] 2265 - 2266 - [[package]] 2267 - name = "elliptic-curve" 2268 - version = "0.13.8" 2269 - source = "registry+https://github.com/rust-lang/crates.io-index" 2270 - checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 2271 - dependencies = [ 2272 - "base16ct 0.2.0", 2273 - "crypto-bigint 0.5.5", 2274 - "digest 0.10.7", 2275 - "ff 0.13.0", 2276 - "generic-array", 2277 - "group 0.13.0", 2278 - "pem-rfc7468", 2279 - "pkcs8 0.10.2", 2280 - "rand_core", 2281 - "sec1 0.7.3", 2282 - "subtle", 2283 - "zeroize", 2284 - ] 2285 - 2286 - [[package]] 2287 - name = "encoding_rs" 2288 - version = "0.8.34" 2289 - source = "registry+https://github.com/rust-lang/crates.io-index" 2290 - checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" 2291 - dependencies = [ 2292 - "cfg-if", 2293 - ] 2294 - 2295 - [[package]] 2296 - name = "enr" 2297 - version = "0.10.0" 2298 - source = "registry+https://github.com/rust-lang/crates.io-index" 2299 - checksum = "2a3d8dc56e02f954cac8eb489772c552c473346fc34f67412bb6244fd647f7e4" 2300 - dependencies = [ 2301 - "base64 0.21.7", 2302 - "bytes", 2303 - "ed25519-dalek", 2304 - "hex", 2305 - "k256 0.13.3", 2306 - "log", 2307 - "rand", 2308 - "rlp", 2309 - "serde", 2310 - "sha3 0.10.8", 2311 - "zeroize", 2312 - ] 2313 - 2314 - [[package]] 2315 - name = "enum-as-inner" 2316 - version = "0.6.0" 2317 - source = "registry+https://github.com/rust-lang/crates.io-index" 2318 - checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" 2319 - dependencies = [ 2320 - "heck 0.4.1", 2321 - "proc-macro2", 2322 - "quote", 2323 - "syn 2.0.72", 2324 - ] 2325 - 2326 - [[package]] 2327 - name = "env_logger" 2328 - version = "0.8.4" 2329 - source = "registry+https://github.com/rust-lang/crates.io-index" 2330 - checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3" 2331 - dependencies = [ 2332 - "log", 2333 - "regex", 2334 - ] 2335 - 2336 - [[package]] 2337 - name = "env_logger" 2338 - version = "0.9.3" 2339 - source = "registry+https://github.com/rust-lang/crates.io-index" 2340 - checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7" 2341 - dependencies = [ 2342 - "atty", 2343 - "humantime", 2344 - "log", 2345 - "regex", 2346 - "termcolor", 2347 - ] 2348 - 2349 - [[package]] 2350 - name = "environment" 2351 - version = "0.1.2" 2352 - dependencies = [ 2353 - "async-channel", 2354 - "ctrlc", 2355 - "eth2_config", 2356 - "eth2_network_config", 2357 - "futures", 2358 - "logging", 2359 - "serde", 2360 - "slog", 2361 - "slog-async", 2362 - "slog-json", 2363 - "slog-term", 2364 - "sloggers", 2365 - "task_executor", 2366 - "tokio", 2367 - "types", 2368 - ] 2369 - 2370 - [[package]] 2371 - name = "equivalent" 2372 - version = "1.0.1" 2373 - source = "registry+https://github.com/rust-lang/crates.io-index" 2374 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 2375 - 2376 - [[package]] 2377 - name = "erased-serde" 2378 - version = "0.3.31" 2379 - source = "registry+https://github.com/rust-lang/crates.io-index" 2380 - checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" 2381 - dependencies = [ 2382 - "serde", 2383 - ] 2384 - 2385 - [[package]] 2386 - name = "errno" 2387 - version = "0.3.9" 2388 - source = "registry+https://github.com/rust-lang/crates.io-index" 2389 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 2390 - dependencies = [ 2391 - "libc", 2392 - "windows-sys 0.52.0", 2393 - ] 2394 - 2395 - [[package]] 2396 - name = "error-chain" 2397 - version = "0.12.4" 2398 - source = "registry+https://github.com/rust-lang/crates.io-index" 2399 - checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" 2400 - dependencies = [ 2401 - "backtrace", 2402 - "version_check", 2403 - ] 2404 - 2405 - [[package]] 2406 - name = "eth1" 2407 - version = "0.2.0" 2408 - dependencies = [ 2409 - "environment", 2410 - "eth1_test_rig", 2411 - "eth2", 2412 - "ethereum_ssz", 2413 - "ethereum_ssz_derive", 2414 - "execution_layer", 2415 - "futures", 2416 - "lazy_static", 2417 - "lighthouse_metrics", 2418 - "merkle_proof", 2419 - "parking_lot 0.12.3", 2420 - "sensitive_url", 2421 - "serde", 2422 - "serde_yaml", 2423 - "slog", 2424 - "sloggers", 2425 - "state_processing", 2426 - "superstruct", 2427 - "task_executor", 2428 - "tokio", 2429 - "tree_hash", 2430 - "types", 2431 - ] 2432 - 2433 - [[package]] 2434 - name = "eth1_test_rig" 2435 - version = "0.2.0" 2436 - dependencies = [ 2437 - "deposit_contract", 2438 - "ethers-contract", 2439 - "ethers-core", 2440 - "ethers-providers", 2441 - "hex", 2442 - "serde_json", 2443 - "tokio", 2444 - "types", 2445 - "unused_port", 2446 - ] 2447 - 2448 - [[package]] 2449 - name = "eth2" 2450 - version = "0.1.0" 2451 - dependencies = [ 2452 - "account_utils", 2453 - "bytes", 2454 - "eth2_keystore", 2455 - "ethereum_serde_utils", 2456 - "ethereum_ssz", 2457 - "ethereum_ssz_derive", 2458 - "futures", 2459 - "futures-util", 2460 - "libsecp256k1", 2461 - "lighthouse_network", 2462 - "mediatype", 2463 - "pretty_reqwest_error", 2464 - "procfs", 2465 - "proto_array", 2466 - "psutil", 2467 - "reqwest", 2468 - "ring 0.16.20", 2469 - "sensitive_url", 2470 - "serde", 2471 - "serde_json", 2472 - "slashing_protection", 2473 - "ssz_types", 2474 - "store", 2475 - "tokio", 2476 - "types", 2477 - ] 2478 - 2479 - [[package]] 2480 - name = "eth2_config" 2481 - version = "0.2.0" 2482 - dependencies = [ 2483 - "paste", 2484 - "types", 2485 - ] 2486 - 2487 - [[package]] 2488 - name = "eth2_interop_keypairs" 2489 - version = "0.2.0" 2490 - dependencies = [ 2491 - "base64 0.13.1", 2492 - "bls", 2493 - "ethereum_hashing", 2494 - "hex", 2495 - "lazy_static", 2496 - "num-bigint", 2497 - "serde", 2498 - "serde_yaml", 2499 - ] 2500 - 2501 - [[package]] 2502 - name = "eth2_key_derivation" 2503 - version = "0.1.0" 2504 - dependencies = [ 2505 - "bls", 2506 - "hex", 2507 - "num-bigint-dig", 2508 - "ring 0.16.20", 2509 - "sha2 0.9.9", 2510 - "zeroize", 2511 - ] 2512 - 2513 - [[package]] 2514 - name = "eth2_keystore" 2515 - version = "0.1.0" 2516 - dependencies = [ 2517 - "aes 0.7.5", 2518 - "bls", 2519 - "eth2_key_derivation", 2520 - "hex", 2521 - "hmac 0.11.0", 2522 - "pbkdf2 0.8.0", 2523 - "rand", 2524 - "scrypt", 2525 - "serde", 2526 - "serde_json", 2527 - "serde_repr", 2528 - "sha2 0.9.9", 2529 - "tempfile", 2530 - "unicode-normalization", 2531 - "uuid", 2532 - "zeroize", 2533 - ] 2534 - 2535 - [[package]] 2536 - name = "eth2_network_config" 2537 - version = "0.2.0" 2538 - dependencies = [ 2539 - "bytes", 2540 - "discv5", 2541 - "eth2_config", 2542 - "ethereum_ssz", 2543 - "logging", 2544 - "pretty_reqwest_error", 2545 - "reqwest", 2546 - "sensitive_url", 2547 - "serde_yaml", 2548 - "sha2 0.9.9", 2549 - "slog", 2550 - "tempfile", 2551 - "tokio", 2552 - "types", 2553 - "url", 2554 - "zip", 2555 - ] 2556 - 2557 - [[package]] 2558 - name = "eth2_wallet" 2559 - version = "0.1.0" 2560 - dependencies = [ 2561 - "eth2_key_derivation", 2562 - "eth2_keystore", 2563 - "hex", 2564 - "rand", 2565 - "serde", 2566 - "serde_json", 2567 - "serde_repr", 2568 - "tempfile", 2569 - "tiny-bip39", 2570 - "uuid", 2571 - ] 2572 - 2573 - [[package]] 2574 - name = "eth2_wallet_manager" 2575 - version = "0.1.0" 2576 - dependencies = [ 2577 - "eth2_wallet", 2578 - "lockfile", 2579 - "tempfile", 2580 - ] 2581 - 2582 - [[package]] 2583 - name = "ethabi" 2584 - version = "16.0.0" 2585 - source = "registry+https://github.com/rust-lang/crates.io-index" 2586 - checksum = "a4c98847055d934070b90e806e12d3936b787d0a115068981c1d8dfd5dfef5a5" 2587 - dependencies = [ 2588 - "ethereum-types 0.12.1", 2589 - "hex", 2590 - "serde", 2591 - "serde_json", 2592 - "sha3 0.9.1", 2593 - "thiserror", 2594 - "uint", 2595 - ] 2596 - 2597 - [[package]] 2598 - name = "ethabi" 2599 - version = "18.0.0" 2600 - source = "registry+https://github.com/rust-lang/crates.io-index" 2601 - checksum = "7413c5f74cc903ea37386a8965a936cbeb334bd270862fdece542c1b2dcbc898" 2602 - dependencies = [ 2603 - "ethereum-types 0.14.1", 2604 - "hex", 2605 - "once_cell", 2606 - "regex", 2607 - "serde", 2608 - "serde_json", 2609 - "sha3 0.10.8", 2610 - "thiserror", 2611 - "uint", 2612 - ] 2613 - 2614 - [[package]] 2615 - name = "ethbloom" 2616 - version = "0.11.1" 2617 - source = "registry+https://github.com/rust-lang/crates.io-index" 2618 - checksum = "bfb684ac8fa8f6c5759f788862bb22ec6fe3cb392f6bfd08e3c64b603661e3f8" 2619 - dependencies = [ 2620 - "crunchy", 2621 - "fixed-hash 0.7.0", 2622 - "impl-rlp", 2623 - "impl-serde 0.3.2", 2624 - "tiny-keccak", 2625 - ] 2626 - 2627 - [[package]] 2628 - name = "ethbloom" 2629 - version = "0.13.0" 2630 - source = "registry+https://github.com/rust-lang/crates.io-index" 2631 - checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60" 2632 - dependencies = [ 2633 - "crunchy", 2634 - "fixed-hash 0.8.0", 2635 - "impl-codec 0.6.0", 2636 - "impl-rlp", 2637 - "impl-serde 0.4.0", 2638 - "scale-info", 2639 - "tiny-keccak", 2640 - ] 2641 - 2642 - [[package]] 2643 - name = "ethereum-types" 2644 - version = "0.12.1" 2645 - source = "registry+https://github.com/rust-lang/crates.io-index" 2646 - checksum = "05136f7057fe789f06e6d41d07b34e6f70d8c86e5693b60f97aaa6553553bdaf" 2647 - dependencies = [ 2648 - "ethbloom 0.11.1", 2649 - "fixed-hash 0.7.0", 2650 - "impl-rlp", 2651 - "impl-serde 0.3.2", 2652 - "primitive-types 0.10.1", 2653 - "uint", 2654 - ] 2655 - 2656 - [[package]] 2657 - name = "ethereum-types" 2658 - version = "0.14.1" 2659 - source = "registry+https://github.com/rust-lang/crates.io-index" 2660 - checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee" 2661 - dependencies = [ 2662 - "ethbloom 0.13.0", 2663 - "fixed-hash 0.8.0", 2664 - "impl-codec 0.6.0", 2665 - "impl-rlp", 2666 - "impl-serde 0.4.0", 2667 - "primitive-types 0.12.2", 2668 - "scale-info", 2669 - "uint", 2670 - ] 2671 - 2672 - [[package]] 2673 - name = "ethereum_hashing" 2674 - version = "0.6.0" 2675 - source = "registry+https://github.com/rust-lang/crates.io-index" 2676 - checksum = "6ea7b408432c13f71af01197b1d3d0069c48a27bfcfbe72a81fc346e47f6defb" 2677 - dependencies = [ 2678 - "cpufeatures", 2679 - "lazy_static", 2680 - "ring 0.17.8", 2681 - "sha2 0.10.8", 2682 - ] 2683 - 2684 - [[package]] 2685 - name = "ethereum_serde_utils" 2686 - version = "0.5.2" 2687 - source = "registry+https://github.com/rust-lang/crates.io-index" 2688 - checksum = "de4d5951468846963c24e8744c133d44f39dff2cd3a233f6be22b370d08a524f" 2689 - dependencies = [ 2690 - "ethereum-types 0.14.1", 2691 - "hex", 2692 - "serde", 2693 - "serde_derive", 2694 - "serde_json", 2695 - ] 2696 - 2697 - [[package]] 2698 - name = "ethereum_ssz" 2699 - version = "0.5.4" 2700 - source = "registry+https://github.com/rust-lang/crates.io-index" 2701 - checksum = "7d3627f83d8b87b432a5fad9934b4565260722a141a2c40f371f8080adec9425" 2702 - dependencies = [ 2703 - "ethereum-types 0.14.1", 2704 - "itertools 0.10.5", 2705 - "smallvec", 2706 - ] 2707 - 2708 - [[package]] 2709 - name = "ethereum_ssz_derive" 2710 - version = "0.5.4" 2711 - source = "registry+https://github.com/rust-lang/crates.io-index" 2712 - checksum = "8eccd5378ec34a07edd3d9b48088cbc63309d0367d14ba10b0cdb1d1791080ea" 2713 - dependencies = [ 2714 - "darling 0.13.4", 2715 - "proc-macro2", 2716 - "quote", 2717 - "syn 1.0.109", 2718 - ] 2719 - 2720 - [[package]] 2721 - name = "ethers-contract" 2722 - version = "1.0.2" 2723 - source = "registry+https://github.com/rust-lang/crates.io-index" 2724 - checksum = "e9c3c3e119a89f0a9a1e539e7faecea815f74ddcf7c90d0b00d1f524db2fdc9c" 2725 - dependencies = [ 2726 - "ethers-contract-abigen", 2727 - "ethers-contract-derive", 2728 - "ethers-core", 2729 - "ethers-providers", 2730 - "futures-util", 2731 - "hex", 2732 - "once_cell", 2733 - "pin-project", 2734 - "serde", 2735 - "serde_json", 2736 - "thiserror", 2737 - ] 2738 - 2739 - [[package]] 2740 - name = "ethers-contract-abigen" 2741 - version = "1.0.2" 2742 - source = "registry+https://github.com/rust-lang/crates.io-index" 2743 - checksum = "3d4e5ad46aede34901f71afdb7bb555710ed9613d88d644245c657dc371aa228" 2744 - dependencies = [ 2745 - "Inflector", 2746 - "cfg-if", 2747 - "dunce", 2748 - "ethers-core", 2749 - "eyre", 2750 - "getrandom", 2751 - "hex", 2752 - "proc-macro2", 2753 - "quote", 2754 - "regex", 2755 - "reqwest", 2756 - "serde", 2757 - "serde_json", 2758 - "syn 1.0.109", 2759 - "toml 0.5.11", 2760 - "url", 2761 - "walkdir", 2762 - ] 2763 - 2764 - [[package]] 2765 - name = "ethers-contract-derive" 2766 - version = "1.0.2" 2767 - source = "registry+https://github.com/rust-lang/crates.io-index" 2768 - checksum = "f192e8e4cf2b038318aae01e94e7644e0659a76219e94bcd3203df744341d61f" 2769 - dependencies = [ 2770 - "ethers-contract-abigen", 2771 - "ethers-core", 2772 - "hex", 2773 - "proc-macro2", 2774 - "quote", 2775 - "serde_json", 2776 - "syn 1.0.109", 2777 - ] 2778 - 2779 - [[package]] 2780 - name = "ethers-core" 2781 - version = "1.0.2" 2782 - source = "registry+https://github.com/rust-lang/crates.io-index" 2783 - checksum = "ade3e9c97727343984e1ceada4fdab11142d2ee3472d2c67027d56b1251d4f15" 2784 - dependencies = [ 2785 - "arrayvec", 2786 - "bytes", 2787 - "cargo_metadata", 2788 - "chrono", 2789 - "elliptic-curve 0.12.3", 2790 - "ethabi 18.0.0", 2791 - "generic-array", 2792 - "hex", 2793 - "k256 0.11.6", 2794 - "once_cell", 2795 - "open-fastrlp", 2796 - "rand", 2797 - "rlp", 2798 - "rlp-derive", 2799 - "serde", 2800 - "serde_json", 2801 - "strum", 2802 - "syn 1.0.109", 2803 - "thiserror", 2804 - "tiny-keccak", 2805 - "unicode-xid", 2806 - ] 2807 - 2808 - [[package]] 2809 - name = "ethers-providers" 2810 - version = "1.0.2" 2811 - source = "registry+https://github.com/rust-lang/crates.io-index" 2812 - checksum = "a1a9e0597aa6b2fdc810ff58bc95e4eeaa2c219b3e615ed025106ecb027407d8" 2813 - dependencies = [ 2814 - "async-trait", 2815 - "auto_impl", 2816 - "base64 0.13.1", 2817 - "ethers-core", 2818 - "futures-core", 2819 - "futures-timer", 2820 - "futures-util", 2821 - "getrandom", 2822 - "hashers", 2823 - "hex", 2824 - "http 0.2.12", 2825 - "once_cell", 2826 - "parking_lot 0.11.2", 2827 - "pin-project", 2828 - "reqwest", 2829 - "serde", 2830 - "serde_json", 2831 - "thiserror", 2832 - "tokio", 2833 - "tracing", 2834 - "tracing-futures", 2835 - "url", 2836 - "wasm-bindgen", 2837 - "wasm-bindgen-futures", 2838 - "wasm-timer", 2839 - "web-sys", 2840 - "ws_stream_wasm", 2841 - ] 2842 - 2843 - [[package]] 2844 - name = "event-listener" 2845 - version = "2.5.3" 2846 - source = "registry+https://github.com/rust-lang/crates.io-index" 2847 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 2848 - 2849 - [[package]] 2850 - name = "event-listener" 2851 - version = "5.3.1" 2852 - source = "registry+https://github.com/rust-lang/crates.io-index" 2853 - checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 2854 - dependencies = [ 2855 - "concurrent-queue", 2856 - "parking", 2857 - "pin-project-lite", 2858 - ] 2859 - 2860 - [[package]] 2861 - name = "event-listener-strategy" 2862 - version = "0.5.2" 2863 - source = "registry+https://github.com/rust-lang/crates.io-index" 2864 - checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 2865 - dependencies = [ 2866 - "event-listener 5.3.1", 2867 - "pin-project-lite", 2868 - ] 2869 - 2870 - [[package]] 2871 - name = "execution_engine_integration" 2872 - version = "0.1.0" 2873 - dependencies = [ 2874 - "async-channel", 2875 - "deposit_contract", 2876 - "ethers-core", 2877 - "ethers-providers", 2878 - "execution_layer", 2879 - "fork_choice", 2880 - "futures", 2881 - "hex", 2882 - "logging", 2883 - "reqwest", 2884 - "sensitive_url", 2885 - "serde_json", 2886 - "task_executor", 2887 - "tempfile", 2888 - "tokio", 2889 - "types", 2890 - "unused_port", 2891 - ] 2892 - 2893 - [[package]] 2894 - name = "execution_layer" 2895 - version = "0.1.0" 2896 - dependencies = [ 2897 - "alloy-consensus", 2898 - "alloy-primitives", 2899 - "alloy-rlp", 2900 - "arc-swap", 2901 - "builder_client", 2902 - "bytes", 2903 - "environment", 2904 - "eth2", 2905 - "eth2_network_config", 2906 - "ethereum_serde_utils", 2907 - "ethereum_ssz", 2908 - "ethers-core", 2909 - "fork_choice", 2910 - "hash-db", 2911 - "hash256-std-hasher", 2912 - "hex", 2913 - "jsonwebtoken", 2914 - "keccak-hash", 2915 - "kzg", 2916 - "lazy_static", 2917 - "lighthouse_metrics", 2918 - "lighthouse_version", 2919 - "lru", 2920 - "parking_lot 0.12.3", 2921 - "pretty_reqwest_error", 2922 - "rand", 2923 - "reqwest", 2924 - "sensitive_url", 2925 - "serde", 2926 - "serde_json", 2927 - "slog", 2928 - "slot_clock", 2929 - "ssz_types", 2930 - "state_processing", 2931 - "strum", 2932 - "superstruct", 2933 - "task_executor", 2934 - "tempfile", 2935 - "tokio", 2936 - "tokio-stream", 2937 - "tree_hash", 2938 - "tree_hash_derive", 2939 - "triehash", 2940 - "types", 2941 - "warp", 2942 - "zeroize", 2943 - ] 2944 - 2945 - [[package]] 2946 - name = "eyre" 2947 - version = "0.6.12" 2948 - source = "registry+https://github.com/rust-lang/crates.io-index" 2949 - checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" 2950 - dependencies = [ 2951 - "indenter", 2952 - "once_cell", 2953 - ] 2954 - 2955 - [[package]] 2956 - name = "fallible-iterator" 2957 - version = "0.2.0" 2958 - source = "registry+https://github.com/rust-lang/crates.io-index" 2959 - checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 2960 - 2961 - [[package]] 2962 - name = "fallible-streaming-iterator" 2963 - version = "0.1.9" 2964 - source = "registry+https://github.com/rust-lang/crates.io-index" 2965 - checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 2966 - 2967 - [[package]] 2968 - name = "fastrand" 2969 - version = "2.1.0" 2970 - source = "registry+https://github.com/rust-lang/crates.io-index" 2971 - checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 2972 - 2973 - [[package]] 2974 - name = "fastrlp" 2975 - version = "0.3.1" 2976 - source = "registry+https://github.com/rust-lang/crates.io-index" 2977 - checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418" 2978 - dependencies = [ 2979 - "arrayvec", 2980 - "auto_impl", 2981 - "bytes", 2982 - ] 2983 - 2984 - [[package]] 2985 - name = "fdlimit" 2986 - version = "0.3.0" 2987 - source = "registry+https://github.com/rust-lang/crates.io-index" 2988 - checksum = "e182f7dbc2ef73d9ef67351c5fbbea084729c48362d3ce9dd44c28e32e277fe5" 2989 - dependencies = [ 2990 - "libc", 2991 - "thiserror", 2992 - ] 2993 - 2994 - [[package]] 2995 - name = "ff" 2996 - version = "0.12.1" 2997 - source = "registry+https://github.com/rust-lang/crates.io-index" 2998 - checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" 2999 - dependencies = [ 3000 - "rand_core", 3001 - "subtle", 3002 - ] 3003 - 3004 - [[package]] 3005 - name = "ff" 3006 - version = "0.13.0" 3007 - source = "registry+https://github.com/rust-lang/crates.io-index" 3008 - checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" 3009 - dependencies = [ 3010 - "rand_core", 3011 - "subtle", 3012 - ] 3013 - 3014 - [[package]] 3015 - name = "ffi-opaque" 3016 - version = "2.0.1" 3017 - source = "registry+https://github.com/rust-lang/crates.io-index" 3018 - checksum = "ec54ac60a7f2ee9a97cad9946f9bf629a3bc6a7ae59e68983dc9318f5a54b81a" 3019 - 3020 - [[package]] 3021 - name = "fiat-crypto" 3022 - version = "0.2.9" 3023 - source = "registry+https://github.com/rust-lang/crates.io-index" 3024 - checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 3025 - 3026 - [[package]] 3027 - name = "field-offset" 3028 - version = "0.3.6" 3029 - source = "registry+https://github.com/rust-lang/crates.io-index" 3030 - checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 3031 - dependencies = [ 3032 - "memoffset", 3033 - "rustc_version 0.4.0", 3034 - ] 3035 - 3036 - [[package]] 3037 - name = "filesystem" 3038 - version = "0.1.0" 3039 - dependencies = [ 3040 - "winapi", 3041 - "windows-acl", 3042 - ] 3043 - 3044 - [[package]] 3045 - name = "fixed-hash" 3046 - version = "0.7.0" 3047 - source = "registry+https://github.com/rust-lang/crates.io-index" 3048 - checksum = "cfcf0ed7fe52a17a03854ec54a9f76d6d84508d1c0e66bc1793301c73fc8493c" 3049 - dependencies = [ 3050 - "byteorder", 3051 - "rand", 3052 - "rustc-hex", 3053 - "static_assertions", 3054 - ] 3055 - 3056 - [[package]] 3057 - name = "fixed-hash" 3058 - version = "0.8.0" 3059 - source = "registry+https://github.com/rust-lang/crates.io-index" 3060 - checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" 3061 - dependencies = [ 3062 - "arbitrary", 3063 - "byteorder", 3064 - "rand", 3065 - "rustc-hex", 3066 - "static_assertions", 3067 - ] 3068 - 3069 - [[package]] 3070 - name = "flate2" 3071 - version = "1.0.30" 3072 - source = "registry+https://github.com/rust-lang/crates.io-index" 3073 - checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 3074 - dependencies = [ 3075 - "crc32fast", 3076 - "libz-sys", 3077 - "miniz_oxide", 3078 - ] 3079 - 3080 - [[package]] 3081 - name = "fnv" 3082 - version = "1.0.7" 3083 - source = "registry+https://github.com/rust-lang/crates.io-index" 3084 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 3085 - 3086 - [[package]] 3087 - name = "foreign-types" 3088 - version = "0.3.2" 3089 - source = "registry+https://github.com/rust-lang/crates.io-index" 3090 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 3091 - dependencies = [ 3092 - "foreign-types-shared", 3093 - ] 3094 - 3095 - [[package]] 3096 - name = "foreign-types-shared" 3097 - version = "0.1.1" 3098 - source = "registry+https://github.com/rust-lang/crates.io-index" 3099 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 3100 - 3101 - [[package]] 3102 - name = "fork_choice" 3103 - version = "0.1.0" 3104 - dependencies = [ 3105 - "beacon_chain", 3106 - "ethereum_ssz", 3107 - "ethereum_ssz_derive", 3108 - "proto_array", 3109 - "slog", 3110 - "state_processing", 3111 - "store", 3112 - "tokio", 3113 - "types", 3114 - ] 3115 - 3116 - [[package]] 3117 - name = "form_urlencoded" 3118 - version = "1.2.1" 3119 - source = "registry+https://github.com/rust-lang/crates.io-index" 3120 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 3121 - dependencies = [ 3122 - "percent-encoding", 3123 - ] 3124 - 3125 - [[package]] 3126 - name = "fs2" 3127 - version = "0.4.3" 3128 - source = "registry+https://github.com/rust-lang/crates.io-index" 3129 - checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" 3130 - dependencies = [ 3131 - "libc", 3132 - "winapi", 3133 - ] 3134 - 3135 - [[package]] 3136 - name = "funty" 3137 - version = "1.1.0" 3138 - source = "registry+https://github.com/rust-lang/crates.io-index" 3139 - checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7" 3140 - 3141 - [[package]] 3142 - name = "funty" 3143 - version = "2.0.0" 3144 - source = "registry+https://github.com/rust-lang/crates.io-index" 3145 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 3146 - 3147 - [[package]] 3148 - name = "futures" 3149 - version = "0.3.30" 3150 - source = "registry+https://github.com/rust-lang/crates.io-index" 3151 - checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 3152 - dependencies = [ 3153 - "futures-channel", 3154 - "futures-core", 3155 - "futures-executor", 3156 - "futures-io", 3157 - "futures-sink", 3158 - "futures-task", 3159 - "futures-util", 3160 - ] 3161 - 3162 - [[package]] 3163 - name = "futures-bounded" 3164 - version = "0.2.4" 3165 - source = "registry+https://github.com/rust-lang/crates.io-index" 3166 - checksum = "91f328e7fb845fc832912fb6a34f40cf6d1888c92f974d1893a54e97b5ff542e" 3167 - dependencies = [ 3168 - "futures-timer", 3169 - "futures-util", 3170 - ] 3171 - 3172 - [[package]] 3173 - name = "futures-channel" 3174 - version = "0.3.30" 3175 - source = "registry+https://github.com/rust-lang/crates.io-index" 3176 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 3177 - dependencies = [ 3178 - "futures-core", 3179 - "futures-sink", 3180 - ] 3181 - 3182 - [[package]] 3183 - name = "futures-core" 3184 - version = "0.3.30" 3185 - source = "registry+https://github.com/rust-lang/crates.io-index" 3186 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 3187 - 3188 - [[package]] 3189 - name = "futures-executor" 3190 - version = "0.3.30" 3191 - source = "registry+https://github.com/rust-lang/crates.io-index" 3192 - checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 3193 - dependencies = [ 3194 - "futures-core", 3195 - "futures-task", 3196 - "futures-util", 3197 - "num_cpus", 3198 - ] 3199 - 3200 - [[package]] 3201 - name = "futures-io" 3202 - version = "0.3.30" 3203 - source = "registry+https://github.com/rust-lang/crates.io-index" 3204 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 3205 - 3206 - [[package]] 3207 - name = "futures-lite" 3208 - version = "2.3.0" 3209 - source = "registry+https://github.com/rust-lang/crates.io-index" 3210 - checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 3211 - dependencies = [ 3212 - "futures-core", 3213 - "pin-project-lite", 3214 - ] 3215 - 3216 - [[package]] 3217 - name = "futures-macro" 3218 - version = "0.3.30" 3219 - source = "registry+https://github.com/rust-lang/crates.io-index" 3220 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 3221 - dependencies = [ 3222 - "proc-macro2", 3223 - "quote", 3224 - "syn 2.0.72", 3225 - ] 3226 - 3227 - [[package]] 3228 - name = "futures-rustls" 3229 - version = "0.26.0" 3230 - source = "registry+https://github.com/rust-lang/crates.io-index" 3231 - checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb" 3232 - dependencies = [ 3233 - "futures-io", 3234 - "rustls 0.23.12", 3235 - "rustls-pki-types", 3236 - ] 3237 - 3238 - [[package]] 3239 - name = "futures-sink" 3240 - version = "0.3.30" 3241 - source = "registry+https://github.com/rust-lang/crates.io-index" 3242 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 3243 - 3244 - [[package]] 3245 - name = "futures-task" 3246 - version = "0.3.30" 3247 - source = "registry+https://github.com/rust-lang/crates.io-index" 3248 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 3249 - 3250 - [[package]] 3251 - name = "futures-ticker" 3252 - version = "0.0.3" 3253 - source = "registry+https://github.com/rust-lang/crates.io-index" 3254 - checksum = "9763058047f713632a52e916cc7f6a4b3fc6e9fc1ff8c5b1dc49e5a89041682e" 3255 - dependencies = [ 3256 - "futures", 3257 - "futures-timer", 3258 - "instant", 3259 - ] 3260 - 3261 - [[package]] 3262 - name = "futures-timer" 3263 - version = "3.0.3" 3264 - source = "registry+https://github.com/rust-lang/crates.io-index" 3265 - checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 3266 - 3267 - [[package]] 3268 - name = "futures-util" 3269 - version = "0.3.30" 3270 - source = "registry+https://github.com/rust-lang/crates.io-index" 3271 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 3272 - dependencies = [ 3273 - "futures-channel", 3274 - "futures-core", 3275 - "futures-io", 3276 - "futures-macro", 3277 - "futures-sink", 3278 - "futures-task", 3279 - "memchr", 3280 - "pin-project-lite", 3281 - "pin-utils", 3282 - "slab", 3283 - ] 3284 - 3285 - [[package]] 3286 - name = "fxhash" 3287 - version = "0.2.1" 3288 - source = "registry+https://github.com/rust-lang/crates.io-index" 3289 - checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 3290 - dependencies = [ 3291 - "byteorder", 3292 - ] 3293 - 3294 - [[package]] 3295 - name = "generic-array" 3296 - version = "0.14.7" 3297 - source = "registry+https://github.com/rust-lang/crates.io-index" 3298 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 3299 - dependencies = [ 3300 - "typenum", 3301 - "version_check", 3302 - "zeroize", 3303 - ] 3304 - 3305 - [[package]] 3306 - name = "genesis" 3307 - version = "0.2.0" 3308 - dependencies = [ 3309 - "environment", 3310 - "eth1", 3311 - "eth1_test_rig", 3312 - "ethereum_hashing", 3313 - "ethereum_ssz", 3314 - "futures", 3315 - "int_to_bytes", 3316 - "merkle_proof", 3317 - "rayon", 3318 - "sensitive_url", 3319 - "slog", 3320 - "state_processing", 3321 - "tokio", 3322 - "tree_hash", 3323 - "types", 3324 - ] 3325 - 3326 - [[package]] 3327 - name = "getrandom" 3328 - version = "0.2.15" 3329 - source = "registry+https://github.com/rust-lang/crates.io-index" 3330 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 3331 - dependencies = [ 3332 - "cfg-if", 3333 - "js-sys", 3334 - "libc", 3335 - "wasi", 3336 - "wasm-bindgen", 3337 - ] 3338 - 3339 - [[package]] 3340 - name = "ghash" 3341 - version = "0.4.4" 3342 - source = "registry+https://github.com/rust-lang/crates.io-index" 3343 - checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99" 3344 - dependencies = [ 3345 - "opaque-debug", 3346 - "polyval 0.5.3", 3347 - ] 3348 - 3349 - [[package]] 3350 - name = "ghash" 3351 - version = "0.5.1" 3352 - source = "registry+https://github.com/rust-lang/crates.io-index" 3353 - checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 3354 - dependencies = [ 3355 - "opaque-debug", 3356 - "polyval 0.6.2", 3357 - ] 3358 - 3359 - [[package]] 3360 - name = "gimli" 3361 - version = "0.29.0" 3362 - source = "registry+https://github.com/rust-lang/crates.io-index" 3363 - checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 3364 - 3365 - [[package]] 3366 - name = "git-version" 3367 - version = "0.3.9" 3368 - source = "registry+https://github.com/rust-lang/crates.io-index" 3369 - checksum = "1ad568aa3db0fcbc81f2f116137f263d7304f512a1209b35b85150d3ef88ad19" 3370 - dependencies = [ 3371 - "git-version-macro", 3372 - ] 3373 - 3374 - [[package]] 3375 - name = "git-version-macro" 3376 - version = "0.3.9" 3377 - source = "registry+https://github.com/rust-lang/crates.io-index" 3378 - checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0" 3379 - dependencies = [ 3380 - "proc-macro2", 3381 - "quote", 3382 - "syn 2.0.72", 3383 - ] 3384 - 3385 - [[package]] 3386 - name = "glob" 3387 - version = "0.3.1" 3388 - source = "registry+https://github.com/rust-lang/crates.io-index" 3389 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 3390 - 3391 - [[package]] 3392 - name = "gossipsub" 3393 - version = "0.5.0" 3394 - dependencies = [ 3395 - "async-channel", 3396 - "asynchronous-codec 0.7.0", 3397 - "base64 0.21.7", 3398 - "byteorder", 3399 - "bytes", 3400 - "either", 3401 - "fnv", 3402 - "futures", 3403 - "futures-ticker", 3404 - "futures-timer", 3405 - "getrandom", 3406 - "hashlink 0.9.1", 3407 - "hex_fmt", 3408 - "libp2p", 3409 - "prometheus-client", 3410 - "quick-protobuf", 3411 - "quick-protobuf-codec 0.3.1", 3412 - "quickcheck", 3413 - "rand", 3414 - "regex", 3415 - "serde", 3416 - "sha2 0.10.8", 3417 - "tracing", 3418 - "void", 3419 - "web-time", 3420 - ] 3421 - 3422 - [[package]] 3423 - name = "group" 3424 - version = "0.12.1" 3425 - source = "registry+https://github.com/rust-lang/crates.io-index" 3426 - checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" 3427 - dependencies = [ 3428 - "ff 0.12.1", 3429 - "rand_core", 3430 - "subtle", 3431 - ] 3432 - 3433 - [[package]] 3434 - name = "group" 3435 - version = "0.13.0" 3436 - source = "registry+https://github.com/rust-lang/crates.io-index" 3437 - checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 3438 - dependencies = [ 3439 - "ff 0.13.0", 3440 - "rand_core", 3441 - "subtle", 3442 - ] 3443 - 3444 - [[package]] 3445 - name = "h2" 3446 - version = "0.3.26" 3447 - source = "registry+https://github.com/rust-lang/crates.io-index" 3448 - checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 3449 - dependencies = [ 3450 - "bytes", 3451 - "fnv", 3452 - "futures-core", 3453 - "futures-sink", 3454 - "futures-util", 3455 - "http 0.2.12", 3456 - "indexmap 2.2.6", 3457 - "slab", 3458 - "tokio", 3459 - "tokio-util", 3460 - "tracing", 3461 - ] 3462 - 3463 - [[package]] 3464 - name = "half" 3465 - version = "2.4.1" 3466 - source = "registry+https://github.com/rust-lang/crates.io-index" 3467 - checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 3468 - dependencies = [ 3469 - "cfg-if", 3470 - "crunchy", 3471 - ] 3472 - 3473 - [[package]] 3474 - name = "hash-db" 3475 - version = "0.15.2" 3476 - source = "registry+https://github.com/rust-lang/crates.io-index" 3477 - checksum = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a" 3478 - 3479 - [[package]] 3480 - name = "hash256-std-hasher" 3481 - version = "0.15.2" 3482 - source = "registry+https://github.com/rust-lang/crates.io-index" 3483 - checksum = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" 3484 - dependencies = [ 3485 - "crunchy", 3486 - ] 3487 - 3488 - [[package]] 3489 - name = "hashbrown" 3490 - version = "0.12.3" 3491 - source = "registry+https://github.com/rust-lang/crates.io-index" 3492 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 3493 - 3494 - [[package]] 3495 - name = "hashbrown" 3496 - version = "0.14.5" 3497 - source = "registry+https://github.com/rust-lang/crates.io-index" 3498 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 3499 - dependencies = [ 3500 - "ahash", 3501 - "allocator-api2", 3502 - ] 3503 - 3504 - [[package]] 3505 - name = "hashers" 3506 - version = "1.0.1" 3507 - source = "registry+https://github.com/rust-lang/crates.io-index" 3508 - checksum = "b2bca93b15ea5a746f220e56587f71e73c6165eab783df9e26590069953e3c30" 3509 - dependencies = [ 3510 - "fxhash", 3511 - ] 3512 - 3513 - [[package]] 3514 - name = "hashlink" 3515 - version = "0.8.4" 3516 - source = "registry+https://github.com/rust-lang/crates.io-index" 3517 - checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 3518 - dependencies = [ 3519 - "hashbrown 0.14.5", 3520 - ] 3521 - 3522 - [[package]] 3523 - name = "hashlink" 3524 - version = "0.9.1" 3525 - source = "registry+https://github.com/rust-lang/crates.io-index" 3526 - checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" 3527 - dependencies = [ 3528 - "hashbrown 0.14.5", 3529 - ] 3530 - 3531 - [[package]] 3532 - name = "headers" 3533 - version = "0.3.9" 3534 - source = "registry+https://github.com/rust-lang/crates.io-index" 3535 - checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" 3536 - dependencies = [ 3537 - "base64 0.21.7", 3538 - "bytes", 3539 - "headers-core", 3540 - "http 0.2.12", 3541 - "httpdate", 3542 - "mime", 3543 - "sha1", 3544 - ] 3545 - 3546 - [[package]] 3547 - name = "headers-core" 3548 - version = "0.2.0" 3549 - source = "registry+https://github.com/rust-lang/crates.io-index" 3550 - checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 3551 - dependencies = [ 3552 - "http 0.2.12", 3553 - ] 3554 - 3555 - [[package]] 3556 - name = "heck" 3557 - version = "0.4.1" 3558 - source = "registry+https://github.com/rust-lang/crates.io-index" 3559 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 3560 - 3561 - [[package]] 3562 - name = "heck" 3563 - version = "0.5.0" 3564 - source = "registry+https://github.com/rust-lang/crates.io-index" 3565 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 3566 - 3567 - [[package]] 3568 - name = "hermit-abi" 3569 - version = "0.1.19" 3570 - source = "registry+https://github.com/rust-lang/crates.io-index" 3571 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 3572 - dependencies = [ 3573 - "libc", 3574 - ] 3575 - 3576 - [[package]] 3577 - name = "hermit-abi" 3578 - version = "0.3.9" 3579 - source = "registry+https://github.com/rust-lang/crates.io-index" 3580 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 3581 - 3582 - [[package]] 3583 - name = "hermit-abi" 3584 - version = "0.4.0" 3585 - source = "registry+https://github.com/rust-lang/crates.io-index" 3586 - checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 3587 - 3588 - [[package]] 3589 - name = "hex" 3590 - version = "0.4.3" 3591 - source = "registry+https://github.com/rust-lang/crates.io-index" 3592 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 3593 - 3594 - [[package]] 3595 - name = "hex-literal" 3596 - version = "0.4.1" 3597 - source = "registry+https://github.com/rust-lang/crates.io-index" 3598 - checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" 3599 - 3600 - [[package]] 3601 - name = "hex_fmt" 3602 - version = "0.3.0" 3603 - source = "registry+https://github.com/rust-lang/crates.io-index" 3604 - checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" 3605 - 3606 - [[package]] 3607 - name = "hickory-proto" 3608 - version = "0.24.1" 3609 - source = "registry+https://github.com/rust-lang/crates.io-index" 3610 - checksum = "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" 3611 - dependencies = [ 3612 - "async-trait", 3613 - "cfg-if", 3614 - "data-encoding", 3615 - "enum-as-inner", 3616 - "futures-channel", 3617 - "futures-io", 3618 - "futures-util", 3619 - "idna 0.4.0", 3620 - "ipnet", 3621 - "once_cell", 3622 - "rand", 3623 - "socket2 0.5.7", 3624 - "thiserror", 3625 - "tinyvec", 3626 - "tokio", 3627 - "tracing", 3628 - "url", 3629 - ] 3630 - 3631 - [[package]] 3632 - name = "hickory-resolver" 3633 - version = "0.24.1" 3634 - source = "registry+https://github.com/rust-lang/crates.io-index" 3635 - checksum = "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" 3636 - dependencies = [ 3637 - "cfg-if", 3638 - "futures-util", 3639 - "hickory-proto", 3640 - "ipconfig", 3641 - "lru-cache", 3642 - "once_cell", 3643 - "parking_lot 0.12.3", 3644 - "rand", 3645 - "resolv-conf", 3646 - "smallvec", 3647 - "thiserror", 3648 - "tokio", 3649 - "tracing", 3650 - ] 3651 - 3652 - [[package]] 3653 - name = "hkdf" 3654 - version = "0.12.4" 3655 - source = "registry+https://github.com/rust-lang/crates.io-index" 3656 - checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 3657 - dependencies = [ 3658 - "hmac 0.12.1", 3659 - ] 3660 - 3661 - [[package]] 3662 - name = "hmac" 3663 - version = "0.8.1" 3664 - source = "registry+https://github.com/rust-lang/crates.io-index" 3665 - checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840" 3666 - dependencies = [ 3667 - "crypto-mac 0.8.0", 3668 - "digest 0.9.0", 3669 - ] 3670 - 3671 - [[package]] 3672 - name = "hmac" 3673 - version = "0.11.0" 3674 - source = "registry+https://github.com/rust-lang/crates.io-index" 3675 - checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b" 3676 - dependencies = [ 3677 - "crypto-mac 0.11.0", 3678 - "digest 0.9.0", 3679 - ] 3680 - 3681 - [[package]] 3682 - name = "hmac" 3683 - version = "0.12.1" 3684 - source = "registry+https://github.com/rust-lang/crates.io-index" 3685 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 3686 - dependencies = [ 3687 - "digest 0.10.7", 3688 - ] 3689 - 3690 - [[package]] 3691 - name = "hmac-drbg" 3692 - version = "0.3.0" 3693 - source = "registry+https://github.com/rust-lang/crates.io-index" 3694 - checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1" 3695 - dependencies = [ 3696 - "digest 0.9.0", 3697 - "generic-array", 3698 - "hmac 0.8.1", 3699 - ] 3700 - 3701 - [[package]] 3702 - name = "hostname" 3703 - version = "0.3.1" 3704 - source = "registry+https://github.com/rust-lang/crates.io-index" 3705 - checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 3706 - dependencies = [ 3707 - "libc", 3708 - "match_cfg", 3709 - "winapi", 3710 - ] 3711 - 3712 - [[package]] 3713 - name = "http" 3714 - version = "0.2.12" 3715 - source = "registry+https://github.com/rust-lang/crates.io-index" 3716 - checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 3717 - dependencies = [ 3718 - "bytes", 3719 - "fnv", 3720 - "itoa", 3721 - ] 3722 - 3723 - [[package]] 3724 - name = "http" 3725 - version = "1.1.0" 3726 - source = "registry+https://github.com/rust-lang/crates.io-index" 3727 - checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 3728 - dependencies = [ 3729 - "bytes", 3730 - "fnv", 3731 - "itoa", 3732 - ] 3733 - 3734 - [[package]] 3735 - name = "http-body" 3736 - version = "0.4.6" 3737 - source = "registry+https://github.com/rust-lang/crates.io-index" 3738 - checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 3739 - dependencies = [ 3740 - "bytes", 3741 - "http 0.2.12", 3742 - "pin-project-lite", 3743 - ] 3744 - 3745 - [[package]] 3746 - name = "http-body" 3747 - version = "1.0.1" 3748 - source = "registry+https://github.com/rust-lang/crates.io-index" 3749 - checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 3750 - dependencies = [ 3751 - "bytes", 3752 - "http 1.1.0", 3753 - ] 3754 - 3755 - [[package]] 3756 - name = "http-body-util" 3757 - version = "0.1.2" 3758 - source = "registry+https://github.com/rust-lang/crates.io-index" 3759 - checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 3760 - dependencies = [ 3761 - "bytes", 3762 - "futures-util", 3763 - "http 1.1.0", 3764 - "http-body 1.0.1", 3765 - "pin-project-lite", 3766 - ] 3767 - 3768 - [[package]] 3769 - name = "http_api" 3770 - version = "0.1.0" 3771 - dependencies = [ 3772 - "beacon_chain", 3773 - "beacon_processor", 3774 - "bs58 0.4.0", 3775 - "bytes", 3776 - "directory", 3777 - "environment", 3778 - "eth1", 3779 - "eth2", 3780 - "ethereum_serde_utils", 3781 - "ethereum_ssz", 3782 - "execution_layer", 3783 - "futures", 3784 - "genesis", 3785 - "hex", 3786 - "lazy_static", 3787 - "lighthouse_metrics", 3788 - "lighthouse_network", 3789 - "lighthouse_version", 3790 - "logging", 3791 - "lru", 3792 - "network", 3793 - "operation_pool", 3794 - "parking_lot 0.12.3", 3795 - "proto_array", 3796 - "safe_arith", 3797 - "sensitive_url", 3798 - "serde", 3799 - "serde_json", 3800 - "slog", 3801 - "slot_clock", 3802 - "state_processing", 3803 - "store", 3804 - "sysinfo", 3805 - "system_health", 3806 - "task_executor", 3807 - "tokio", 3808 - "tokio-stream", 3809 - "tree_hash", 3810 - "types", 3811 - "warp", 3812 - "warp_utils", 3813 - ] 3814 - 3815 - [[package]] 3816 - name = "http_metrics" 3817 - version = "0.1.0" 3818 - dependencies = [ 3819 - "beacon_chain", 3820 - "environment", 3821 - "lighthouse_metrics", 3822 - "lighthouse_network", 3823 - "lighthouse_version", 3824 - "malloc_utils", 3825 - "reqwest", 3826 - "serde", 3827 - "slog", 3828 - "slot_clock", 3829 - "store", 3830 - "tokio", 3831 - "types", 3832 - "warp", 3833 - "warp_utils", 3834 - ] 3835 - 3836 - [[package]] 3837 - name = "httparse" 3838 - version = "1.9.4" 3839 - source = "registry+https://github.com/rust-lang/crates.io-index" 3840 - checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" 3841 - 3842 - [[package]] 3843 - name = "httpdate" 3844 - version = "1.0.3" 3845 - source = "registry+https://github.com/rust-lang/crates.io-index" 3846 - checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 3847 - 3848 - [[package]] 3849 - name = "humantime" 3850 - version = "2.1.0" 3851 - source = "registry+https://github.com/rust-lang/crates.io-index" 3852 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 3853 - 3854 - [[package]] 3855 - name = "hyper" 3856 - version = "0.14.30" 3857 - source = "registry+https://github.com/rust-lang/crates.io-index" 3858 - checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9" 3859 - dependencies = [ 3860 - "bytes", 3861 - "futures-channel", 3862 - "futures-core", 3863 - "futures-util", 3864 - "h2", 3865 - "http 0.2.12", 3866 - "http-body 0.4.6", 3867 - "httparse", 3868 - "httpdate", 3869 - "itoa", 3870 - "pin-project-lite", 3871 - "socket2 0.5.7", 3872 - "tokio", 3873 - "tower-service", 3874 - "tracing", 3875 - "want", 3876 - ] 3877 - 3878 - [[package]] 3879 - name = "hyper" 3880 - version = "1.4.1" 3881 - source = "registry+https://github.com/rust-lang/crates.io-index" 3882 - checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" 3883 - dependencies = [ 3884 - "bytes", 3885 - "futures-channel", 3886 - "futures-util", 3887 - "http 1.1.0", 3888 - "http-body 1.0.1", 3889 - "httparse", 3890 - "httpdate", 3891 - "itoa", 3892 - "pin-project-lite", 3893 - "smallvec", 3894 - "tokio", 3895 - ] 3896 - 3897 - [[package]] 3898 - name = "hyper-rustls" 3899 - version = "0.24.2" 3900 - source = "registry+https://github.com/rust-lang/crates.io-index" 3901 - checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 3902 - dependencies = [ 3903 - "futures-util", 3904 - "http 0.2.12", 3905 - "hyper 0.14.30", 3906 - "rustls 0.21.12", 3907 - "tokio", 3908 - "tokio-rustls 0.24.1", 3909 - ] 3910 - 3911 - [[package]] 3912 - name = "hyper-tls" 3913 - version = "0.5.0" 3914 - source = "registry+https://github.com/rust-lang/crates.io-index" 3915 - checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 3916 - dependencies = [ 3917 - "bytes", 3918 - "hyper 0.14.30", 3919 - "native-tls", 3920 - "tokio", 3921 - "tokio-native-tls", 3922 - ] 3923 - 3924 - [[package]] 3925 - name = "hyper-util" 3926 - version = "0.1.6" 3927 - source = "registry+https://github.com/rust-lang/crates.io-index" 3928 - checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956" 3929 - dependencies = [ 3930 - "bytes", 3931 - "futures-util", 3932 - "http 1.1.0", 3933 - "http-body 1.0.1", 3934 - "hyper 1.4.1", 3935 - "pin-project-lite", 3936 - "tokio", 3937 - ] 3938 - 3939 - [[package]] 3940 - name = "iana-time-zone" 3941 - version = "0.1.60" 3942 - source = "registry+https://github.com/rust-lang/crates.io-index" 3943 - checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 3944 - dependencies = [ 3945 - "android_system_properties", 3946 - "core-foundation-sys", 3947 - "iana-time-zone-haiku", 3948 - "js-sys", 3949 - "wasm-bindgen", 3950 - "windows-core 0.52.0", 3951 - ] 3952 - 3953 - [[package]] 3954 - name = "iana-time-zone-haiku" 3955 - version = "0.1.2" 3956 - source = "registry+https://github.com/rust-lang/crates.io-index" 3957 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 3958 - dependencies = [ 3959 - "cc", 3960 - ] 3961 - 3962 - [[package]] 3963 - name = "ident_case" 3964 - version = "1.0.1" 3965 - source = "registry+https://github.com/rust-lang/crates.io-index" 3966 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 3967 - 3968 - [[package]] 3969 - name = "idna" 3970 - version = "0.4.0" 3971 - source = "registry+https://github.com/rust-lang/crates.io-index" 3972 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 3973 - dependencies = [ 3974 - "unicode-bidi", 3975 - "unicode-normalization", 3976 - ] 3977 - 3978 - [[package]] 3979 - name = "idna" 3980 - version = "0.5.0" 3981 - source = "registry+https://github.com/rust-lang/crates.io-index" 3982 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 3983 - dependencies = [ 3984 - "unicode-bidi", 3985 - "unicode-normalization", 3986 - ] 3987 - 3988 - [[package]] 3989 - name = "if-addrs" 3990 - version = "0.10.2" 3991 - source = "registry+https://github.com/rust-lang/crates.io-index" 3992 - checksum = "cabb0019d51a643781ff15c9c8a3e5dedc365c47211270f4e8f82812fedd8f0a" 3993 - dependencies = [ 3994 - "libc", 3995 - "windows-sys 0.48.0", 3996 - ] 3997 - 3998 - [[package]] 3999 - name = "if-watch" 4000 - version = "3.2.0" 4001 - source = "registry+https://github.com/rust-lang/crates.io-index" 4002 - checksum = "d6b0422c86d7ce0e97169cc42e04ae643caf278874a7a3c87b8150a220dc7e1e" 4003 - dependencies = [ 4004 - "async-io", 4005 - "core-foundation", 4006 - "fnv", 4007 - "futures", 4008 - "if-addrs", 4009 - "ipnet", 4010 - "log", 4011 - "rtnetlink", 4012 - "system-configuration", 4013 - "tokio", 4014 - "windows", 4015 - ] 4016 - 4017 - [[package]] 4018 - name = "igd-next" 4019 - version = "0.14.3" 4020 - source = "registry+https://github.com/rust-lang/crates.io-index" 4021 - checksum = "064d90fec10d541084e7b39ead8875a5a80d9114a2b18791565253bae25f49e4" 4022 - dependencies = [ 4023 - "async-trait", 4024 - "attohttpc", 4025 - "bytes", 4026 - "futures", 4027 - "http 0.2.12", 4028 - "hyper 0.14.30", 4029 - "log", 4030 - "rand", 4031 - "tokio", 4032 - "url", 4033 - "xmltree", 4034 - ] 4035 - 4036 - [[package]] 4037 - name = "impl-codec" 4038 - version = "0.5.1" 4039 - source = "registry+https://github.com/rust-lang/crates.io-index" 4040 - checksum = "161ebdfec3c8e3b52bf61c4f3550a1eea4f9579d10dc1b936f3171ebdcd6c443" 4041 - dependencies = [ 4042 - "parity-scale-codec 2.3.1", 4043 - ] 4044 - 4045 - [[package]] 4046 - name = "impl-codec" 4047 - version = "0.6.0" 4048 - source = "registry+https://github.com/rust-lang/crates.io-index" 4049 - checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f" 4050 - dependencies = [ 4051 - "parity-scale-codec 3.6.12", 4052 - ] 4053 - 4054 - [[package]] 4055 - name = "impl-rlp" 4056 - version = "0.3.0" 4057 - source = "registry+https://github.com/rust-lang/crates.io-index" 4058 - checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808" 4059 - dependencies = [ 4060 - "rlp", 4061 - ] 4062 - 4063 - [[package]] 4064 - name = "impl-serde" 4065 - version = "0.3.2" 4066 - source = "registry+https://github.com/rust-lang/crates.io-index" 4067 - checksum = "4551f042f3438e64dbd6226b20527fc84a6e1fe65688b58746a2f53623f25f5c" 4068 - dependencies = [ 4069 - "serde", 4070 - ] 4071 - 4072 - [[package]] 4073 - name = "impl-serde" 4074 - version = "0.4.0" 4075 - source = "registry+https://github.com/rust-lang/crates.io-index" 4076 - checksum = "ebc88fc67028ae3db0c853baa36269d398d5f45b6982f95549ff5def78c935cd" 4077 - dependencies = [ 4078 - "serde", 4079 - ] 4080 - 4081 - [[package]] 4082 - name = "impl-trait-for-tuples" 4083 - version = "0.2.2" 4084 - source = "registry+https://github.com/rust-lang/crates.io-index" 4085 - checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" 4086 - dependencies = [ 4087 - "proc-macro2", 4088 - "quote", 4089 - "syn 1.0.109", 4090 - ] 4091 - 4092 - [[package]] 4093 - name = "indenter" 4094 - version = "0.3.3" 4095 - source = "registry+https://github.com/rust-lang/crates.io-index" 4096 - checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" 4097 - 4098 - [[package]] 4099 - name = "indexmap" 4100 - version = "1.9.3" 4101 - source = "registry+https://github.com/rust-lang/crates.io-index" 4102 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 4103 - dependencies = [ 4104 - "autocfg", 4105 - "hashbrown 0.12.3", 4106 - ] 4107 - 4108 - [[package]] 4109 - name = "indexmap" 4110 - version = "2.2.6" 4111 - source = "registry+https://github.com/rust-lang/crates.io-index" 4112 - checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 4113 - dependencies = [ 4114 - "equivalent", 4115 - "hashbrown 0.14.5", 4116 - ] 4117 - 4118 - [[package]] 4119 - name = "inout" 4120 - version = "0.1.3" 4121 - source = "registry+https://github.com/rust-lang/crates.io-index" 4122 - checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 4123 - dependencies = [ 4124 - "generic-array", 4125 - ] 4126 - 4127 - [[package]] 4128 - name = "instant" 4129 - version = "0.1.13" 4130 - source = "registry+https://github.com/rust-lang/crates.io-index" 4131 - checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 4132 - dependencies = [ 4133 - "cfg-if", 4134 - "js-sys", 4135 - "wasm-bindgen", 4136 - "web-sys", 4137 - ] 4138 - 4139 - [[package]] 4140 - name = "int_to_bytes" 4141 - version = "0.2.0" 4142 - dependencies = [ 4143 - "bytes", 4144 - "hex", 4145 - "yaml-rust2", 4146 - ] 4147 - 4148 - [[package]] 4149 - name = "integer-sqrt" 4150 - version = "0.1.5" 4151 - source = "registry+https://github.com/rust-lang/crates.io-index" 4152 - checksum = "276ec31bcb4a9ee45f58bec6f9ec700ae4cf4f4f8f2fa7e06cb406bd5ffdd770" 4153 - dependencies = [ 4154 - "num-traits", 4155 - ] 4156 - 4157 - [[package]] 4158 - name = "io-lifetimes" 4159 - version = "1.0.11" 4160 - source = "registry+https://github.com/rust-lang/crates.io-index" 4161 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 4162 - dependencies = [ 4163 - "hermit-abi 0.3.9", 4164 - "libc", 4165 - "windows-sys 0.48.0", 4166 - ] 4167 - 4168 - [[package]] 4169 - name = "ipconfig" 4170 - version = "0.3.2" 4171 - source = "registry+https://github.com/rust-lang/crates.io-index" 4172 - checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 4173 - dependencies = [ 4174 - "socket2 0.5.7", 4175 - "widestring 1.1.0", 4176 - "windows-sys 0.48.0", 4177 - "winreg", 4178 - ] 4179 - 4180 - [[package]] 4181 - name = "ipnet" 4182 - version = "2.9.0" 4183 - source = "registry+https://github.com/rust-lang/crates.io-index" 4184 - checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 4185 - 4186 - [[package]] 4187 - name = "is-terminal" 4188 - version = "0.4.12" 4189 - source = "registry+https://github.com/rust-lang/crates.io-index" 4190 - checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 4191 - dependencies = [ 4192 - "hermit-abi 0.3.9", 4193 - "libc", 4194 - "windows-sys 0.52.0", 4195 - ] 4196 - 4197 - [[package]] 4198 - name = "is_terminal_polyfill" 4199 - version = "1.70.0" 4200 - source = "registry+https://github.com/rust-lang/crates.io-index" 4201 - checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 4202 - 4203 - [[package]] 4204 - name = "itertools" 4205 - version = "0.10.5" 4206 - source = "registry+https://github.com/rust-lang/crates.io-index" 4207 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 4208 - dependencies = [ 4209 - "either", 4210 - ] 4211 - 4212 - [[package]] 4213 - name = "itertools" 4214 - version = "0.12.1" 4215 - source = "registry+https://github.com/rust-lang/crates.io-index" 4216 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 4217 - dependencies = [ 4218 - "either", 4219 - ] 4220 - 4221 - [[package]] 4222 - name = "itoa" 4223 - version = "1.0.11" 4224 - source = "registry+https://github.com/rust-lang/crates.io-index" 4225 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 4226 - 4227 - [[package]] 4228 - name = "jemalloc-ctl" 4229 - version = "0.5.4" 4230 - source = "registry+https://github.com/rust-lang/crates.io-index" 4231 - checksum = "7cffc705424a344c054e135d12ee591402f4539245e8bbd64e6c9eaa9458b63c" 4232 - dependencies = [ 4233 - "jemalloc-sys", 4234 - "libc", 4235 - "paste", 4236 - ] 4237 - 4238 - [[package]] 4239 - name = "jemalloc-sys" 4240 - version = "0.5.4+5.3.0-patched" 4241 - source = "registry+https://github.com/rust-lang/crates.io-index" 4242 - checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2" 4243 - dependencies = [ 4244 - "cc", 4245 - "libc", 4246 - ] 4247 - 4248 - [[package]] 4249 - name = "jemallocator" 4250 - version = "0.5.4" 4251 - source = "registry+https://github.com/rust-lang/crates.io-index" 4252 - checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc" 4253 - dependencies = [ 4254 - "jemalloc-sys", 4255 - "libc", 4256 - ] 4257 - 4258 - [[package]] 4259 - name = "jobserver" 4260 - version = "0.1.32" 4261 - source = "registry+https://github.com/rust-lang/crates.io-index" 4262 - checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" 4263 - dependencies = [ 4264 - "libc", 4265 - ] 4266 - 4267 - [[package]] 4268 - name = "js-sys" 4269 - version = "0.3.69" 4270 - source = "registry+https://github.com/rust-lang/crates.io-index" 4271 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 4272 - dependencies = [ 4273 - "wasm-bindgen", 4274 - ] 4275 - 4276 - [[package]] 4277 - name = "jsonwebtoken" 4278 - version = "8.3.0" 4279 - source = "registry+https://github.com/rust-lang/crates.io-index" 4280 - checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" 4281 - dependencies = [ 4282 - "base64 0.21.7", 4283 - "pem 1.1.1", 4284 - "ring 0.16.20", 4285 - "serde", 4286 - "serde_json", 4287 - "simple_asn1", 4288 - ] 4289 - 4290 - [[package]] 4291 - name = "k256" 4292 - version = "0.11.6" 4293 - source = "registry+https://github.com/rust-lang/crates.io-index" 4294 - checksum = "72c1e0b51e7ec0a97369623508396067a486bd0cbed95a2659a4b863d28cfc8b" 4295 - dependencies = [ 4296 - "cfg-if", 4297 - "ecdsa 0.14.8", 4298 - "elliptic-curve 0.12.3", 4299 - "sha2 0.10.8", 4300 - "sha3 0.10.8", 4301 - ] 4302 - 4303 - [[package]] 4304 - name = "k256" 4305 - version = "0.13.3" 4306 - source = "registry+https://github.com/rust-lang/crates.io-index" 4307 - checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" 4308 - dependencies = [ 4309 - "cfg-if", 4310 - "ecdsa 0.16.9", 4311 - "elliptic-curve 0.13.8", 4312 - "once_cell", 4313 - "sha2 0.10.8", 4314 - "signature 2.2.0", 4315 - ] 4316 - 4317 - [[package]] 4318 - name = "keccak" 4319 - version = "0.1.5" 4320 - source = "registry+https://github.com/rust-lang/crates.io-index" 4321 - checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" 4322 - dependencies = [ 4323 - "cpufeatures", 4324 - ] 4325 - 4326 - [[package]] 4327 - name = "keccak-asm" 4328 - version = "0.1.1" 4329 - source = "registry+https://github.com/rust-lang/crates.io-index" 4330 - checksum = "47a3633291834c4fbebf8673acbc1b04ec9d151418ff9b8e26dcd79129928758" 4331 - dependencies = [ 4332 - "digest 0.10.7", 4333 - "sha3-asm", 4334 - ] 4335 - 4336 - [[package]] 4337 - name = "keccak-hash" 4338 - version = "0.10.0" 4339 - source = "registry+https://github.com/rust-lang/crates.io-index" 4340 - checksum = "4b286e6b663fb926e1eeb68528e69cb70ed46c6d65871a21b2215ae8154c6d3c" 4341 - dependencies = [ 4342 - "primitive-types 0.12.2", 4343 - "tiny-keccak", 4344 - ] 4345 - 4346 - [[package]] 4347 - name = "kzg" 4348 - version = "0.1.0" 4349 - dependencies = [ 4350 - "arbitrary", 4351 - "c-kzg", 4352 - "derivative", 4353 - "ethereum_hashing", 4354 - "ethereum_serde_utils", 4355 - "ethereum_ssz", 4356 - "ethereum_ssz_derive", 4357 - "hex", 4358 - "serde", 4359 - "tree_hash", 4360 - ] 4361 - 4362 - [[package]] 4363 - name = "lazy_static" 4364 - version = "1.5.0" 4365 - source = "registry+https://github.com/rust-lang/crates.io-index" 4366 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 4367 - dependencies = [ 4368 - "spin 0.9.8", 4369 - ] 4370 - 4371 - [[package]] 4372 - name = "lazycell" 4373 - version = "1.3.0" 4374 - source = "registry+https://github.com/rust-lang/crates.io-index" 4375 - checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 4376 - 4377 - [[package]] 4378 - name = "lcli" 4379 - version = "5.3.0" 4380 - dependencies = [ 4381 - "account_utils", 4382 - "beacon_chain", 4383 - "bls", 4384 - "clap", 4385 - "clap_utils", 4386 - "deposit_contract", 4387 - "env_logger 0.9.3", 4388 - "environment", 4389 - "eth2", 4390 - "eth2_network_config", 4391 - "eth2_wallet", 4392 - "ethereum_hashing", 4393 - "ethereum_ssz", 4394 - "execution_layer", 4395 - "hex", 4396 - "lighthouse_network", 4397 - "lighthouse_version", 4398 - "log", 4399 - "malloc_utils", 4400 - "rayon", 4401 - "serde", 4402 - "serde_json", 4403 - "serde_yaml", 4404 - "snap", 4405 - "state_processing", 4406 - "store", 4407 - "tree_hash", 4408 - "types", 4409 - "validator_dir", 4410 - ] 4411 - 4412 - [[package]] 4413 - name = "leveldb" 4414 - version = "0.8.6" 4415 - source = "registry+https://github.com/rust-lang/crates.io-index" 4416 - checksum = "32651baaaa5596b3a6e0bee625e73fd0334c167db0ea5ac68750ef9a629a2d6a" 4417 - dependencies = [ 4418 - "db-key", 4419 - "leveldb-sys", 4420 - "libc", 4421 - ] 4422 - 4423 - [[package]] 4424 - name = "leveldb-sys" 4425 - version = "2.0.9" 4426 - source = "registry+https://github.com/rust-lang/crates.io-index" 4427 - checksum = "9dd94a4d0242a437e5e41a27c782b69a624469ca1c4d1e5cb3c337f74a8031d4" 4428 - dependencies = [ 4429 - "cmake", 4430 - "ffi-opaque", 4431 - "libc", 4432 - "num_cpus", 4433 - ] 4434 - 4435 - [[package]] 4436 - name = "libc" 4437 - version = "0.2.155" 4438 - source = "registry+https://github.com/rust-lang/crates.io-index" 4439 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 4440 - 4441 - [[package]] 4442 - name = "libflate" 4443 - version = "2.1.0" 4444 - source = "registry+https://github.com/rust-lang/crates.io-index" 4445 - checksum = "45d9dfdc14ea4ef0900c1cddbc8dcd553fbaacd8a4a282cf4018ae9dd04fb21e" 4446 - dependencies = [ 4447 - "adler32", 4448 - "core2", 4449 - "crc32fast", 4450 - "dary_heap", 4451 - "libflate_lz77", 4452 - ] 4453 - 4454 - [[package]] 4455 - name = "libflate_lz77" 4456 - version = "2.1.0" 4457 - source = "registry+https://github.com/rust-lang/crates.io-index" 4458 - checksum = "e6e0d73b369f386f1c44abd9c570d5318f55ccde816ff4b562fa452e5182863d" 4459 - dependencies = [ 4460 - "core2", 4461 - "hashbrown 0.14.5", 4462 - "rle-decode-fast", 4463 - ] 4464 - 4465 - [[package]] 4466 - name = "libloading" 4467 - version = "0.8.5" 4468 - source = "registry+https://github.com/rust-lang/crates.io-index" 4469 - checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" 4470 - dependencies = [ 4471 - "cfg-if", 4472 - "windows-targets 0.52.6", 4473 - ] 4474 - 4475 - [[package]] 4476 - name = "libm" 4477 - version = "0.2.8" 4478 - source = "registry+https://github.com/rust-lang/crates.io-index" 4479 - checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 4480 - 4481 - [[package]] 4482 - name = "libmdbx" 4483 - version = "0.1.4" 4484 - source = "git+https://github.com/sigp/libmdbx-rs?rev=e6ff4b9377c1619bcf0bfdf52bee5a980a432a1a#e6ff4b9377c1619bcf0bfdf52bee5a980a432a1a" 4485 - dependencies = [ 4486 - "bitflags 1.3.2", 4487 - "byteorder", 4488 - "derive_more", 4489 - "indexmap 1.9.3", 4490 - "libc", 4491 - "mdbx-sys", 4492 - "parking_lot 0.12.3", 4493 - "thiserror", 4494 - ] 4495 - 4496 - [[package]] 4497 - name = "libp2p" 4498 - version = "0.53.2" 4499 - source = "registry+https://github.com/rust-lang/crates.io-index" 4500 - checksum = "681fb3f183edfbedd7a57d32ebe5dcdc0b9f94061185acf3c30249349cc6fc99" 4501 - dependencies = [ 4502 - "bytes", 4503 - "either", 4504 - "futures", 4505 - "futures-timer", 4506 - "getrandom", 4507 - "instant", 4508 - "libp2p-allow-block-list", 4509 - "libp2p-connection-limits", 4510 - "libp2p-core", 4511 - "libp2p-dns", 4512 - "libp2p-identify", 4513 - "libp2p-identity", 4514 - "libp2p-mdns", 4515 - "libp2p-metrics", 4516 - "libp2p-noise", 4517 - "libp2p-plaintext", 4518 - "libp2p-quic", 4519 - "libp2p-swarm", 4520 - "libp2p-tcp", 4521 - "libp2p-upnp", 4522 - "libp2p-yamux", 4523 - "multiaddr", 4524 - "pin-project", 4525 - "rw-stream-sink", 4526 - "thiserror", 4527 - ] 4528 - 4529 - [[package]] 4530 - name = "libp2p-allow-block-list" 4531 - version = "0.3.0" 4532 - source = "registry+https://github.com/rust-lang/crates.io-index" 4533 - checksum = "107b238b794cb83ab53b74ad5dcf7cca3200899b72fe662840cfb52f5b0a32e6" 4534 - dependencies = [ 4535 - "libp2p-core", 4536 - "libp2p-identity", 4537 - "libp2p-swarm", 4538 - "void", 4539 - ] 4540 - 4541 - [[package]] 4542 - name = "libp2p-connection-limits" 4543 - version = "0.3.1" 4544 - source = "registry+https://github.com/rust-lang/crates.io-index" 4545 - checksum = "c7cd50a78ccfada14de94cbacd3ce4b0138157f376870f13d3a8422cd075b4fd" 4546 - dependencies = [ 4547 - "libp2p-core", 4548 - "libp2p-identity", 4549 - "libp2p-swarm", 4550 - "void", 4551 - ] 4552 - 4553 - [[package]] 4554 - name = "libp2p-core" 4555 - version = "0.41.3" 4556 - source = "registry+https://github.com/rust-lang/crates.io-index" 4557 - checksum = "a5a8920cbd8540059a01950c1e5c96ea8d89eb50c51cd366fc18bdf540a6e48f" 4558 - dependencies = [ 4559 - "either", 4560 - "fnv", 4561 - "futures", 4562 - "futures-timer", 4563 - "libp2p-identity", 4564 - "multiaddr", 4565 - "multihash", 4566 - "multistream-select", 4567 - "once_cell", 4568 - "parking_lot 0.12.3", 4569 - "pin-project", 4570 - "quick-protobuf", 4571 - "rand", 4572 - "rw-stream-sink", 4573 - "smallvec", 4574 - "thiserror", 4575 - "tracing", 4576 - "unsigned-varint 0.8.0", 4577 - "void", 4578 - "web-time", 4579 - ] 4580 - 4581 - [[package]] 4582 - name = "libp2p-dns" 4583 - version = "0.41.1" 4584 - source = "registry+https://github.com/rust-lang/crates.io-index" 4585 - checksum = "d17cbcf7160ff35c3e8e560de4a068fe9d6cb777ea72840e48eb76ff9576c4b6" 4586 - dependencies = [ 4587 - "async-trait", 4588 - "futures", 4589 - "hickory-resolver", 4590 - "libp2p-core", 4591 - "libp2p-identity", 4592 - "parking_lot 0.12.3", 4593 - "smallvec", 4594 - "tracing", 4595 - ] 4596 - 4597 - [[package]] 4598 - name = "libp2p-identify" 4599 - version = "0.44.2" 4600 - source = "registry+https://github.com/rust-lang/crates.io-index" 4601 - checksum = "b5d635ebea5ca0c3c3e77d414ae9b67eccf2a822be06091b9c1a0d13029a1e2f" 4602 - dependencies = [ 4603 - "asynchronous-codec 0.7.0", 4604 - "either", 4605 - "futures", 4606 - "futures-bounded", 4607 - "futures-timer", 4608 - "libp2p-core", 4609 - "libp2p-identity", 4610 - "libp2p-swarm", 4611 - "lru", 4612 - "quick-protobuf", 4613 - "quick-protobuf-codec 0.3.1", 4614 - "smallvec", 4615 - "thiserror", 4616 - "tracing", 4617 - "void", 4618 - ] 4619 - 4620 - [[package]] 4621 - name = "libp2p-identity" 4622 - version = "0.2.9" 4623 - source = "registry+https://github.com/rust-lang/crates.io-index" 4624 - checksum = "55cca1eb2bc1fd29f099f3daaab7effd01e1a54b7c577d0ed082521034d912e8" 4625 - dependencies = [ 4626 - "asn1_der", 4627 - "bs58 0.5.1", 4628 - "ed25519-dalek", 4629 - "hkdf", 4630 - "libsecp256k1", 4631 - "multihash", 4632 - "p256", 4633 - "quick-protobuf", 4634 - "rand", 4635 - "sec1 0.7.3", 4636 - "sha2 0.10.8", 4637 - "thiserror", 4638 - "tracing", 4639 - "void", 4640 - "zeroize", 4641 - ] 4642 - 4643 - [[package]] 4644 - name = "libp2p-mdns" 4645 - version = "0.45.1" 4646 - source = "registry+https://github.com/rust-lang/crates.io-index" 4647 - checksum = "49007d9a339b3e1d7eeebc4d67c05dbf23d300b7d091193ec2d3f26802d7faf2" 4648 - dependencies = [ 4649 - "data-encoding", 4650 - "futures", 4651 - "hickory-proto", 4652 - "if-watch", 4653 - "libp2p-core", 4654 - "libp2p-identity", 4655 - "libp2p-swarm", 4656 - "rand", 4657 - "smallvec", 4658 - "socket2 0.5.7", 4659 - "tokio", 4660 - "tracing", 4661 - "void", 4662 - ] 4663 - 4664 - [[package]] 4665 - name = "libp2p-metrics" 4666 - version = "0.14.1" 4667 - source = "registry+https://github.com/rust-lang/crates.io-index" 4668 - checksum = "fdac91ae4f291046a3b2660c039a2830c931f84df2ee227989af92f7692d3357" 4669 - dependencies = [ 4670 - "futures", 4671 - "instant", 4672 - "libp2p-core", 4673 - "libp2p-identify", 4674 - "libp2p-identity", 4675 - "libp2p-swarm", 4676 - "pin-project", 4677 - "prometheus-client", 4678 - ] 4679 - 4680 - [[package]] 4681 - name = "libp2p-mplex" 4682 - version = "0.41.0" 4683 - source = "registry+https://github.com/rust-lang/crates.io-index" 4684 - checksum = "a5e895765e27e30217b25f7cb7ac4686dad1ff80bf2fdeffd1d898566900a924" 4685 - dependencies = [ 4686 - "asynchronous-codec 0.6.2", 4687 - "bytes", 4688 - "futures", 4689 - "libp2p-core", 4690 - "libp2p-identity", 4691 - "nohash-hasher", 4692 - "parking_lot 0.12.3", 4693 - "rand", 4694 - "smallvec", 4695 - "tracing", 4696 - "unsigned-varint 0.7.2", 4697 - ] 4698 - 4699 - [[package]] 4700 - name = "libp2p-noise" 4701 - version = "0.44.0" 4702 - source = "registry+https://github.com/rust-lang/crates.io-index" 4703 - checksum = "8ecd0545ce077f6ea5434bcb76e8d0fe942693b4380aaad0d34a358c2bd05793" 4704 - dependencies = [ 4705 - "asynchronous-codec 0.7.0", 4706 - "bytes", 4707 - "curve25519-dalek", 4708 - "futures", 4709 - "libp2p-core", 4710 - "libp2p-identity", 4711 - "multiaddr", 4712 - "multihash", 4713 - "once_cell", 4714 - "quick-protobuf", 4715 - "rand", 4716 - "sha2 0.10.8", 4717 - "snow", 4718 - "static_assertions", 4719 - "thiserror", 4720 - "tracing", 4721 - "x25519-dalek", 4722 - "zeroize", 4723 - ] 4724 - 4725 - [[package]] 4726 - name = "libp2p-plaintext" 4727 - version = "0.41.0" 4728 - source = "registry+https://github.com/rust-lang/crates.io-index" 4729 - checksum = "67330af40b67217e746d42551913cfb7ad04c74fa300fb329660a56318590b3f" 4730 - dependencies = [ 4731 - "asynchronous-codec 0.6.2", 4732 - "bytes", 4733 - "futures", 4734 - "libp2p-core", 4735 - "libp2p-identity", 4736 - "quick-protobuf", 4737 - "quick-protobuf-codec 0.2.0", 4738 - "tracing", 4739 - ] 4740 - 4741 - [[package]] 4742 - name = "libp2p-quic" 4743 - version = "0.10.3" 4744 - source = "registry+https://github.com/rust-lang/crates.io-index" 4745 - checksum = "c67296ad4e092e23f92aea3d2bdb6f24eab79c0929ed816dfb460ea2f4567d2b" 4746 - dependencies = [ 4747 - "bytes", 4748 - "futures", 4749 - "futures-timer", 4750 - "if-watch", 4751 - "libp2p-core", 4752 - "libp2p-identity", 4753 - "libp2p-tls", 4754 - "parking_lot 0.12.3", 4755 - "quinn", 4756 - "rand", 4757 - "ring 0.17.8", 4758 - "rustls 0.23.12", 4759 - "socket2 0.5.7", 4760 - "thiserror", 4761 - "tokio", 4762 - "tracing", 4763 - ] 4764 - 4765 - [[package]] 4766 - name = "libp2p-swarm" 4767 - version = "0.44.2" 4768 - source = "registry+https://github.com/rust-lang/crates.io-index" 4769 - checksum = "80cae6cb75f89dbca53862f9ebe0b9f463aa7b302762fcfaafb9e51dcc9b0f7e" 4770 - dependencies = [ 4771 - "either", 4772 - "fnv", 4773 - "futures", 4774 - "futures-timer", 4775 - "instant", 4776 - "libp2p-core", 4777 - "libp2p-identity", 4778 - "libp2p-swarm-derive", 4779 - "lru", 4780 - "multistream-select", 4781 - "once_cell", 4782 - "rand", 4783 - "smallvec", 4784 - "tokio", 4785 - "tracing", 4786 - "void", 4787 - ] 4788 - 4789 - [[package]] 4790 - name = "libp2p-swarm-derive" 4791 - version = "0.34.2" 4792 - source = "registry+https://github.com/rust-lang/crates.io-index" 4793 - checksum = "5daceb9dd908417b6dfcfe8e94098bc4aac54500c282e78120b885dadc09b999" 4794 - dependencies = [ 4795 - "heck 0.5.0", 4796 - "proc-macro2", 4797 - "quote", 4798 - "syn 2.0.72", 4799 - ] 4800 - 4801 - [[package]] 4802 - name = "libp2p-tcp" 4803 - version = "0.41.0" 4804 - source = "registry+https://github.com/rust-lang/crates.io-index" 4805 - checksum = "8b2460fc2748919adff99ecbc1aab296e4579e41f374fb164149bd2c9e529d4c" 4806 - dependencies = [ 4807 - "futures", 4808 - "futures-timer", 4809 - "if-watch", 4810 - "libc", 4811 - "libp2p-core", 4812 - "libp2p-identity", 4813 - "socket2 0.5.7", 4814 - "tokio", 4815 - "tracing", 4816 - ] 4817 - 4818 - [[package]] 4819 - name = "libp2p-tls" 4820 - version = "0.4.1" 4821 - source = "registry+https://github.com/rust-lang/crates.io-index" 4822 - checksum = "72b7b831e55ce2aa6c354e6861a85fdd4dd0a2b97d5e276fabac0e4810a71776" 4823 - dependencies = [ 4824 - "futures", 4825 - "futures-rustls", 4826 - "libp2p-core", 4827 - "libp2p-identity", 4828 - "rcgen", 4829 - "ring 0.17.8", 4830 - "rustls 0.23.12", 4831 - "rustls-webpki 0.101.7", 4832 - "thiserror", 4833 - "x509-parser", 4834 - "yasna", 4835 - ] 4836 - 4837 - [[package]] 4838 - name = "libp2p-upnp" 4839 - version = "0.2.2" 4840 - source = "registry+https://github.com/rust-lang/crates.io-index" 4841 - checksum = "cccf04b0e3ff3de52d07d5fd6c3b061d0e7f908ffc683c32d9638caedce86fc8" 4842 - dependencies = [ 4843 - "futures", 4844 - "futures-timer", 4845 - "igd-next", 4846 - "libp2p-core", 4847 - "libp2p-swarm", 4848 - "tokio", 4849 - "tracing", 4850 - "void", 4851 - ] 4852 - 4853 - [[package]] 4854 - name = "libp2p-yamux" 4855 - version = "0.45.1" 4856 - source = "registry+https://github.com/rust-lang/crates.io-index" 4857 - checksum = "200cbe50349a44760927d50b431d77bed79b9c0a3959de1af8d24a63434b71e5" 4858 - dependencies = [ 4859 - "either", 4860 - "futures", 4861 - "libp2p-core", 4862 - "thiserror", 4863 - "tracing", 4864 - "yamux 0.12.1", 4865 - "yamux 0.13.3", 4866 - ] 4867 - 4868 - [[package]] 4869 - name = "libredox" 4870 - version = "0.1.3" 4871 - source = "registry+https://github.com/rust-lang/crates.io-index" 4872 - checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 4873 - dependencies = [ 4874 - "bitflags 2.6.0", 4875 - "libc", 4876 - ] 4877 - 4878 - [[package]] 4879 - name = "libsecp256k1" 4880 - version = "0.7.1" 4881 - source = "registry+https://github.com/rust-lang/crates.io-index" 4882 - checksum = "95b09eff1b35ed3b33b877ced3a691fc7a481919c7e29c53c906226fcf55e2a1" 4883 - dependencies = [ 4884 - "arrayref", 4885 - "base64 0.13.1", 4886 - "digest 0.9.0", 4887 - "hmac-drbg", 4888 - "libsecp256k1-core", 4889 - "libsecp256k1-gen-ecmult", 4890 - "libsecp256k1-gen-genmult", 4891 - "rand", 4892 - "serde", 4893 - "sha2 0.9.9", 4894 - "typenum", 4895 - ] 4896 - 4897 - [[package]] 4898 - name = "libsecp256k1-core" 4899 - version = "0.3.0" 4900 - source = "registry+https://github.com/rust-lang/crates.io-index" 4901 - checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451" 4902 - dependencies = [ 4903 - "crunchy", 4904 - "digest 0.9.0", 4905 - "subtle", 4906 - ] 4907 - 4908 - [[package]] 4909 - name = "libsecp256k1-gen-ecmult" 4910 - version = "0.3.0" 4911 - source = "registry+https://github.com/rust-lang/crates.io-index" 4912 - checksum = "3038c808c55c87e8a172643a7d87187fc6c4174468159cb3090659d55bcb4809" 4913 - dependencies = [ 4914 - "libsecp256k1-core", 4915 - ] 4916 - 4917 - [[package]] 4918 - name = "libsecp256k1-gen-genmult" 4919 - version = "0.3.0" 4920 - source = "registry+https://github.com/rust-lang/crates.io-index" 4921 - checksum = "3db8d6ba2cec9eacc40e6e8ccc98931840301f1006e95647ceb2dd5c3aa06f7c" 4922 - dependencies = [ 4923 - "libsecp256k1-core", 4924 - ] 4925 - 4926 - [[package]] 4927 - name = "libsqlite3-sys" 4928 - version = "0.25.2" 4929 - source = "registry+https://github.com/rust-lang/crates.io-index" 4930 - checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" 4931 - dependencies = [ 4932 - "cc", 4933 - "pkg-config", 4934 - "vcpkg", 4935 - ] 4936 - 4937 - [[package]] 4938 - name = "libz-sys" 4939 - version = "1.1.18" 4940 - source = "registry+https://github.com/rust-lang/crates.io-index" 4941 - checksum = "c15da26e5af7e25c90b37a2d75cdbf940cf4a55316de9d84c679c9b8bfabf82e" 4942 - dependencies = [ 4943 - "cc", 4944 - "pkg-config", 4945 - "vcpkg", 4946 - ] 4947 - 4948 - [[package]] 4949 - name = "lighthouse" 4950 - version = "5.3.0" 4951 - dependencies = [ 4952 - "account_manager", 4953 - "account_utils", 4954 - "beacon_node", 4955 - "beacon_processor", 4956 - "bls", 4957 - "boot_node", 4958 - "clap", 4959 - "clap_utils", 4960 - "database_manager", 4961 - "directory", 4962 - "environment", 4963 - "eth1", 4964 - "eth2", 4965 - "eth2_network_config", 4966 - "ethereum_hashing", 4967 - "futures", 4968 - "lazy_static", 4969 - "lighthouse_metrics", 4970 - "lighthouse_network", 4971 - "lighthouse_version", 4972 - "logging", 4973 - "malloc_utils", 4974 - "sensitive_url", 4975 - "serde", 4976 - "serde_json", 4977 - "serde_yaml", 4978 - "slasher", 4979 - "slashing_protection", 4980 - "slog", 4981 - "task_executor", 4982 - "tempfile", 4983 - "types", 4984 - "unused_port", 4985 - "validator_client", 4986 - "validator_dir", 4987 - "validator_manager", 4988 - ] 4989 - 4990 - [[package]] 4991 - name = "lighthouse_metrics" 4992 - version = "0.2.0" 4993 - dependencies = [ 4994 - "prometheus", 4995 - ] 4996 - 4997 - [[package]] 4998 - name = "lighthouse_network" 4999 - version = "0.2.0" 5000 - dependencies = [ 5001 - "async-channel", 5002 - "bytes", 5003 - "delay_map", 5004 - "directory", 5005 - "dirs", 5006 - "discv5", 5007 - "either", 5008 - "error-chain", 5009 - "ethereum_ssz", 5010 - "ethereum_ssz_derive", 5011 - "fnv", 5012 - "futures", 5013 - "gossipsub", 5014 - "hex", 5015 - "itertools 0.10.5", 5016 - "lazy_static", 5017 - "libp2p", 5018 - "libp2p-mplex", 5019 - "lighthouse_metrics", 5020 - "lighthouse_version", 5021 - "logging", 5022 - "lru", 5023 - "lru_cache", 5024 - "parking_lot 0.12.3", 5025 - "prometheus-client", 5026 - "quickcheck", 5027 - "quickcheck_macros", 5028 - "rand", 5029 - "regex", 5030 - "serde", 5031 - "sha2 0.9.9", 5032 - "slog", 5033 - "slog-async", 5034 - "slog-term", 5035 - "smallvec", 5036 - "snap", 5037 - "ssz_types", 5038 - "strum", 5039 - "superstruct", 5040 - "task_executor", 5041 - "tempfile", 5042 - "tiny-keccak", 5043 - "tokio", 5044 - "tokio-io-timeout", 5045 - "tokio-util", 5046 - "types", 5047 - "unsigned-varint 0.8.0", 5048 - "unused_port", 5049 - "void", 5050 - ] 5051 - 5052 - [[package]] 5053 - name = "lighthouse_version" 5054 - version = "0.1.0" 5055 - dependencies = [ 5056 - "git-version", 5057 - "regex", 5058 - "target_info", 5059 - ] 5060 - 5061 - [[package]] 5062 - name = "linked-hash-map" 5063 - version = "0.5.6" 5064 - source = "registry+https://github.com/rust-lang/crates.io-index" 5065 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 5066 - 5067 - [[package]] 5068 - name = "linux-raw-sys" 5069 - version = "0.1.4" 5070 - source = "registry+https://github.com/rust-lang/crates.io-index" 5071 - checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 5072 - 5073 - [[package]] 5074 - name = "linux-raw-sys" 5075 - version = "0.4.14" 5076 - source = "registry+https://github.com/rust-lang/crates.io-index" 5077 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 5078 - 5079 - [[package]] 5080 - name = "lmdb-rkv" 5081 - version = "0.14.0" 5082 - source = "git+https://github.com/sigp/lmdb-rs?rev=f33845c6469b94265319aac0ed5085597862c27e#f33845c6469b94265319aac0ed5085597862c27e" 5083 - dependencies = [ 5084 - "bitflags 1.3.2", 5085 - "byteorder", 5086 - "libc", 5087 - "lmdb-rkv-sys", 5088 - ] 5089 - 5090 - [[package]] 5091 - name = "lmdb-rkv-sys" 5092 - version = "0.11.2" 5093 - source = "git+https://github.com/sigp/lmdb-rs?rev=f33845c6469b94265319aac0ed5085597862c27e#f33845c6469b94265319aac0ed5085597862c27e" 5094 - dependencies = [ 5095 - "cc", 5096 - "libc", 5097 - "pkg-config", 5098 - ] 5099 - 5100 - [[package]] 5101 - name = "lock_api" 5102 - version = "0.4.12" 5103 - source = "registry+https://github.com/rust-lang/crates.io-index" 5104 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 5105 - dependencies = [ 5106 - "autocfg", 5107 - "scopeguard", 5108 - ] 5109 - 5110 - [[package]] 5111 - name = "lockfile" 5112 - version = "0.1.0" 5113 - dependencies = [ 5114 - "fs2", 5115 - "tempfile", 5116 - ] 5117 - 5118 - [[package]] 5119 - name = "log" 5120 - version = "0.4.22" 5121 - source = "registry+https://github.com/rust-lang/crates.io-index" 5122 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 5123 - 5124 - [[package]] 5125 - name = "logging" 5126 - version = "0.2.0" 5127 - dependencies = [ 5128 - "chrono", 5129 - "lazy_static", 5130 - "lighthouse_metrics", 5131 - "parking_lot 0.12.3", 5132 - "serde", 5133 - "serde_json", 5134 - "slog", 5135 - "slog-term", 5136 - "sloggers", 5137 - "take_mut", 5138 - "tokio", 5139 - "tracing", 5140 - "tracing-appender", 5141 - "tracing-core", 5142 - "tracing-log", 5143 - "tracing-subscriber", 5144 - ] 5145 - 5146 - [[package]] 5147 - name = "lru" 5148 - version = "0.12.3" 5149 - source = "registry+https://github.com/rust-lang/crates.io-index" 5150 - checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" 5151 - dependencies = [ 5152 - "hashbrown 0.14.5", 5153 - ] 5154 - 5155 - [[package]] 5156 - name = "lru-cache" 5157 - version = "0.1.2" 5158 - source = "registry+https://github.com/rust-lang/crates.io-index" 5159 - checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 5160 - dependencies = [ 5161 - "linked-hash-map", 5162 - ] 5163 - 5164 - [[package]] 5165 - name = "lru_cache" 5166 - version = "0.1.0" 5167 - dependencies = [ 5168 - "fnv", 5169 - "mock_instant", 5170 - ] 5171 - 5172 - [[package]] 5173 - name = "mach2" 5174 - version = "0.4.2" 5175 - source = "registry+https://github.com/rust-lang/crates.io-index" 5176 - checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709" 5177 - dependencies = [ 5178 - "libc", 5179 - ] 5180 - 5181 - [[package]] 5182 - name = "malloc_utils" 5183 - version = "0.1.0" 5184 - dependencies = [ 5185 - "jemalloc-ctl", 5186 - "jemallocator", 5187 - "lazy_static", 5188 - "libc", 5189 - "lighthouse_metrics", 5190 - "parking_lot 0.12.3", 5191 - ] 5192 - 5193 - [[package]] 5194 - name = "maplit" 5195 - version = "1.0.2" 5196 - source = "registry+https://github.com/rust-lang/crates.io-index" 5197 - checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 5198 - 5199 - [[package]] 5200 - name = "match_cfg" 5201 - version = "0.1.0" 5202 - source = "registry+https://github.com/rust-lang/crates.io-index" 5203 - checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 5204 - 5205 - [[package]] 5206 - name = "matchers" 5207 - version = "0.1.0" 5208 - source = "registry+https://github.com/rust-lang/crates.io-index" 5209 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 5210 - dependencies = [ 5211 - "regex-automata 0.1.10", 5212 - ] 5213 - 5214 - [[package]] 5215 - name = "matches" 5216 - version = "0.1.10" 5217 - source = "registry+https://github.com/rust-lang/crates.io-index" 5218 - checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 5219 - 5220 - [[package]] 5221 - name = "matchit" 5222 - version = "0.7.3" 5223 - source = "registry+https://github.com/rust-lang/crates.io-index" 5224 - checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" 5225 - 5226 - [[package]] 5227 - name = "md-5" 5228 - version = "0.10.6" 5229 - source = "registry+https://github.com/rust-lang/crates.io-index" 5230 - checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 5231 - dependencies = [ 5232 - "cfg-if", 5233 - "digest 0.10.7", 5234 - ] 5235 - 5236 - [[package]] 5237 - name = "mdbx-sys" 5238 - version = "0.11.6-4" 5239 - source = "git+https://github.com/sigp/libmdbx-rs?rev=e6ff4b9377c1619bcf0bfdf52bee5a980a432a1a#e6ff4b9377c1619bcf0bfdf52bee5a980a432a1a" 5240 - dependencies = [ 5241 - "bindgen", 5242 - "cc", 5243 - "cmake", 5244 - "libc", 5245 - ] 5246 - 5247 - [[package]] 5248 - name = "mediatype" 5249 - version = "0.19.18" 5250 - source = "registry+https://github.com/rust-lang/crates.io-index" 5251 - checksum = "8878cd8d1b3c8c8ae4b2ba0a36652b7cf192f618a599a7fbdfa25cffd4ea72dd" 5252 - 5253 - [[package]] 5254 - name = "memchr" 5255 - version = "2.7.4" 5256 - source = "registry+https://github.com/rust-lang/crates.io-index" 5257 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 5258 - 5259 - [[package]] 5260 - name = "memoffset" 5261 - version = "0.9.1" 5262 - source = "registry+https://github.com/rust-lang/crates.io-index" 5263 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 5264 - dependencies = [ 5265 - "autocfg", 5266 - ] 5267 - 5268 - [[package]] 5269 - name = "merkle_proof" 5270 - version = "0.2.0" 5271 - dependencies = [ 5272 - "ethereum-types 0.14.1", 5273 - "ethereum_hashing", 5274 - "lazy_static", 5275 - "quickcheck", 5276 - "quickcheck_macros", 5277 - "safe_arith", 5278 - ] 5279 - 5280 - [[package]] 5281 - name = "metastruct" 5282 - version = "0.1.2" 5283 - source = "registry+https://github.com/rust-lang/crates.io-index" 5284 - checksum = "f00a5ba4a0f3453c31c397b214e1675d95b697c33763aa58add57ea833424384" 5285 - dependencies = [ 5286 - "metastruct_macro", 5287 - ] 5288 - 5289 - [[package]] 5290 - name = "metastruct_macro" 5291 - version = "0.1.2" 5292 - source = "registry+https://github.com/rust-lang/crates.io-index" 5293 - checksum = "7c3a991d4536c933306e52f0e8ab303757185ec13a09d1f3e1cbde5a0d8410bf" 5294 - dependencies = [ 5295 - "darling 0.13.4", 5296 - "itertools 0.10.5", 5297 - "proc-macro2", 5298 - "quote", 5299 - "smallvec", 5300 - "syn 1.0.109", 5301 - ] 5302 - 5303 - [[package]] 5304 - name = "migrations_internals" 5305 - version = "2.2.0" 5306 - source = "registry+https://github.com/rust-lang/crates.io-index" 5307 - checksum = "fd01039851e82f8799046eabbb354056283fb265c8ec0996af940f4e85a380ff" 5308 - dependencies = [ 5309 - "serde", 5310 - "toml 0.8.15", 5311 - ] 5312 - 5313 - [[package]] 5314 - name = "migrations_macros" 5315 - version = "2.2.0" 5316 - source = "registry+https://github.com/rust-lang/crates.io-index" 5317 - checksum = "ffb161cc72176cb37aa47f1fc520d3ef02263d67d661f44f05d05a079e1237fd" 5318 - dependencies = [ 5319 - "migrations_internals", 5320 - "proc-macro2", 5321 - "quote", 5322 - ] 5323 - 5324 - [[package]] 5325 - name = "milhouse" 5326 - version = "0.1.0" 5327 - source = "registry+https://github.com/rust-lang/crates.io-index" 5328 - checksum = "3826d3602a3674b07e080ce1982350e454ec253d73f156bd927ac1b652293f4d" 5329 - dependencies = [ 5330 - "arbitrary", 5331 - "derivative", 5332 - "ethereum-types 0.14.1", 5333 - "ethereum_hashing", 5334 - "ethereum_ssz", 5335 - "ethereum_ssz_derive", 5336 - "itertools 0.10.5", 5337 - "parking_lot 0.12.3", 5338 - "rayon", 5339 - "serde", 5340 - "smallvec", 5341 - "tree_hash", 5342 - "triomphe", 5343 - "typenum", 5344 - "vec_map", 5345 - ] 5346 - 5347 - [[package]] 5348 - name = "mime" 5349 - version = "0.3.17" 5350 - source = "registry+https://github.com/rust-lang/crates.io-index" 5351 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 5352 - 5353 - [[package]] 5354 - name = "mime_guess" 5355 - version = "2.0.5" 5356 - source = "registry+https://github.com/rust-lang/crates.io-index" 5357 - checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 5358 - dependencies = [ 5359 - "mime", 5360 - "unicase", 5361 - ] 5362 - 5363 - [[package]] 5364 - name = "minimal-lexical" 5365 - version = "0.2.1" 5366 - source = "registry+https://github.com/rust-lang/crates.io-index" 5367 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 5368 - 5369 - [[package]] 5370 - name = "miniz_oxide" 5371 - version = "0.7.4" 5372 - source = "registry+https://github.com/rust-lang/crates.io-index" 5373 - checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 5374 - dependencies = [ 5375 - "adler", 5376 - ] 5377 - 5378 - [[package]] 5379 - name = "mio" 5380 - version = "1.0.1" 5381 - source = "registry+https://github.com/rust-lang/crates.io-index" 5382 - checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" 5383 - dependencies = [ 5384 - "hermit-abi 0.3.9", 5385 - "libc", 5386 - "wasi", 5387 - "windows-sys 0.52.0", 5388 - ] 5389 - 5390 - [[package]] 5391 - name = "mock_instant" 5392 - version = "0.3.2" 5393 - source = "registry+https://github.com/rust-lang/crates.io-index" 5394 - checksum = "9366861eb2a2c436c20b12c8dbec5f798cea6b47ad99216be0282942e2c81ea0" 5395 - 5396 - [[package]] 5397 - name = "monitoring_api" 5398 - version = "0.1.0" 5399 - dependencies = [ 5400 - "eth2", 5401 - "lazy_static", 5402 - "lighthouse_metrics", 5403 - "lighthouse_version", 5404 - "regex", 5405 - "reqwest", 5406 - "sensitive_url", 5407 - "serde", 5408 - "serde_json", 5409 - "slog", 5410 - "store", 5411 - "task_executor", 5412 - "tokio", 5413 - ] 5414 - 5415 - [[package]] 5416 - name = "more-asserts" 5417 - version = "0.3.1" 5418 - source = "registry+https://github.com/rust-lang/crates.io-index" 5419 - checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e" 5420 - 5421 - [[package]] 5422 - name = "multiaddr" 5423 - version = "0.18.1" 5424 - source = "registry+https://github.com/rust-lang/crates.io-index" 5425 - checksum = "8b852bc02a2da5feed68cd14fa50d0774b92790a5bdbfa932a813926c8472070" 5426 - dependencies = [ 5427 - "arrayref", 5428 - "byteorder", 5429 - "data-encoding", 5430 - "libp2p-identity", 5431 - "multibase", 5432 - "multihash", 5433 - "percent-encoding", 5434 - "serde", 5435 - "static_assertions", 5436 - "unsigned-varint 0.7.2", 5437 - "url", 5438 - ] 5439 - 5440 - [[package]] 5441 - name = "multibase" 5442 - version = "0.9.1" 5443 - source = "registry+https://github.com/rust-lang/crates.io-index" 5444 - checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" 5445 - dependencies = [ 5446 - "base-x", 5447 - "data-encoding", 5448 - "data-encoding-macro", 5449 - ] 5450 - 5451 - [[package]] 5452 - name = "multihash" 5453 - version = "0.19.1" 5454 - source = "registry+https://github.com/rust-lang/crates.io-index" 5455 - checksum = "076d548d76a0e2a0d4ab471d0b1c36c577786dfc4471242035d97a12a735c492" 5456 - dependencies = [ 5457 - "core2", 5458 - "unsigned-varint 0.7.2", 5459 - ] 5460 - 5461 - [[package]] 5462 - name = "multistream-select" 5463 - version = "0.13.0" 5464 - source = "registry+https://github.com/rust-lang/crates.io-index" 5465 - checksum = "ea0df8e5eec2298a62b326ee4f0d7fe1a6b90a09dfcf9df37b38f947a8c42f19" 5466 - dependencies = [ 5467 - "bytes", 5468 - "futures", 5469 - "log", 5470 - "pin-project", 5471 - "smallvec", 5472 - "unsigned-varint 0.7.2", 5473 - ] 5474 - 5475 - [[package]] 5476 - name = "native-tls" 5477 - version = "0.2.12" 5478 - source = "registry+https://github.com/rust-lang/crates.io-index" 5479 - checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" 5480 - dependencies = [ 5481 - "libc", 5482 - "log", 5483 - "openssl", 5484 - "openssl-probe", 5485 - "openssl-sys", 5486 - "schannel", 5487 - "security-framework", 5488 - "security-framework-sys", 5489 - "tempfile", 5490 - ] 5491 - 5492 - [[package]] 5493 - name = "netlink-packet-core" 5494 - version = "0.4.2" 5495 - source = "registry+https://github.com/rust-lang/crates.io-index" 5496 - checksum = "345b8ab5bd4e71a2986663e88c56856699d060e78e152e6e9d7966fcd5491297" 5497 - dependencies = [ 5498 - "anyhow", 5499 - "byteorder", 5500 - "libc", 5501 - "netlink-packet-utils", 5502 - ] 5503 - 5504 - [[package]] 5505 - name = "netlink-packet-route" 5506 - version = "0.12.0" 5507 - source = "registry+https://github.com/rust-lang/crates.io-index" 5508 - checksum = "d9ea4302b9759a7a88242299225ea3688e63c85ea136371bb6cf94fd674efaab" 5509 - dependencies = [ 5510 - "anyhow", 5511 - "bitflags 1.3.2", 5512 - "byteorder", 5513 - "libc", 5514 - "netlink-packet-core", 5515 - "netlink-packet-utils", 5516 - ] 5517 - 5518 - [[package]] 5519 - name = "netlink-packet-utils" 5520 - version = "0.5.2" 5521 - source = "registry+https://github.com/rust-lang/crates.io-index" 5522 - checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34" 5523 - dependencies = [ 5524 - "anyhow", 5525 - "byteorder", 5526 - "paste", 5527 - "thiserror", 5528 - ] 5529 - 5530 - [[package]] 5531 - name = "netlink-proto" 5532 - version = "0.10.0" 5533 - source = "registry+https://github.com/rust-lang/crates.io-index" 5534 - checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6" 5535 - dependencies = [ 5536 - "bytes", 5537 - "futures", 5538 - "log", 5539 - "netlink-packet-core", 5540 - "netlink-sys", 5541 - "thiserror", 5542 - "tokio", 5543 - ] 5544 - 5545 - [[package]] 5546 - name = "netlink-sys" 5547 - version = "0.8.6" 5548 - source = "registry+https://github.com/rust-lang/crates.io-index" 5549 - checksum = "416060d346fbaf1f23f9512963e3e878f1a78e707cb699ba9215761754244307" 5550 - dependencies = [ 5551 - "bytes", 5552 - "futures", 5553 - "libc", 5554 - "log", 5555 - "tokio", 5556 - ] 5557 - 5558 - [[package]] 5559 - name = "network" 5560 - version = "0.2.0" 5561 - dependencies = [ 5562 - "anyhow", 5563 - "async-channel", 5564 - "beacon_chain", 5565 - "beacon_processor", 5566 - "delay_map", 5567 - "derivative", 5568 - "error-chain", 5569 - "eth2", 5570 - "ethereum_ssz", 5571 - "execution_layer", 5572 - "fnv", 5573 - "futures", 5574 - "genesis", 5575 - "gossipsub", 5576 - "hex", 5577 - "igd-next", 5578 - "itertools 0.10.5", 5579 - "lazy_static", 5580 - "lighthouse_metrics", 5581 - "lighthouse_network", 5582 - "logging", 5583 - "lru_cache", 5584 - "matches", 5585 - "operation_pool", 5586 - "parking_lot 0.12.3", 5587 - "rand", 5588 - "rlp", 5589 - "slog", 5590 - "slog-async", 5591 - "slog-term", 5592 - "sloggers", 5593 - "slot_clock", 5594 - "smallvec", 5595 - "ssz_types", 5596 - "store", 5597 - "strum", 5598 - "task_executor", 5599 - "tokio", 5600 - "tokio-stream", 5601 - "types", 5602 - ] 5603 - 5604 - [[package]] 5605 - name = "nix" 5606 - version = "0.24.3" 5607 - source = "registry+https://github.com/rust-lang/crates.io-index" 5608 - checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" 5609 - dependencies = [ 5610 - "bitflags 1.3.2", 5611 - "cfg-if", 5612 - "libc", 5613 - ] 5614 - 5615 - [[package]] 5616 - name = "nix" 5617 - version = "0.28.0" 5618 - source = "registry+https://github.com/rust-lang/crates.io-index" 5619 - checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 5620 - dependencies = [ 5621 - "bitflags 2.6.0", 5622 - "cfg-if", 5623 - "cfg_aliases", 5624 - "libc", 5625 - ] 5626 - 5627 - [[package]] 5628 - name = "node_test_rig" 5629 - version = "0.2.0" 5630 - dependencies = [ 5631 - "beacon_node", 5632 - "environment", 5633 - "eth2", 5634 - "execution_layer", 5635 - "sensitive_url", 5636 - "tempfile", 5637 - "tokio", 5638 - "types", 5639 - "validator_client", 5640 - "validator_dir", 5641 - ] 5642 - 5643 - [[package]] 5644 - name = "nohash-hasher" 5645 - version = "0.2.0" 5646 - source = "registry+https://github.com/rust-lang/crates.io-index" 5647 - checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" 5648 - 5649 - [[package]] 5650 - name = "nom" 5651 - version = "7.1.3" 5652 - source = "registry+https://github.com/rust-lang/crates.io-index" 5653 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 5654 - dependencies = [ 5655 - "memchr", 5656 - "minimal-lexical", 5657 - ] 5658 - 5659 - [[package]] 5660 - name = "ntapi" 5661 - version = "0.4.1" 5662 - source = "registry+https://github.com/rust-lang/crates.io-index" 5663 - checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 5664 - dependencies = [ 5665 - "winapi", 5666 - ] 5667 - 5668 - [[package]] 5669 - name = "nu-ansi-term" 5670 - version = "0.46.0" 5671 - source = "registry+https://github.com/rust-lang/crates.io-index" 5672 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 5673 - dependencies = [ 5674 - "overload", 5675 - "winapi", 5676 - ] 5677 - 5678 - [[package]] 5679 - name = "num-bigint" 5680 - version = "0.4.6" 5681 - source = "registry+https://github.com/rust-lang/crates.io-index" 5682 - checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 5683 - dependencies = [ 5684 - "num-integer", 5685 - "num-traits", 5686 - ] 5687 - 5688 - [[package]] 5689 - name = "num-bigint-dig" 5690 - version = "0.8.4" 5691 - source = "registry+https://github.com/rust-lang/crates.io-index" 5692 - checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" 5693 - dependencies = [ 5694 - "byteorder", 5695 - "lazy_static", 5696 - "libm", 5697 - "num-integer", 5698 - "num-iter", 5699 - "num-traits", 5700 - "rand", 5701 - "serde", 5702 - "smallvec", 5703 - "zeroize", 5704 - ] 5705 - 5706 - [[package]] 5707 - name = "num-conv" 5708 - version = "0.1.0" 5709 - source = "registry+https://github.com/rust-lang/crates.io-index" 5710 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 5711 - 5712 - [[package]] 5713 - name = "num-integer" 5714 - version = "0.1.46" 5715 - source = "registry+https://github.com/rust-lang/crates.io-index" 5716 - checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 5717 - dependencies = [ 5718 - "num-traits", 5719 - ] 5720 - 5721 - [[package]] 5722 - name = "num-iter" 5723 - version = "0.1.45" 5724 - source = "registry+https://github.com/rust-lang/crates.io-index" 5725 - checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 5726 - dependencies = [ 5727 - "autocfg", 5728 - "num-integer", 5729 - "num-traits", 5730 - ] 5731 - 5732 - [[package]] 5733 - name = "num-traits" 5734 - version = "0.2.19" 5735 - source = "registry+https://github.com/rust-lang/crates.io-index" 5736 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 5737 - dependencies = [ 5738 - "autocfg", 5739 - "libm", 5740 - ] 5741 - 5742 - [[package]] 5743 - name = "num_cpus" 5744 - version = "1.16.0" 5745 - source = "registry+https://github.com/rust-lang/crates.io-index" 5746 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 5747 - dependencies = [ 5748 - "hermit-abi 0.3.9", 5749 - "libc", 5750 - ] 5751 - 5752 - [[package]] 5753 - name = "object" 5754 - version = "0.36.1" 5755 - source = "registry+https://github.com/rust-lang/crates.io-index" 5756 - checksum = "081b846d1d56ddfc18fdf1a922e4f6e07a11768ea1b92dec44e42b72712ccfce" 5757 - dependencies = [ 5758 - "memchr", 5759 - ] 5760 - 5761 - [[package]] 5762 - name = "oid-registry" 5763 - version = "0.7.0" 5764 - source = "registry+https://github.com/rust-lang/crates.io-index" 5765 - checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" 5766 - dependencies = [ 5767 - "asn1-rs", 5768 - ] 5769 - 5770 - [[package]] 5771 - name = "once_cell" 5772 - version = "1.19.0" 5773 - source = "registry+https://github.com/rust-lang/crates.io-index" 5774 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 5775 - 5776 - [[package]] 5777 - name = "oneshot_broadcast" 5778 - version = "0.1.0" 5779 - dependencies = [ 5780 - "parking_lot 0.12.3", 5781 - ] 5782 - 5783 - [[package]] 5784 - name = "oorandom" 5785 - version = "11.1.4" 5786 - source = "registry+https://github.com/rust-lang/crates.io-index" 5787 - checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" 5788 - 5789 - [[package]] 5790 - name = "opaque-debug" 5791 - version = "0.3.1" 5792 - source = "registry+https://github.com/rust-lang/crates.io-index" 5793 - checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 5794 - 5795 - [[package]] 5796 - name = "open-fastrlp" 5797 - version = "0.1.4" 5798 - source = "registry+https://github.com/rust-lang/crates.io-index" 5799 - checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" 5800 - dependencies = [ 5801 - "arrayvec", 5802 - "auto_impl", 5803 - "bytes", 5804 - "ethereum-types 0.14.1", 5805 - "open-fastrlp-derive", 5806 - ] 5807 - 5808 - [[package]] 5809 - name = "open-fastrlp-derive" 5810 - version = "0.1.1" 5811 - source = "registry+https://github.com/rust-lang/crates.io-index" 5812 - checksum = "003b2be5c6c53c1cfeb0a238b8a1c3915cd410feb684457a36c10038f764bb1c" 5813 - dependencies = [ 5814 - "bytes", 5815 - "proc-macro2", 5816 - "quote", 5817 - "syn 1.0.109", 5818 - ] 5819 - 5820 - [[package]] 5821 - name = "openssl" 5822 - version = "0.10.66" 5823 - source = "registry+https://github.com/rust-lang/crates.io-index" 5824 - checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" 5825 - dependencies = [ 5826 - "bitflags 2.6.0", 5827 - "cfg-if", 5828 - "foreign-types", 5829 - "libc", 5830 - "once_cell", 5831 - "openssl-macros", 5832 - "openssl-sys", 5833 - ] 5834 - 5835 - [[package]] 5836 - name = "openssl-macros" 5837 - version = "0.1.1" 5838 - source = "registry+https://github.com/rust-lang/crates.io-index" 5839 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 5840 - dependencies = [ 5841 - "proc-macro2", 5842 - "quote", 5843 - "syn 2.0.72", 5844 - ] 5845 - 5846 - [[package]] 5847 - name = "openssl-probe" 5848 - version = "0.1.5" 5849 - source = "registry+https://github.com/rust-lang/crates.io-index" 5850 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 5851 - 5852 - [[package]] 5853 - name = "openssl-src" 5854 - version = "300.3.1+3.3.1" 5855 - source = "registry+https://github.com/rust-lang/crates.io-index" 5856 - checksum = "7259953d42a81bf137fbbd73bd30a8e1914d6dce43c2b90ed575783a22608b91" 5857 - dependencies = [ 5858 - "cc", 5859 - ] 5860 - 5861 - [[package]] 5862 - name = "openssl-sys" 5863 - version = "0.9.103" 5864 - source = "registry+https://github.com/rust-lang/crates.io-index" 5865 - checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" 5866 - dependencies = [ 5867 - "cc", 5868 - "libc", 5869 - "openssl-src", 5870 - "pkg-config", 5871 - "vcpkg", 5872 - ] 5873 - 5874 - [[package]] 5875 - name = "operation_pool" 5876 - version = "0.2.0" 5877 - dependencies = [ 5878 - "beacon_chain", 5879 - "bitvec 1.0.1", 5880 - "derivative", 5881 - "ethereum_ssz", 5882 - "ethereum_ssz_derive", 5883 - "itertools 0.10.5", 5884 - "lazy_static", 5885 - "lighthouse_metrics", 5886 - "maplit", 5887 - "parking_lot 0.12.3", 5888 - "rand", 5889 - "rayon", 5890 - "serde", 5891 - "state_processing", 5892 - "store", 5893 - "tokio", 5894 - "types", 5895 - ] 5896 - 5897 - [[package]] 5898 - name = "overload" 5899 - version = "0.1.1" 5900 - source = "registry+https://github.com/rust-lang/crates.io-index" 5901 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 5902 - 5903 - [[package]] 5904 - name = "p256" 5905 - version = "0.13.2" 5906 - source = "registry+https://github.com/rust-lang/crates.io-index" 5907 - checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 5908 - dependencies = [ 5909 - "ecdsa 0.16.9", 5910 - "elliptic-curve 0.13.8", 5911 - "primeorder", 5912 - "sha2 0.10.8", 5913 - ] 5914 - 5915 - [[package]] 5916 - name = "parity-scale-codec" 5917 - version = "2.3.1" 5918 - source = "registry+https://github.com/rust-lang/crates.io-index" 5919 - checksum = "373b1a4c1338d9cd3d1fa53b3a11bdab5ab6bd80a20f7f7becd76953ae2be909" 5920 - dependencies = [ 5921 - "arrayvec", 5922 - "bitvec 0.20.4", 5923 - "byte-slice-cast", 5924 - "impl-trait-for-tuples", 5925 - "parity-scale-codec-derive 2.3.1", 5926 - "serde", 5927 - ] 5928 - 5929 - [[package]] 5930 - name = "parity-scale-codec" 5931 - version = "3.6.12" 5932 - source = "registry+https://github.com/rust-lang/crates.io-index" 5933 - checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" 5934 - dependencies = [ 5935 - "arrayvec", 5936 - "bitvec 1.0.1", 5937 - "byte-slice-cast", 5938 - "impl-trait-for-tuples", 5939 - "parity-scale-codec-derive 3.6.12", 5940 - "serde", 5941 - ] 5942 - 5943 - [[package]] 5944 - name = "parity-scale-codec-derive" 5945 - version = "2.3.1" 5946 - source = "registry+https://github.com/rust-lang/crates.io-index" 5947 - checksum = "1557010476e0595c9b568d16dcfb81b93cdeb157612726f5170d31aa707bed27" 5948 - dependencies = [ 5949 - "proc-macro-crate 1.3.1", 5950 - "proc-macro2", 5951 - "quote", 5952 - "syn 1.0.109", 5953 - ] 5954 - 5955 - [[package]] 5956 - name = "parity-scale-codec-derive" 5957 - version = "3.6.12" 5958 - source = "registry+https://github.com/rust-lang/crates.io-index" 5959 - checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" 5960 - dependencies = [ 5961 - "proc-macro-crate 3.1.0", 5962 - "proc-macro2", 5963 - "quote", 5964 - "syn 1.0.109", 5965 - ] 5966 - 5967 - [[package]] 5968 - name = "parking" 5969 - version = "2.2.0" 5970 - source = "registry+https://github.com/rust-lang/crates.io-index" 5971 - checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 5972 - 5973 - [[package]] 5974 - name = "parking_lot" 5975 - version = "0.11.2" 5976 - source = "registry+https://github.com/rust-lang/crates.io-index" 5977 - checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 5978 - dependencies = [ 5979 - "instant", 5980 - "lock_api", 5981 - "parking_lot_core 0.8.6", 5982 - ] 5983 - 5984 - [[package]] 5985 - name = "parking_lot" 5986 - version = "0.12.3" 5987 - source = "registry+https://github.com/rust-lang/crates.io-index" 5988 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 5989 - dependencies = [ 5990 - "lock_api", 5991 - "parking_lot_core 0.9.10", 5992 - ] 5993 - 5994 - [[package]] 5995 - name = "parking_lot_core" 5996 - version = "0.8.6" 5997 - source = "registry+https://github.com/rust-lang/crates.io-index" 5998 - checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 5999 - dependencies = [ 6000 - "cfg-if", 6001 - "instant", 6002 - "libc", 6003 - "redox_syscall 0.2.16", 6004 - "smallvec", 6005 - "winapi", 6006 - ] 6007 - 6008 - [[package]] 6009 - name = "parking_lot_core" 6010 - version = "0.9.10" 6011 - source = "registry+https://github.com/rust-lang/crates.io-index" 6012 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 6013 - dependencies = [ 6014 - "cfg-if", 6015 - "libc", 6016 - "redox_syscall 0.5.3", 6017 - "smallvec", 6018 - "windows-targets 0.52.6", 6019 - ] 6020 - 6021 - [[package]] 6022 - name = "password-hash" 6023 - version = "0.4.2" 6024 - source = "registry+https://github.com/rust-lang/crates.io-index" 6025 - checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 6026 - dependencies = [ 6027 - "base64ct", 6028 - "rand_core", 6029 - "subtle", 6030 - ] 6031 - 6032 - [[package]] 6033 - name = "paste" 6034 - version = "1.0.15" 6035 - source = "registry+https://github.com/rust-lang/crates.io-index" 6036 - checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 6037 - 6038 - [[package]] 6039 - name = "pbkdf2" 6040 - version = "0.8.0" 6041 - source = "registry+https://github.com/rust-lang/crates.io-index" 6042 - checksum = "d95f5254224e617595d2cc3cc73ff0a5eaf2637519e25f03388154e9378b6ffa" 6043 - dependencies = [ 6044 - "crypto-mac 0.11.0", 6045 - ] 6046 - 6047 - [[package]] 6048 - name = "pbkdf2" 6049 - version = "0.11.0" 6050 - source = "registry+https://github.com/rust-lang/crates.io-index" 6051 - checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 6052 - dependencies = [ 6053 - "digest 0.10.7", 6054 - "hmac 0.12.1", 6055 - "password-hash", 6056 - "sha2 0.10.8", 6057 - ] 6058 - 6059 - [[package]] 6060 - name = "pem" 6061 - version = "1.1.1" 6062 - source = "registry+https://github.com/rust-lang/crates.io-index" 6063 - checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" 6064 - dependencies = [ 6065 - "base64 0.13.1", 6066 - ] 6067 - 6068 - [[package]] 6069 - name = "pem" 6070 - version = "3.0.4" 6071 - source = "registry+https://github.com/rust-lang/crates.io-index" 6072 - checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" 6073 - dependencies = [ 6074 - "base64 0.22.1", 6075 - "serde", 6076 - ] 6077 - 6078 - [[package]] 6079 - name = "pem-rfc7468" 6080 - version = "0.7.0" 6081 - source = "registry+https://github.com/rust-lang/crates.io-index" 6082 - checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 6083 - dependencies = [ 6084 - "base64ct", 6085 - ] 6086 - 6087 - [[package]] 6088 - name = "percent-encoding" 6089 - version = "2.3.1" 6090 - source = "registry+https://github.com/rust-lang/crates.io-index" 6091 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 6092 - 6093 - [[package]] 6094 - name = "pest" 6095 - version = "2.7.11" 6096 - source = "registry+https://github.com/rust-lang/crates.io-index" 6097 - checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95" 6098 - dependencies = [ 6099 - "memchr", 6100 - "thiserror", 6101 - "ucd-trie", 6102 - ] 6103 - 6104 - [[package]] 6105 - name = "pharos" 6106 - version = "0.5.3" 6107 - source = "registry+https://github.com/rust-lang/crates.io-index" 6108 - checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414" 6109 - dependencies = [ 6110 - "futures", 6111 - "rustc_version 0.4.0", 6112 - ] 6113 - 6114 - [[package]] 6115 - name = "phf" 6116 - version = "0.11.2" 6117 - source = "registry+https://github.com/rust-lang/crates.io-index" 6118 - checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 6119 - dependencies = [ 6120 - "phf_shared", 6121 - ] 6122 - 6123 - [[package]] 6124 - name = "phf_shared" 6125 - version = "0.11.2" 6126 - source = "registry+https://github.com/rust-lang/crates.io-index" 6127 - checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 6128 - dependencies = [ 6129 - "siphasher", 6130 - ] 6131 - 6132 - [[package]] 6133 - name = "pin-project" 6134 - version = "1.1.5" 6135 - source = "registry+https://github.com/rust-lang/crates.io-index" 6136 - checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 6137 - dependencies = [ 6138 - "pin-project-internal", 6139 - ] 6140 - 6141 - [[package]] 6142 - name = "pin-project-internal" 6143 - version = "1.1.5" 6144 - source = "registry+https://github.com/rust-lang/crates.io-index" 6145 - checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 6146 - dependencies = [ 6147 - "proc-macro2", 6148 - "quote", 6149 - "syn 2.0.72", 6150 - ] 6151 - 6152 - [[package]] 6153 - name = "pin-project-lite" 6154 - version = "0.2.14" 6155 - source = "registry+https://github.com/rust-lang/crates.io-index" 6156 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 6157 - 6158 - [[package]] 6159 - name = "pin-utils" 6160 - version = "0.1.0" 6161 - source = "registry+https://github.com/rust-lang/crates.io-index" 6162 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 6163 - 6164 - [[package]] 6165 - name = "pkcs8" 6166 - version = "0.9.0" 6167 - source = "registry+https://github.com/rust-lang/crates.io-index" 6168 - checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" 6169 - dependencies = [ 6170 - "der 0.6.1", 6171 - "spki 0.6.0", 6172 - ] 6173 - 6174 - [[package]] 6175 - name = "pkcs8" 6176 - version = "0.10.2" 6177 - source = "registry+https://github.com/rust-lang/crates.io-index" 6178 - checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 6179 - dependencies = [ 6180 - "der 0.7.9", 6181 - "spki 0.7.3", 6182 - ] 6183 - 6184 - [[package]] 6185 - name = "pkg-config" 6186 - version = "0.3.30" 6187 - source = "registry+https://github.com/rust-lang/crates.io-index" 6188 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 6189 - 6190 - [[package]] 6191 - name = "platforms" 6192 - version = "2.0.0" 6193 - source = "registry+https://github.com/rust-lang/crates.io-index" 6194 - checksum = "e8d0eef3571242013a0d5dc84861c3ae4a652e56e12adf8bdc26ff5f8cb34c94" 6195 - 6196 - [[package]] 6197 - name = "plotters" 6198 - version = "0.3.6" 6199 - source = "registry+https://github.com/rust-lang/crates.io-index" 6200 - checksum = "a15b6eccb8484002195a3e44fe65a4ce8e93a625797a063735536fd59cb01cf3" 6201 - dependencies = [ 6202 - "num-traits", 6203 - "plotters-backend", 6204 - "plotters-svg", 6205 - "wasm-bindgen", 6206 - "web-sys", 6207 - ] 6208 - 6209 - [[package]] 6210 - name = "plotters-backend" 6211 - version = "0.3.6" 6212 - source = "registry+https://github.com/rust-lang/crates.io-index" 6213 - checksum = "414cec62c6634ae900ea1c56128dfe87cf63e7caece0852ec76aba307cebadb7" 6214 - 6215 - [[package]] 6216 - name = "plotters-svg" 6217 - version = "0.3.6" 6218 - source = "registry+https://github.com/rust-lang/crates.io-index" 6219 - checksum = "81b30686a7d9c3e010b84284bdd26a29f2138574f52f5eb6f794fc0ad924e705" 6220 - dependencies = [ 6221 - "plotters-backend", 6222 - ] 6223 - 6224 - [[package]] 6225 - name = "polling" 6226 - version = "3.7.2" 6227 - source = "registry+https://github.com/rust-lang/crates.io-index" 6228 - checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b" 6229 - dependencies = [ 6230 - "cfg-if", 6231 - "concurrent-queue", 6232 - "hermit-abi 0.4.0", 6233 - "pin-project-lite", 6234 - "rustix 0.38.34", 6235 - "tracing", 6236 - "windows-sys 0.52.0", 6237 - ] 6238 - 6239 - [[package]] 6240 - name = "poly1305" 6241 - version = "0.8.0" 6242 - source = "registry+https://github.com/rust-lang/crates.io-index" 6243 - checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" 6244 - dependencies = [ 6245 - "cpufeatures", 6246 - "opaque-debug", 6247 - "universal-hash 0.5.1", 6248 - ] 6249 - 6250 - [[package]] 6251 - name = "polyval" 6252 - version = "0.5.3" 6253 - source = "registry+https://github.com/rust-lang/crates.io-index" 6254 - checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1" 6255 - dependencies = [ 6256 - "cfg-if", 6257 - "cpufeatures", 6258 - "opaque-debug", 6259 - "universal-hash 0.4.0", 6260 - ] 6261 - 6262 - [[package]] 6263 - name = "polyval" 6264 - version = "0.6.2" 6265 - source = "registry+https://github.com/rust-lang/crates.io-index" 6266 - checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 6267 - dependencies = [ 6268 - "cfg-if", 6269 - "cpufeatures", 6270 - "opaque-debug", 6271 - "universal-hash 0.5.1", 6272 - ] 6273 - 6274 - [[package]] 6275 - name = "postgres-protocol" 6276 - version = "0.6.7" 6277 - source = "registry+https://github.com/rust-lang/crates.io-index" 6278 - checksum = "acda0ebdebc28befa84bee35e651e4c5f09073d668c7aed4cf7e23c3cda84b23" 6279 - dependencies = [ 6280 - "base64 0.22.1", 6281 - "byteorder", 6282 - "bytes", 6283 - "fallible-iterator", 6284 - "hmac 0.12.1", 6285 - "md-5", 6286 - "memchr", 6287 - "rand", 6288 - "sha2 0.10.8", 6289 - "stringprep", 6290 - ] 6291 - 6292 - [[package]] 6293 - name = "postgres-types" 6294 - version = "0.2.7" 6295 - source = "registry+https://github.com/rust-lang/crates.io-index" 6296 - checksum = "02048d9e032fb3cc3413bbf7b83a15d84a5d419778e2628751896d856498eee9" 6297 - dependencies = [ 6298 - "bytes", 6299 - "fallible-iterator", 6300 - "postgres-protocol", 6301 - ] 6302 - 6303 - [[package]] 6304 - name = "powerfmt" 6305 - version = "0.2.0" 6306 - source = "registry+https://github.com/rust-lang/crates.io-index" 6307 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 6308 - 6309 - [[package]] 6310 - name = "ppv-lite86" 6311 - version = "0.2.17" 6312 - source = "registry+https://github.com/rust-lang/crates.io-index" 6313 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 6314 - 6315 - [[package]] 6316 - name = "pq-sys" 6317 - version = "0.6.1" 6318 - source = "registry+https://github.com/rust-lang/crates.io-index" 6319 - checksum = "a24ff9e4cf6945c988f0db7005d87747bf72864965c3529d259ad155ac41d584" 6320 - dependencies = [ 6321 - "vcpkg", 6322 - ] 6323 - 6324 - [[package]] 6325 - name = "pretty_reqwest_error" 6326 - version = "0.1.0" 6327 - dependencies = [ 6328 - "reqwest", 6329 - "sensitive_url", 6330 - ] 6331 - 6332 - [[package]] 6333 - name = "primeorder" 6334 - version = "0.13.6" 6335 - source = "registry+https://github.com/rust-lang/crates.io-index" 6336 - checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 6337 - dependencies = [ 6338 - "elliptic-curve 0.13.8", 6339 - ] 6340 - 6341 - [[package]] 6342 - name = "primitive-types" 6343 - version = "0.10.1" 6344 - source = "registry+https://github.com/rust-lang/crates.io-index" 6345 - checksum = "05e4722c697a58a99d5d06a08c30821d7c082a4632198de1eaa5a6c22ef42373" 6346 - dependencies = [ 6347 - "fixed-hash 0.7.0", 6348 - "impl-codec 0.5.1", 6349 - "impl-rlp", 6350 - "impl-serde 0.3.2", 6351 - "uint", 6352 - ] 6353 - 6354 - [[package]] 6355 - name = "primitive-types" 6356 - version = "0.12.2" 6357 - source = "registry+https://github.com/rust-lang/crates.io-index" 6358 - checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" 6359 - dependencies = [ 6360 - "fixed-hash 0.8.0", 6361 - "impl-codec 0.6.0", 6362 - "impl-rlp", 6363 - "impl-serde 0.4.0", 6364 - "scale-info", 6365 - "uint", 6366 - ] 6367 - 6368 - [[package]] 6369 - name = "proc-macro-crate" 6370 - version = "1.3.1" 6371 - source = "registry+https://github.com/rust-lang/crates.io-index" 6372 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 6373 - dependencies = [ 6374 - "once_cell", 6375 - "toml_edit 0.19.15", 6376 - ] 6377 - 6378 - [[package]] 6379 - name = "proc-macro-crate" 6380 - version = "3.1.0" 6381 - source = "registry+https://github.com/rust-lang/crates.io-index" 6382 - checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 6383 - dependencies = [ 6384 - "toml_edit 0.21.1", 6385 - ] 6386 - 6387 - [[package]] 6388 - name = "proc-macro2" 6389 - version = "1.0.86" 6390 - source = "registry+https://github.com/rust-lang/crates.io-index" 6391 - checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 6392 - dependencies = [ 6393 - "unicode-ident", 6394 - ] 6395 - 6396 - [[package]] 6397 - name = "procfs" 6398 - version = "0.15.1" 6399 - source = "registry+https://github.com/rust-lang/crates.io-index" 6400 - checksum = "943ca7f9f29bab5844ecd8fdb3992c5969b6622bb9609b9502fef9b4310e3f1f" 6401 - dependencies = [ 6402 - "bitflags 1.3.2", 6403 - "byteorder", 6404 - "chrono", 6405 - "flate2", 6406 - "hex", 6407 - "lazy_static", 6408 - "rustix 0.36.17", 6409 - ] 6410 - 6411 - [[package]] 6412 - name = "prometheus" 6413 - version = "0.13.4" 6414 - source = "registry+https://github.com/rust-lang/crates.io-index" 6415 - checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" 6416 - dependencies = [ 6417 - "cfg-if", 6418 - "fnv", 6419 - "lazy_static", 6420 - "memchr", 6421 - "parking_lot 0.12.3", 6422 - "protobuf", 6423 - "thiserror", 6424 - ] 6425 - 6426 - [[package]] 6427 - name = "prometheus-client" 6428 - version = "0.22.3" 6429 - source = "registry+https://github.com/rust-lang/crates.io-index" 6430 - checksum = "504ee9ff529add891127c4827eb481bd69dc0ebc72e9a682e187db4caa60c3ca" 6431 - dependencies = [ 6432 - "dtoa", 6433 - "itoa", 6434 - "parking_lot 0.12.3", 6435 - "prometheus-client-derive-encode", 6436 - ] 6437 - 6438 - [[package]] 6439 - name = "prometheus-client-derive-encode" 6440 - version = "0.4.2" 6441 - source = "registry+https://github.com/rust-lang/crates.io-index" 6442 - checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" 6443 - dependencies = [ 6444 - "proc-macro2", 6445 - "quote", 6446 - "syn 2.0.72", 6447 - ] 6448 - 6449 - [[package]] 6450 - name = "proptest" 6451 - version = "1.5.0" 6452 - source = "registry+https://github.com/rust-lang/crates.io-index" 6453 - checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" 6454 - dependencies = [ 6455 - "bit-set", 6456 - "bit-vec", 6457 - "bitflags 2.6.0", 6458 - "lazy_static", 6459 - "num-traits", 6460 - "rand", 6461 - "rand_chacha", 6462 - "rand_xorshift", 6463 - "regex-syntax 0.8.4", 6464 - "rusty-fork", 6465 - "tempfile", 6466 - "unarray", 6467 - ] 6468 - 6469 - [[package]] 6470 - name = "proto_array" 6471 - version = "0.2.0" 6472 - dependencies = [ 6473 - "ethereum_ssz", 6474 - "ethereum_ssz_derive", 6475 - "safe_arith", 6476 - "serde", 6477 - "serde_yaml", 6478 - "superstruct", 6479 - "types", 6480 - ] 6481 - 6482 - [[package]] 6483 - name = "protobuf" 6484 - version = "2.28.0" 6485 - source = "registry+https://github.com/rust-lang/crates.io-index" 6486 - checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" 6487 - 6488 - [[package]] 6489 - name = "psutil" 6490 - version = "3.3.0" 6491 - source = "registry+https://github.com/rust-lang/crates.io-index" 6492 - checksum = "5e617cc9058daa5e1fe5a0d23ed745773a5ee354111dad1ec0235b0cc16b6730" 6493 - dependencies = [ 6494 - "cfg-if", 6495 - "darwin-libproc", 6496 - "derive_more", 6497 - "glob", 6498 - "mach2", 6499 - "nix 0.24.3", 6500 - "num_cpus", 6501 - "once_cell", 6502 - "platforms", 6503 - "thiserror", 6504 - "unescape", 6505 - ] 6506 - 6507 - [[package]] 6508 - name = "quick-error" 6509 - version = "1.2.3" 6510 - source = "registry+https://github.com/rust-lang/crates.io-index" 6511 - checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 6512 - 6513 - [[package]] 6514 - name = "quick-protobuf" 6515 - version = "0.8.1" 6516 - source = "git+https://github.com/sigp/quick-protobuf.git?rev=681f413312404ab6e51f0b46f39b0075c6f4ebfd#681f413312404ab6e51f0b46f39b0075c6f4ebfd" 6517 - dependencies = [ 6518 - "byteorder", 6519 - ] 6520 - 6521 - [[package]] 6522 - name = "quick-protobuf-codec" 6523 - version = "0.2.0" 6524 - source = "registry+https://github.com/rust-lang/crates.io-index" 6525 - checksum = "f8ededb1cd78531627244d51dd0c7139fbe736c7d57af0092a76f0ffb2f56e98" 6526 - dependencies = [ 6527 - "asynchronous-codec 0.6.2", 6528 - "bytes", 6529 - "quick-protobuf", 6530 - "thiserror", 6531 - "unsigned-varint 0.7.2", 6532 - ] 6533 - 6534 - [[package]] 6535 - name = "quick-protobuf-codec" 6536 - version = "0.3.1" 6537 - source = "registry+https://github.com/rust-lang/crates.io-index" 6538 - checksum = "15a0580ab32b169745d7a39db2ba969226ca16738931be152a3209b409de2474" 6539 - dependencies = [ 6540 - "asynchronous-codec 0.7.0", 6541 - "bytes", 6542 - "quick-protobuf", 6543 - "thiserror", 6544 - "unsigned-varint 0.8.0", 6545 - ] 6546 - 6547 - [[package]] 6548 - name = "quickcheck" 6549 - version = "1.0.3" 6550 - source = "registry+https://github.com/rust-lang/crates.io-index" 6551 - checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6" 6552 - dependencies = [ 6553 - "env_logger 0.8.4", 6554 - "log", 6555 - "rand", 6556 - ] 6557 - 6558 - [[package]] 6559 - name = "quickcheck_macros" 6560 - version = "1.0.0" 6561 - source = "registry+https://github.com/rust-lang/crates.io-index" 6562 - checksum = "b22a693222d716a9587786f37ac3f6b4faedb5b80c23914e7303ff5a1d8016e9" 6563 - dependencies = [ 6564 - "proc-macro2", 6565 - "quote", 6566 - "syn 1.0.109", 6567 - ] 6568 - 6569 - [[package]] 6570 - name = "quinn" 6571 - version = "0.11.2" 6572 - source = "registry+https://github.com/rust-lang/crates.io-index" 6573 - checksum = "e4ceeeeabace7857413798eb1ffa1e9c905a9946a57d81fb69b4b71c4d8eb3ad" 6574 - dependencies = [ 6575 - "bytes", 6576 - "futures-io", 6577 - "pin-project-lite", 6578 - "quinn-proto", 6579 - "quinn-udp", 6580 - "rustc-hash", 6581 - "rustls 0.23.12", 6582 - "thiserror", 6583 - "tokio", 6584 - "tracing", 6585 - ] 6586 - 6587 - [[package]] 6588 - name = "quinn-proto" 6589 - version = "0.11.3" 6590 - source = "registry+https://github.com/rust-lang/crates.io-index" 6591 - checksum = "ddf517c03a109db8100448a4be38d498df8a210a99fe0e1b9eaf39e78c640efe" 6592 - dependencies = [ 6593 - "bytes", 6594 - "rand", 6595 - "ring 0.17.8", 6596 - "rustc-hash", 6597 - "rustls 0.23.12", 6598 - "slab", 6599 - "thiserror", 6600 - "tinyvec", 6601 - "tracing", 6602 - ] 6603 - 6604 - [[package]] 6605 - name = "quinn-udp" 6606 - version = "0.5.4" 6607 - source = "registry+https://github.com/rust-lang/crates.io-index" 6608 - checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285" 6609 - dependencies = [ 6610 - "libc", 6611 - "once_cell", 6612 - "socket2 0.5.7", 6613 - "windows-sys 0.52.0", 6614 - ] 6615 - 6616 - [[package]] 6617 - name = "quote" 6618 - version = "1.0.36" 6619 - source = "registry+https://github.com/rust-lang/crates.io-index" 6620 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 6621 - dependencies = [ 6622 - "proc-macro2", 6623 - ] 6624 - 6625 - [[package]] 6626 - name = "r2d2" 6627 - version = "0.8.10" 6628 - source = "registry+https://github.com/rust-lang/crates.io-index" 6629 - checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93" 6630 - dependencies = [ 6631 - "log", 6632 - "parking_lot 0.12.3", 6633 - "scheduled-thread-pool", 6634 - ] 6635 - 6636 - [[package]] 6637 - name = "r2d2_sqlite" 6638 - version = "0.21.0" 6639 - source = "registry+https://github.com/rust-lang/crates.io-index" 6640 - checksum = "b4f5d0337e99cd5cacd91ffc326c6cc9d8078def459df560c4f9bf9ba4a51034" 6641 - dependencies = [ 6642 - "r2d2", 6643 - "rusqlite", 6644 - ] 6645 - 6646 - [[package]] 6647 - name = "radium" 6648 - version = "0.6.2" 6649 - source = "registry+https://github.com/rust-lang/crates.io-index" 6650 - checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb" 6651 - 6652 - [[package]] 6653 - name = "radium" 6654 - version = "0.7.0" 6655 - source = "registry+https://github.com/rust-lang/crates.io-index" 6656 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 6657 - 6658 - [[package]] 6659 - name = "rand" 6660 - version = "0.8.5" 6661 - source = "registry+https://github.com/rust-lang/crates.io-index" 6662 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 6663 - dependencies = [ 6664 - "libc", 6665 - "rand_chacha", 6666 - "rand_core", 6667 - ] 6668 - 6669 - [[package]] 6670 - name = "rand_chacha" 6671 - version = "0.3.1" 6672 - source = "registry+https://github.com/rust-lang/crates.io-index" 6673 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 6674 - dependencies = [ 6675 - "ppv-lite86", 6676 - "rand_core", 6677 - ] 6678 - 6679 - [[package]] 6680 - name = "rand_core" 6681 - version = "0.6.4" 6682 - source = "registry+https://github.com/rust-lang/crates.io-index" 6683 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 6684 - dependencies = [ 6685 - "getrandom", 6686 - ] 6687 - 6688 - [[package]] 6689 - name = "rand_xorshift" 6690 - version = "0.3.0" 6691 - source = "registry+https://github.com/rust-lang/crates.io-index" 6692 - checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" 6693 - dependencies = [ 6694 - "rand_core", 6695 - ] 6696 - 6697 - [[package]] 6698 - name = "rayon" 6699 - version = "1.10.0" 6700 - source = "registry+https://github.com/rust-lang/crates.io-index" 6701 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 6702 - dependencies = [ 6703 - "either", 6704 - "rayon-core", 6705 - ] 6706 - 6707 - [[package]] 6708 - name = "rayon-core" 6709 - version = "1.12.1" 6710 - source = "registry+https://github.com/rust-lang/crates.io-index" 6711 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 6712 - dependencies = [ 6713 - "crossbeam-deque", 6714 - "crossbeam-utils", 6715 - ] 6716 - 6717 - [[package]] 6718 - name = "rcgen" 6719 - version = "0.11.3" 6720 - source = "registry+https://github.com/rust-lang/crates.io-index" 6721 - checksum = "52c4f3084aa3bc7dfbba4eff4fab2a54db4324965d8872ab933565e6fbd83bc6" 6722 - dependencies = [ 6723 - "pem 3.0.4", 6724 - "ring 0.16.20", 6725 - "time", 6726 - "yasna", 6727 - ] 6728 - 6729 - [[package]] 6730 - name = "redb" 6731 - version = "2.1.1" 6732 - source = "registry+https://github.com/rust-lang/crates.io-index" 6733 - checksum = "a6dd20d3cdeb9c7d2366a0b16b93b35b75aec15309fbeb7ce477138c9f68c8c0" 6734 - dependencies = [ 6735 - "libc", 6736 - ] 6737 - 6738 - [[package]] 6739 - name = "redox_syscall" 6740 - version = "0.2.16" 6741 - source = "registry+https://github.com/rust-lang/crates.io-index" 6742 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 6743 - dependencies = [ 6744 - "bitflags 1.3.2", 6745 - ] 6746 - 6747 - [[package]] 6748 - name = "redox_syscall" 6749 - version = "0.4.1" 6750 - source = "registry+https://github.com/rust-lang/crates.io-index" 6751 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 6752 - dependencies = [ 6753 - "bitflags 1.3.2", 6754 - ] 6755 - 6756 - [[package]] 6757 - name = "redox_syscall" 6758 - version = "0.5.3" 6759 - source = "registry+https://github.com/rust-lang/crates.io-index" 6760 - checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" 6761 - dependencies = [ 6762 - "bitflags 2.6.0", 6763 - ] 6764 - 6765 - [[package]] 6766 - name = "redox_users" 6767 - version = "0.4.5" 6768 - source = "registry+https://github.com/rust-lang/crates.io-index" 6769 - checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 6770 - dependencies = [ 6771 - "getrandom", 6772 - "libredox", 6773 - "thiserror", 6774 - ] 6775 - 6776 - [[package]] 6777 - name = "regex" 6778 - version = "1.10.5" 6779 - source = "registry+https://github.com/rust-lang/crates.io-index" 6780 - checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 6781 - dependencies = [ 6782 - "aho-corasick", 6783 - "memchr", 6784 - "regex-automata 0.4.7", 6785 - "regex-syntax 0.8.4", 6786 - ] 6787 - 6788 - [[package]] 6789 - name = "regex-automata" 6790 - version = "0.1.10" 6791 - source = "registry+https://github.com/rust-lang/crates.io-index" 6792 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 6793 - dependencies = [ 6794 - "regex-syntax 0.6.29", 6795 - ] 6796 - 6797 - [[package]] 6798 - name = "regex-automata" 6799 - version = "0.4.7" 6800 - source = "registry+https://github.com/rust-lang/crates.io-index" 6801 - checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 6802 - dependencies = [ 6803 - "aho-corasick", 6804 - "memchr", 6805 - "regex-syntax 0.8.4", 6806 - ] 6807 - 6808 - [[package]] 6809 - name = "regex-syntax" 6810 - version = "0.6.29" 6811 - source = "registry+https://github.com/rust-lang/crates.io-index" 6812 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 6813 - 6814 - [[package]] 6815 - name = "regex-syntax" 6816 - version = "0.8.4" 6817 - source = "registry+https://github.com/rust-lang/crates.io-index" 6818 - checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 6819 - 6820 - [[package]] 6821 - name = "reqwest" 6822 - version = "0.11.27" 6823 - source = "registry+https://github.com/rust-lang/crates.io-index" 6824 - checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" 6825 - dependencies = [ 6826 - "base64 0.21.7", 6827 - "bytes", 6828 - "encoding_rs", 6829 - "futures-core", 6830 - "futures-util", 6831 - "h2", 6832 - "http 0.2.12", 6833 - "http-body 0.4.6", 6834 - "hyper 0.14.30", 6835 - "hyper-rustls", 6836 - "hyper-tls", 6837 - "ipnet", 6838 - "js-sys", 6839 - "log", 6840 - "mime", 6841 - "native-tls", 6842 - "once_cell", 6843 - "percent-encoding", 6844 - "pin-project-lite", 6845 - "rustls 0.21.12", 6846 - "rustls-pemfile 1.0.4", 6847 - "serde", 6848 - "serde_json", 6849 - "serde_urlencoded", 6850 - "sync_wrapper 0.1.2", 6851 - "system-configuration", 6852 - "tokio", 6853 - "tokio-native-tls", 6854 - "tokio-rustls 0.24.1", 6855 - "tokio-util", 6856 - "tower-service", 6857 - "url", 6858 - "wasm-bindgen", 6859 - "wasm-bindgen-futures", 6860 - "wasm-streams", 6861 - "web-sys", 6862 - "webpki-roots", 6863 - "winreg", 6864 - ] 6865 - 6866 - [[package]] 6867 - name = "resolv-conf" 6868 - version = "0.7.0" 6869 - source = "registry+https://github.com/rust-lang/crates.io-index" 6870 - checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" 6871 - dependencies = [ 6872 - "hostname", 6873 - "quick-error", 6874 - ] 6875 - 6876 - [[package]] 6877 - name = "rfc6979" 6878 - version = "0.3.1" 6879 - source = "registry+https://github.com/rust-lang/crates.io-index" 6880 - checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" 6881 - dependencies = [ 6882 - "crypto-bigint 0.4.9", 6883 - "hmac 0.12.1", 6884 - "zeroize", 6885 - ] 6886 - 6887 - [[package]] 6888 - name = "rfc6979" 6889 - version = "0.4.0" 6890 - source = "registry+https://github.com/rust-lang/crates.io-index" 6891 - checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 6892 - dependencies = [ 6893 - "hmac 0.12.1", 6894 - "subtle", 6895 - ] 6896 - 6897 - [[package]] 6898 - name = "ring" 6899 - version = "0.16.20" 6900 - source = "registry+https://github.com/rust-lang/crates.io-index" 6901 - checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 6902 - dependencies = [ 6903 - "cc", 6904 - "libc", 6905 - "once_cell", 6906 - "spin 0.5.2", 6907 - "untrusted 0.7.1", 6908 - "web-sys", 6909 - "winapi", 6910 - ] 6911 - 6912 - [[package]] 6913 - name = "ring" 6914 - version = "0.17.8" 6915 - source = "registry+https://github.com/rust-lang/crates.io-index" 6916 - checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 6917 - dependencies = [ 6918 - "cc", 6919 - "cfg-if", 6920 - "getrandom", 6921 - "libc", 6922 - "spin 0.9.8", 6923 - "untrusted 0.9.0", 6924 - "windows-sys 0.52.0", 6925 - ] 6926 - 6927 - [[package]] 6928 - name = "rle-decode-fast" 6929 - version = "1.0.3" 6930 - source = "registry+https://github.com/rust-lang/crates.io-index" 6931 - checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" 6932 - 6933 - [[package]] 6934 - name = "rlp" 6935 - version = "0.5.2" 6936 - source = "registry+https://github.com/rust-lang/crates.io-index" 6937 - checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" 6938 - dependencies = [ 6939 - "bytes", 6940 - "rustc-hex", 6941 - ] 6942 - 6943 - [[package]] 6944 - name = "rlp-derive" 6945 - version = "0.1.0" 6946 - source = "registry+https://github.com/rust-lang/crates.io-index" 6947 - checksum = "e33d7b2abe0c340d8797fe2907d3f20d3b5ea5908683618bfe80df7f621f672a" 6948 - dependencies = [ 6949 - "proc-macro2", 6950 - "quote", 6951 - "syn 1.0.109", 6952 - ] 6953 - 6954 - [[package]] 6955 - name = "rpassword" 6956 - version = "5.0.1" 6957 - source = "registry+https://github.com/rust-lang/crates.io-index" 6958 - checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb" 6959 - dependencies = [ 6960 - "libc", 6961 - "winapi", 6962 - ] 6963 - 6964 - [[package]] 6965 - name = "rpds" 6966 - version = "0.11.0" 6967 - source = "registry+https://github.com/rust-lang/crates.io-index" 6968 - checksum = "b4ef5140bcb576bfd6d56cd2de709a7d17851ac1f3805e67fe9d99e42a11821f" 6969 - dependencies = [ 6970 - "archery", 6971 - ] 6972 - 6973 - [[package]] 6974 - name = "rtnetlink" 6975 - version = "0.10.1" 6976 - source = "registry+https://github.com/rust-lang/crates.io-index" 6977 - checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0" 6978 - dependencies = [ 6979 - "futures", 6980 - "log", 6981 - "netlink-packet-route", 6982 - "netlink-proto", 6983 - "nix 0.24.3", 6984 - "thiserror", 6985 - "tokio", 6986 - ] 6987 - 6988 - [[package]] 6989 - name = "ruint" 6990 - version = "1.12.3" 6991 - source = "registry+https://github.com/rust-lang/crates.io-index" 6992 - checksum = "2c3cc4c2511671f327125da14133d0c5c5d137f006a1017a16f557bc85b16286" 6993 - dependencies = [ 6994 - "alloy-rlp", 6995 - "ark-ff 0.3.0", 6996 - "ark-ff 0.4.2", 6997 - "bytes", 6998 - "fastrlp", 6999 - "num-bigint", 7000 - "num-traits", 7001 - "parity-scale-codec 3.6.12", 7002 - "primitive-types 0.12.2", 7003 - "proptest", 7004 - "rand", 7005 - "rlp", 7006 - "ruint-macro", 7007 - "serde", 7008 - "valuable", 7009 - "zeroize", 7010 - ] 7011 - 7012 - [[package]] 7013 - name = "ruint-macro" 7014 - version = "1.2.1" 7015 - source = "registry+https://github.com/rust-lang/crates.io-index" 7016 - checksum = "48fd7bd8a6377e15ad9d42a8ec25371b94ddc67abe7c8b9127bec79bebaaae18" 7017 - 7018 - [[package]] 7019 - name = "rusqlite" 7020 - version = "0.28.0" 7021 - source = "registry+https://github.com/rust-lang/crates.io-index" 7022 - checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a" 7023 - dependencies = [ 7024 - "bitflags 1.3.2", 7025 - "fallible-iterator", 7026 - "fallible-streaming-iterator", 7027 - "hashlink 0.8.4", 7028 - "libsqlite3-sys", 7029 - "smallvec", 7030 - ] 7031 - 7032 - [[package]] 7033 - name = "rustc-demangle" 7034 - version = "0.1.24" 7035 - source = "registry+https://github.com/rust-lang/crates.io-index" 7036 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 7037 - 7038 - [[package]] 7039 - name = "rustc-hash" 7040 - version = "1.1.0" 7041 - source = "registry+https://github.com/rust-lang/crates.io-index" 7042 - checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 7043 - 7044 - [[package]] 7045 - name = "rustc-hex" 7046 - version = "2.1.0" 7047 - source = "registry+https://github.com/rust-lang/crates.io-index" 7048 - checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" 7049 - 7050 - [[package]] 7051 - name = "rustc_version" 7052 - version = "0.3.3" 7053 - source = "registry+https://github.com/rust-lang/crates.io-index" 7054 - checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" 7055 - dependencies = [ 7056 - "semver 0.11.0", 7057 - ] 7058 - 7059 - [[package]] 7060 - name = "rustc_version" 7061 - version = "0.4.0" 7062 - source = "registry+https://github.com/rust-lang/crates.io-index" 7063 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 7064 - dependencies = [ 7065 - "semver 1.0.23", 7066 - ] 7067 - 7068 - [[package]] 7069 - name = "rusticata-macros" 7070 - version = "4.1.0" 7071 - source = "registry+https://github.com/rust-lang/crates.io-index" 7072 - checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 7073 - dependencies = [ 7074 - "nom", 7075 - ] 7076 - 7077 - [[package]] 7078 - name = "rustix" 7079 - version = "0.36.17" 7080 - source = "registry+https://github.com/rust-lang/crates.io-index" 7081 - checksum = "305efbd14fde4139eb501df5f136994bb520b033fa9fbdce287507dc23b8c7ed" 7082 - dependencies = [ 7083 - "bitflags 1.3.2", 7084 - "errno", 7085 - "io-lifetimes", 7086 - "libc", 7087 - "linux-raw-sys 0.1.4", 7088 - "windows-sys 0.45.0", 7089 - ] 7090 - 7091 - [[package]] 7092 - name = "rustix" 7093 - version = "0.38.34" 7094 - source = "registry+https://github.com/rust-lang/crates.io-index" 7095 - checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 7096 - dependencies = [ 7097 - "bitflags 2.6.0", 7098 - "errno", 7099 - "libc", 7100 - "linux-raw-sys 0.4.14", 7101 - "windows-sys 0.52.0", 7102 - ] 7103 - 7104 - [[package]] 7105 - name = "rustls" 7106 - version = "0.21.12" 7107 - source = "registry+https://github.com/rust-lang/crates.io-index" 7108 - checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 7109 - dependencies = [ 7110 - "log", 7111 - "ring 0.17.8", 7112 - "rustls-webpki 0.101.7", 7113 - "sct", 7114 - ] 7115 - 7116 - [[package]] 7117 - name = "rustls" 7118 - version = "0.22.4" 7119 - source = "registry+https://github.com/rust-lang/crates.io-index" 7120 - checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 7121 - dependencies = [ 7122 - "log", 7123 - "ring 0.17.8", 7124 - "rustls-pki-types", 7125 - "rustls-webpki 0.102.6", 7126 - "subtle", 7127 - "zeroize", 7128 - ] 7129 - 7130 - [[package]] 7131 - name = "rustls" 7132 - version = "0.23.12" 7133 - source = "registry+https://github.com/rust-lang/crates.io-index" 7134 - checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044" 7135 - dependencies = [ 7136 - "once_cell", 7137 - "ring 0.17.8", 7138 - "rustls-pki-types", 7139 - "rustls-webpki 0.102.6", 7140 - "subtle", 7141 - "zeroize", 7142 - ] 7143 - 7144 - [[package]] 7145 - name = "rustls-pemfile" 7146 - version = "1.0.4" 7147 - source = "registry+https://github.com/rust-lang/crates.io-index" 7148 - checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 7149 - dependencies = [ 7150 - "base64 0.21.7", 7151 - ] 7152 - 7153 - [[package]] 7154 - name = "rustls-pemfile" 7155 - version = "2.1.2" 7156 - source = "registry+https://github.com/rust-lang/crates.io-index" 7157 - checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" 7158 - dependencies = [ 7159 - "base64 0.22.1", 7160 - "rustls-pki-types", 7161 - ] 7162 - 7163 - [[package]] 7164 - name = "rustls-pki-types" 7165 - version = "1.7.0" 7166 - source = "registry+https://github.com/rust-lang/crates.io-index" 7167 - checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" 7168 - 7169 - [[package]] 7170 - name = "rustls-webpki" 7171 - version = "0.101.7" 7172 - source = "registry+https://github.com/rust-lang/crates.io-index" 7173 - checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 7174 - dependencies = [ 7175 - "ring 0.17.8", 7176 - "untrusted 0.9.0", 7177 - ] 7178 - 7179 - [[package]] 7180 - name = "rustls-webpki" 7181 - version = "0.102.6" 7182 - source = "registry+https://github.com/rust-lang/crates.io-index" 7183 - checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e" 7184 - dependencies = [ 7185 - "ring 0.17.8", 7186 - "rustls-pki-types", 7187 - "untrusted 0.9.0", 7188 - ] 7189 - 7190 - [[package]] 7191 - name = "rustversion" 7192 - version = "1.0.17" 7193 - source = "registry+https://github.com/rust-lang/crates.io-index" 7194 - checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 7195 - 7196 - [[package]] 7197 - name = "rusty-fork" 7198 - version = "0.3.0" 7199 - source = "registry+https://github.com/rust-lang/crates.io-index" 7200 - checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" 7201 - dependencies = [ 7202 - "fnv", 7203 - "quick-error", 7204 - "tempfile", 7205 - "wait-timeout", 7206 - ] 7207 - 7208 - [[package]] 7209 - name = "rw-stream-sink" 7210 - version = "0.4.0" 7211 - source = "registry+https://github.com/rust-lang/crates.io-index" 7212 - checksum = "d8c9026ff5d2f23da5e45bbc283f156383001bfb09c4e44256d02c1a685fe9a1" 7213 - dependencies = [ 7214 - "futures", 7215 - "pin-project", 7216 - "static_assertions", 7217 - ] 7218 - 7219 - [[package]] 7220 - name = "ryu" 7221 - version = "1.0.18" 7222 - source = "registry+https://github.com/rust-lang/crates.io-index" 7223 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 7224 - 7225 - [[package]] 7226 - name = "safe_arith" 7227 - version = "0.1.0" 7228 - 7229 - [[package]] 7230 - name = "salsa20" 7231 - version = "0.8.1" 7232 - source = "registry+https://github.com/rust-lang/crates.io-index" 7233 - checksum = "ecbd2eb639fd7cab5804a0837fe373cc2172d15437e804c054a9fb885cb923b0" 7234 - dependencies = [ 7235 - "cipher 0.3.0", 7236 - ] 7237 - 7238 - [[package]] 7239 - name = "same-file" 7240 - version = "1.0.6" 7241 - source = "registry+https://github.com/rust-lang/crates.io-index" 7242 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 7243 - dependencies = [ 7244 - "winapi-util", 7245 - ] 7246 - 7247 - [[package]] 7248 - name = "scale-info" 7249 - version = "2.11.3" 7250 - source = "registry+https://github.com/rust-lang/crates.io-index" 7251 - checksum = "eca070c12893629e2cc820a9761bedf6ce1dcddc9852984d1dc734b8bd9bd024" 7252 - dependencies = [ 7253 - "cfg-if", 7254 - "derive_more", 7255 - "parity-scale-codec 3.6.12", 7256 - "scale-info-derive", 7257 - ] 7258 - 7259 - [[package]] 7260 - name = "scale-info-derive" 7261 - version = "2.11.3" 7262 - source = "registry+https://github.com/rust-lang/crates.io-index" 7263 - checksum = "2d35494501194174bda522a32605929eefc9ecf7e0a326c26db1fdd85881eb62" 7264 - dependencies = [ 7265 - "proc-macro-crate 3.1.0", 7266 - "proc-macro2", 7267 - "quote", 7268 - "syn 1.0.109", 7269 - ] 7270 - 7271 - [[package]] 7272 - name = "schannel" 7273 - version = "0.1.23" 7274 - source = "registry+https://github.com/rust-lang/crates.io-index" 7275 - checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 7276 - dependencies = [ 7277 - "windows-sys 0.52.0", 7278 - ] 7279 - 7280 - [[package]] 7281 - name = "scheduled-thread-pool" 7282 - version = "0.2.7" 7283 - source = "registry+https://github.com/rust-lang/crates.io-index" 7284 - checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19" 7285 - dependencies = [ 7286 - "parking_lot 0.12.3", 7287 - ] 7288 - 7289 - [[package]] 7290 - name = "scoped-tls" 7291 - version = "1.0.1" 7292 - source = "registry+https://github.com/rust-lang/crates.io-index" 7293 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 7294 - 7295 - [[package]] 7296 - name = "scopeguard" 7297 - version = "1.2.0" 7298 - source = "registry+https://github.com/rust-lang/crates.io-index" 7299 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 7300 - 7301 - [[package]] 7302 - name = "scrypt" 7303 - version = "0.7.0" 7304 - source = "registry+https://github.com/rust-lang/crates.io-index" 7305 - checksum = "879588d8f90906e73302547e20fffefdd240eb3e0e744e142321f5d49dea0518" 7306 - dependencies = [ 7307 - "hmac 0.11.0", 7308 - "pbkdf2 0.8.0", 7309 - "salsa20", 7310 - "sha2 0.9.9", 7311 - ] 7312 - 7313 - [[package]] 7314 - name = "sct" 7315 - version = "0.7.1" 7316 - source = "registry+https://github.com/rust-lang/crates.io-index" 7317 - checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 7318 - dependencies = [ 7319 - "ring 0.17.8", 7320 - "untrusted 0.9.0", 7321 - ] 7322 - 7323 - [[package]] 7324 - name = "sec1" 7325 - version = "0.3.0" 7326 - source = "registry+https://github.com/rust-lang/crates.io-index" 7327 - checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" 7328 - dependencies = [ 7329 - "base16ct 0.1.1", 7330 - "der 0.6.1", 7331 - "generic-array", 7332 - "pkcs8 0.9.0", 7333 - "subtle", 7334 - "zeroize", 7335 - ] 7336 - 7337 - [[package]] 7338 - name = "sec1" 7339 - version = "0.7.3" 7340 - source = "registry+https://github.com/rust-lang/crates.io-index" 7341 - checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 7342 - dependencies = [ 7343 - "base16ct 0.2.0", 7344 - "der 0.7.9", 7345 - "generic-array", 7346 - "pkcs8 0.10.2", 7347 - "subtle", 7348 - "zeroize", 7349 - ] 7350 - 7351 - [[package]] 7352 - name = "security-framework" 7353 - version = "2.11.1" 7354 - source = "registry+https://github.com/rust-lang/crates.io-index" 7355 - checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 7356 - dependencies = [ 7357 - "bitflags 2.6.0", 7358 - "core-foundation", 7359 - "core-foundation-sys", 7360 - "libc", 7361 - "security-framework-sys", 7362 - ] 7363 - 7364 - [[package]] 7365 - name = "security-framework-sys" 7366 - version = "2.11.1" 7367 - source = "registry+https://github.com/rust-lang/crates.io-index" 7368 - checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf" 7369 - dependencies = [ 7370 - "core-foundation-sys", 7371 - "libc", 7372 - ] 7373 - 7374 - [[package]] 7375 - name = "semver" 7376 - version = "0.11.0" 7377 - source = "registry+https://github.com/rust-lang/crates.io-index" 7378 - checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 7379 - dependencies = [ 7380 - "semver-parser", 7381 - ] 7382 - 7383 - [[package]] 7384 - name = "semver" 7385 - version = "1.0.23" 7386 - source = "registry+https://github.com/rust-lang/crates.io-index" 7387 - checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 7388 - dependencies = [ 7389 - "serde", 7390 - ] 7391 - 7392 - [[package]] 7393 - name = "semver-parser" 7394 - version = "0.10.2" 7395 - source = "registry+https://github.com/rust-lang/crates.io-index" 7396 - checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 7397 - dependencies = [ 7398 - "pest", 7399 - ] 7400 - 7401 - [[package]] 7402 - name = "send_wrapper" 7403 - version = "0.6.0" 7404 - source = "registry+https://github.com/rust-lang/crates.io-index" 7405 - checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" 7406 - 7407 - [[package]] 7408 - name = "sensitive_url" 7409 - version = "0.1.0" 7410 - dependencies = [ 7411 - "serde", 7412 - "url", 7413 - ] 7414 - 7415 - [[package]] 7416 - name = "serde" 7417 - version = "1.0.204" 7418 - source = "registry+https://github.com/rust-lang/crates.io-index" 7419 - checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" 7420 - dependencies = [ 7421 - "serde_derive", 7422 - ] 7423 - 7424 - [[package]] 7425 - name = "serde_array_query" 7426 - version = "0.1.0" 7427 - source = "registry+https://github.com/rust-lang/crates.io-index" 7428 - checksum = "d89c6e82b1005b33d5b2bbc47096800e5ad6b67ef5636f9c13ad29a6935734a7" 7429 - dependencies = [ 7430 - "serde", 7431 - "serde_urlencoded", 7432 - ] 7433 - 7434 - [[package]] 7435 - name = "serde_derive" 7436 - version = "1.0.204" 7437 - source = "registry+https://github.com/rust-lang/crates.io-index" 7438 - checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" 7439 - dependencies = [ 7440 - "proc-macro2", 7441 - "quote", 7442 - "syn 2.0.72", 7443 - ] 7444 - 7445 - [[package]] 7446 - name = "serde_json" 7447 - version = "1.0.120" 7448 - source = "registry+https://github.com/rust-lang/crates.io-index" 7449 - checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5" 7450 - dependencies = [ 7451 - "itoa", 7452 - "ryu", 7453 - "serde", 7454 - ] 7455 - 7456 - [[package]] 7457 - name = "serde_path_to_error" 7458 - version = "0.1.16" 7459 - source = "registry+https://github.com/rust-lang/crates.io-index" 7460 - checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" 7461 - dependencies = [ 7462 - "itoa", 7463 - "serde", 7464 - ] 7465 - 7466 - [[package]] 7467 - name = "serde_repr" 7468 - version = "0.1.19" 7469 - source = "registry+https://github.com/rust-lang/crates.io-index" 7470 - checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 7471 - dependencies = [ 7472 - "proc-macro2", 7473 - "quote", 7474 - "syn 2.0.72", 7475 - ] 7476 - 7477 - [[package]] 7478 - name = "serde_spanned" 7479 - version = "0.6.6" 7480 - source = "registry+https://github.com/rust-lang/crates.io-index" 7481 - checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" 7482 - dependencies = [ 7483 - "serde", 7484 - ] 7485 - 7486 - [[package]] 7487 - name = "serde_urlencoded" 7488 - version = "0.7.1" 7489 - source = "registry+https://github.com/rust-lang/crates.io-index" 7490 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 7491 - dependencies = [ 7492 - "form_urlencoded", 7493 - "itoa", 7494 - "ryu", 7495 - "serde", 7496 - ] 7497 - 7498 - [[package]] 7499 - name = "serde_with" 7500 - version = "1.14.0" 7501 - source = "registry+https://github.com/rust-lang/crates.io-index" 7502 - checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" 7503 - dependencies = [ 7504 - "serde", 7505 - "serde_with_macros", 7506 - ] 7507 - 7508 - [[package]] 7509 - name = "serde_with_macros" 7510 - version = "1.5.2" 7511 - source = "registry+https://github.com/rust-lang/crates.io-index" 7512 - checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" 7513 - dependencies = [ 7514 - "darling 0.13.4", 7515 - "proc-macro2", 7516 - "quote", 7517 - "syn 1.0.109", 7518 - ] 7519 - 7520 - [[package]] 7521 - name = "serde_yaml" 7522 - version = "0.9.34+deprecated" 7523 - source = "registry+https://github.com/rust-lang/crates.io-index" 7524 - checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" 7525 - dependencies = [ 7526 - "indexmap 2.2.6", 7527 - "itoa", 7528 - "ryu", 7529 - "serde", 7530 - "unsafe-libyaml", 7531 - ] 7532 - 7533 - [[package]] 7534 - name = "sha1" 7535 - version = "0.10.6" 7536 - source = "registry+https://github.com/rust-lang/crates.io-index" 7537 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 7538 - dependencies = [ 7539 - "cfg-if", 7540 - "cpufeatures", 7541 - "digest 0.10.7", 7542 - ] 7543 - 7544 - [[package]] 7545 - name = "sha2" 7546 - version = "0.9.9" 7547 - source = "registry+https://github.com/rust-lang/crates.io-index" 7548 - checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" 7549 - dependencies = [ 7550 - "block-buffer 0.9.0", 7551 - "cfg-if", 7552 - "cpufeatures", 7553 - "digest 0.9.0", 7554 - "opaque-debug", 7555 - ] 7556 - 7557 - [[package]] 7558 - name = "sha2" 7559 - version = "0.10.8" 7560 - source = "registry+https://github.com/rust-lang/crates.io-index" 7561 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 7562 - dependencies = [ 7563 - "cfg-if", 7564 - "cpufeatures", 7565 - "digest 0.10.7", 7566 - ] 7567 - 7568 - [[package]] 7569 - name = "sha3" 7570 - version = "0.9.1" 7571 - source = "registry+https://github.com/rust-lang/crates.io-index" 7572 - checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" 7573 - dependencies = [ 7574 - "block-buffer 0.9.0", 7575 - "digest 0.9.0", 7576 - "keccak", 7577 - "opaque-debug", 7578 - ] 7579 - 7580 - [[package]] 7581 - name = "sha3" 7582 - version = "0.10.8" 7583 - source = "registry+https://github.com/rust-lang/crates.io-index" 7584 - checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" 7585 - dependencies = [ 7586 - "digest 0.10.7", 7587 - "keccak", 7588 - ] 7589 - 7590 - [[package]] 7591 - name = "sha3-asm" 7592 - version = "0.1.1" 7593 - source = "registry+https://github.com/rust-lang/crates.io-index" 7594 - checksum = "a9b57fd861253bff08bb1919e995f90ba8f4889de2726091c8876f3a4e823b40" 7595 - dependencies = [ 7596 - "cc", 7597 - "cfg-if", 7598 - ] 7599 - 7600 - [[package]] 7601 - name = "sharded-slab" 7602 - version = "0.1.7" 7603 - source = "registry+https://github.com/rust-lang/crates.io-index" 7604 - checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 7605 - dependencies = [ 7606 - "lazy_static", 7607 - ] 7608 - 7609 - [[package]] 7610 - name = "shlex" 7611 - version = "1.3.0" 7612 - source = "registry+https://github.com/rust-lang/crates.io-index" 7613 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 7614 - 7615 - [[package]] 7616 - name = "signal-hook-registry" 7617 - version = "1.4.2" 7618 - source = "registry+https://github.com/rust-lang/crates.io-index" 7619 - checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 7620 - dependencies = [ 7621 - "libc", 7622 - ] 7623 - 7624 - [[package]] 7625 - name = "signature" 7626 - version = "1.6.4" 7627 - source = "registry+https://github.com/rust-lang/crates.io-index" 7628 - checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" 7629 - dependencies = [ 7630 - "digest 0.10.7", 7631 - "rand_core", 7632 - ] 7633 - 7634 - [[package]] 7635 - name = "signature" 7636 - version = "2.2.0" 7637 - source = "registry+https://github.com/rust-lang/crates.io-index" 7638 - checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 7639 - dependencies = [ 7640 - "digest 0.10.7", 7641 - "rand_core", 7642 - ] 7643 - 7644 - [[package]] 7645 - name = "simple_asn1" 7646 - version = "0.6.2" 7647 - source = "registry+https://github.com/rust-lang/crates.io-index" 7648 - checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" 7649 - dependencies = [ 7650 - "num-bigint", 7651 - "num-traits", 7652 - "thiserror", 7653 - "time", 7654 - ] 7655 - 7656 - [[package]] 7657 - name = "simulator" 7658 - version = "0.2.0" 7659 - dependencies = [ 7660 - "clap", 7661 - "env_logger 0.9.3", 7662 - "eth2_network_config", 7663 - "execution_layer", 7664 - "futures", 7665 - "node_test_rig", 7666 - "parking_lot 0.12.3", 7667 - "rayon", 7668 - "sensitive_url", 7669 - "serde_json", 7670 - "tokio", 7671 - "types", 7672 - ] 7673 - 7674 - [[package]] 7675 - name = "siphasher" 7676 - version = "0.3.11" 7677 - source = "registry+https://github.com/rust-lang/crates.io-index" 7678 - checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 7679 - 7680 - [[package]] 7681 - name = "slab" 7682 - version = "0.4.9" 7683 - source = "registry+https://github.com/rust-lang/crates.io-index" 7684 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 7685 - dependencies = [ 7686 - "autocfg", 7687 - ] 7688 - 7689 - [[package]] 7690 - name = "slasher" 7691 - version = "0.1.0" 7692 - dependencies = [ 7693 - "bincode", 7694 - "byteorder", 7695 - "derivative", 7696 - "ethereum_ssz", 7697 - "ethereum_ssz_derive", 7698 - "filesystem", 7699 - "flate2", 7700 - "lazy_static", 7701 - "libmdbx", 7702 - "lighthouse_metrics", 7703 - "lmdb-rkv", 7704 - "lmdb-rkv-sys", 7705 - "logging", 7706 - "lru", 7707 - "maplit", 7708 - "parking_lot 0.12.3", 7709 - "rand", 7710 - "rayon", 7711 - "redb", 7712 - "safe_arith", 7713 - "serde", 7714 - "slog", 7715 - "ssz_types", 7716 - "strum", 7717 - "tempfile", 7718 - "tree_hash", 7719 - "tree_hash_derive", 7720 - "types", 7721 - ] 7722 - 7723 - [[package]] 7724 - name = "slasher_service" 7725 - version = "0.1.0" 7726 - dependencies = [ 7727 - "beacon_chain", 7728 - "directory", 7729 - "lighthouse_network", 7730 - "network", 7731 - "slasher", 7732 - "slog", 7733 - "slot_clock", 7734 - "state_processing", 7735 - "task_executor", 7736 - "tokio", 7737 - "types", 7738 - ] 7739 - 7740 - [[package]] 7741 - name = "slashing_protection" 7742 - version = "0.1.0" 7743 - dependencies = [ 7744 - "arbitrary", 7745 - "ethereum_serde_utils", 7746 - "filesystem", 7747 - "lazy_static", 7748 - "r2d2", 7749 - "r2d2_sqlite", 7750 - "rayon", 7751 - "rusqlite", 7752 - "serde", 7753 - "serde_json", 7754 - "tempfile", 7755 - "types", 7756 - ] 7757 - 7758 - [[package]] 7759 - name = "slog" 7760 - version = "2.7.0" 7761 - source = "registry+https://github.com/rust-lang/crates.io-index" 7762 - checksum = "8347046d4ebd943127157b94d63abb990fcf729dc4e9978927fdf4ac3c998d06" 7763 - dependencies = [ 7764 - "erased-serde", 7765 - ] 7766 - 7767 - [[package]] 7768 - name = "slog-async" 7769 - version = "2.8.0" 7770 - source = "registry+https://github.com/rust-lang/crates.io-index" 7771 - checksum = "72c8038f898a2c79507940990f05386455b3a317d8f18d4caea7cbc3d5096b84" 7772 - dependencies = [ 7773 - "crossbeam-channel", 7774 - "slog", 7775 - "take_mut", 7776 - "thread_local", 7777 - ] 7778 - 7779 - [[package]] 7780 - name = "slog-json" 7781 - version = "2.6.1" 7782 - source = "registry+https://github.com/rust-lang/crates.io-index" 7783 - checksum = "3e1e53f61af1e3c8b852eef0a9dee29008f55d6dd63794f3f12cef786cf0f219" 7784 - dependencies = [ 7785 - "serde", 7786 - "serde_json", 7787 - "slog", 7788 - "time", 7789 - ] 7790 - 7791 - [[package]] 7792 - name = "slog-kvfilter" 7793 - version = "0.7.0" 7794 - source = "registry+https://github.com/rust-lang/crates.io-index" 7795 - checksum = "ae939ed7d169eed9699f4f5cd440f046f5dc5dfc27c19e3cd311619594c175e0" 7796 - dependencies = [ 7797 - "regex", 7798 - "slog", 7799 - ] 7800 - 7801 - [[package]] 7802 - name = "slog-scope" 7803 - version = "4.4.0" 7804 - source = "registry+https://github.com/rust-lang/crates.io-index" 7805 - checksum = "2f95a4b4c3274cd2869549da82b57ccc930859bdbf5bcea0424bc5f140b3c786" 7806 - dependencies = [ 7807 - "arc-swap", 7808 - "lazy_static", 7809 - "slog", 7810 - ] 7811 - 7812 - [[package]] 7813 - name = "slog-stdlog" 7814 - version = "4.1.1" 7815 - source = "registry+https://github.com/rust-lang/crates.io-index" 7816 - checksum = "6706b2ace5bbae7291d3f8d2473e2bfab073ccd7d03670946197aec98471fa3e" 7817 - dependencies = [ 7818 - "log", 7819 - "slog", 7820 - "slog-scope", 7821 - ] 7822 - 7823 - [[package]] 7824 - name = "slog-term" 7825 - version = "2.9.1" 7826 - source = "registry+https://github.com/rust-lang/crates.io-index" 7827 - checksum = "b6e022d0b998abfe5c3782c1f03551a596269450ccd677ea51c56f8b214610e8" 7828 - dependencies = [ 7829 - "is-terminal", 7830 - "slog", 7831 - "term", 7832 - "thread_local", 7833 - "time", 7834 - ] 7835 - 7836 - [[package]] 7837 - name = "sloggers" 7838 - version = "2.2.0" 7839 - source = "registry+https://github.com/rust-lang/crates.io-index" 7840 - checksum = "75062c2738b82cd45ae633623caae3393f43eb00aada1dc2d3ebe88db6b0db9b" 7841 - dependencies = [ 7842 - "chrono", 7843 - "libc", 7844 - "libflate", 7845 - "once_cell", 7846 - "regex", 7847 - "serde", 7848 - "slog", 7849 - "slog-async", 7850 - "slog-json", 7851 - "slog-kvfilter", 7852 - "slog-scope", 7853 - "slog-stdlog", 7854 - "slog-term", 7855 - "trackable", 7856 - "winapi", 7857 - "windows-acl", 7858 - ] 7859 - 7860 - [[package]] 7861 - name = "slot_clock" 7862 - version = "0.2.0" 7863 - dependencies = [ 7864 - "lazy_static", 7865 - "lighthouse_metrics", 7866 - "parking_lot 0.12.3", 7867 - "types", 7868 - ] 7869 - 7870 - [[package]] 7871 - name = "smallvec" 7872 - version = "1.13.2" 7873 - source = "registry+https://github.com/rust-lang/crates.io-index" 7874 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 7875 - dependencies = [ 7876 - "arbitrary", 7877 - ] 7878 - 7879 - [[package]] 7880 - name = "snap" 7881 - version = "1.1.1" 7882 - source = "registry+https://github.com/rust-lang/crates.io-index" 7883 - checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b" 7884 - 7885 - [[package]] 7886 - name = "snow" 7887 - version = "0.9.6" 7888 - source = "registry+https://github.com/rust-lang/crates.io-index" 7889 - checksum = "850948bee068e713b8ab860fe1adc4d109676ab4c3b621fd8147f06b261f2f85" 7890 - dependencies = [ 7891 - "aes-gcm 0.10.3", 7892 - "blake2", 7893 - "chacha20poly1305", 7894 - "curve25519-dalek", 7895 - "rand_core", 7896 - "ring 0.17.8", 7897 - "rustc_version 0.4.0", 7898 - "sha2 0.10.8", 7899 - "subtle", 7900 - ] 7901 - 7902 - [[package]] 7903 - name = "socket2" 7904 - version = "0.4.10" 7905 - source = "registry+https://github.com/rust-lang/crates.io-index" 7906 - checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 7907 - dependencies = [ 7908 - "libc", 7909 - "winapi", 7910 - ] 7911 - 7912 - [[package]] 7913 - name = "socket2" 7914 - version = "0.5.7" 7915 - source = "registry+https://github.com/rust-lang/crates.io-index" 7916 - checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 7917 - dependencies = [ 7918 - "libc", 7919 - "windows-sys 0.52.0", 7920 - ] 7921 - 7922 - [[package]] 7923 - name = "spin" 7924 - version = "0.5.2" 7925 - source = "registry+https://github.com/rust-lang/crates.io-index" 7926 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 7927 - 7928 - [[package]] 7929 - name = "spin" 7930 - version = "0.9.8" 7931 - source = "registry+https://github.com/rust-lang/crates.io-index" 7932 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 7933 - 7934 - [[package]] 7935 - name = "spki" 7936 - version = "0.6.0" 7937 - source = "registry+https://github.com/rust-lang/crates.io-index" 7938 - checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" 7939 - dependencies = [ 7940 - "base64ct", 7941 - "der 0.6.1", 7942 - ] 7943 - 7944 - [[package]] 7945 - name = "spki" 7946 - version = "0.7.3" 7947 - source = "registry+https://github.com/rust-lang/crates.io-index" 7948 - checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 7949 - dependencies = [ 7950 - "base64ct", 7951 - "der 0.7.9", 7952 - ] 7953 - 7954 - [[package]] 7955 - name = "ssz_types" 7956 - version = "0.6.0" 7957 - source = "registry+https://github.com/rust-lang/crates.io-index" 7958 - checksum = "625b20de2d4b3891e6972f4ce5061cb11bd52b3479270c4b177c134b571194a9" 7959 - dependencies = [ 7960 - "arbitrary", 7961 - "derivative", 7962 - "ethereum_serde_utils", 7963 - "ethereum_ssz", 7964 - "itertools 0.10.5", 7965 - "serde", 7966 - "serde_derive", 7967 - "smallvec", 7968 - "tree_hash", 7969 - "typenum", 7970 - ] 7971 - 7972 - [[package]] 7973 - name = "stable_deref_trait" 7974 - version = "1.2.0" 7975 - source = "registry+https://github.com/rust-lang/crates.io-index" 7976 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 7977 - 7978 - [[package]] 7979 - name = "state_processing" 7980 - version = "0.2.0" 7981 - dependencies = [ 7982 - "arbitrary", 7983 - "beacon_chain", 7984 - "bls", 7985 - "derivative", 7986 - "env_logger 0.9.3", 7987 - "ethereum_hashing", 7988 - "ethereum_ssz", 7989 - "ethereum_ssz_derive", 7990 - "int_to_bytes", 7991 - "integer-sqrt", 7992 - "itertools 0.10.5", 7993 - "lazy_static", 7994 - "lighthouse_metrics", 7995 - "merkle_proof", 7996 - "rand", 7997 - "rayon", 7998 - "safe_arith", 7999 - "smallvec", 8000 - "ssz_types", 8001 - "test_random_derive", 8002 - "tokio", 8003 - "tree_hash", 8004 - "types", 8005 - ] 8006 - 8007 - [[package]] 8008 - name = "state_transition_vectors" 8009 - version = "0.1.0" 8010 - dependencies = [ 8011 - "beacon_chain", 8012 - "ethereum_ssz", 8013 - "lazy_static", 8014 - "state_processing", 8015 - "tokio", 8016 - "types", 8017 - ] 8018 - 8019 - [[package]] 8020 - name = "static_assertions" 8021 - version = "1.1.0" 8022 - source = "registry+https://github.com/rust-lang/crates.io-index" 8023 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 8024 - 8025 - [[package]] 8026 - name = "store" 8027 - version = "0.2.0" 8028 - dependencies = [ 8029 - "beacon_chain", 8030 - "db-key", 8031 - "directory", 8032 - "ethereum_ssz", 8033 - "ethereum_ssz_derive", 8034 - "itertools 0.10.5", 8035 - "lazy_static", 8036 - "leveldb", 8037 - "lighthouse_metrics", 8038 - "lru", 8039 - "parking_lot 0.12.3", 8040 - "serde", 8041 - "slog", 8042 - "sloggers", 8043 - "state_processing", 8044 - "strum", 8045 - "tempfile", 8046 - "types", 8047 - ] 8048 - 8049 - [[package]] 8050 - name = "stringprep" 8051 - version = "0.1.5" 8052 - source = "registry+https://github.com/rust-lang/crates.io-index" 8053 - checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 8054 - dependencies = [ 8055 - "unicode-bidi", 8056 - "unicode-normalization", 8057 - "unicode-properties", 8058 - ] 8059 - 8060 - [[package]] 8061 - name = "strsim" 8062 - version = "0.10.0" 8063 - source = "registry+https://github.com/rust-lang/crates.io-index" 8064 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 8065 - 8066 - [[package]] 8067 - name = "strsim" 8068 - version = "0.11.1" 8069 - source = "registry+https://github.com/rust-lang/crates.io-index" 8070 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 8071 - 8072 - [[package]] 8073 - name = "strum" 8074 - version = "0.24.1" 8075 - source = "registry+https://github.com/rust-lang/crates.io-index" 8076 - checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 8077 - dependencies = [ 8078 - "strum_macros", 8079 - ] 8080 - 8081 - [[package]] 8082 - name = "strum_macros" 8083 - version = "0.24.3" 8084 - source = "registry+https://github.com/rust-lang/crates.io-index" 8085 - checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 8086 - dependencies = [ 8087 - "heck 0.4.1", 8088 - "proc-macro2", 8089 - "quote", 8090 - "rustversion", 8091 - "syn 1.0.109", 8092 - ] 8093 - 8094 - [[package]] 8095 - name = "subtle" 8096 - version = "2.6.1" 8097 - source = "registry+https://github.com/rust-lang/crates.io-index" 8098 - checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 8099 - 8100 - [[package]] 8101 - name = "superstruct" 8102 - version = "0.8.0" 8103 - source = "registry+https://github.com/rust-lang/crates.io-index" 8104 - checksum = "bf0f31f730ad9e579364950e10d6172b4a9bd04b447edf5988b066a860cc340e" 8105 - dependencies = [ 8106 - "darling 0.13.4", 8107 - "itertools 0.10.5", 8108 - "proc-macro2", 8109 - "quote", 8110 - "smallvec", 8111 - "syn 1.0.109", 8112 - ] 8113 - 8114 - [[package]] 8115 - name = "swap_or_not_shuffle" 8116 - version = "0.2.0" 8117 - dependencies = [ 8118 - "criterion", 8119 - "ethereum-types 0.14.1", 8120 - "ethereum_hashing", 8121 - ] 8122 - 8123 - [[package]] 8124 - name = "syn" 8125 - version = "1.0.109" 8126 - source = "registry+https://github.com/rust-lang/crates.io-index" 8127 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 8128 - dependencies = [ 8129 - "proc-macro2", 8130 - "quote", 8131 - "unicode-ident", 8132 - ] 8133 - 8134 - [[package]] 8135 - name = "syn" 8136 - version = "2.0.72" 8137 - source = "registry+https://github.com/rust-lang/crates.io-index" 8138 - checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af" 8139 - dependencies = [ 8140 - "proc-macro2", 8141 - "quote", 8142 - "unicode-ident", 8143 - ] 8144 - 8145 - [[package]] 8146 - name = "sync_wrapper" 8147 - version = "0.1.2" 8148 - source = "registry+https://github.com/rust-lang/crates.io-index" 8149 - checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 8150 - 8151 - [[package]] 8152 - name = "sync_wrapper" 8153 - version = "1.0.1" 8154 - source = "registry+https://github.com/rust-lang/crates.io-index" 8155 - checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 8156 - 8157 - [[package]] 8158 - name = "synstructure" 8159 - version = "0.13.1" 8160 - source = "registry+https://github.com/rust-lang/crates.io-index" 8161 - checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 8162 - dependencies = [ 8163 - "proc-macro2", 8164 - "quote", 8165 - "syn 2.0.72", 8166 - ] 8167 - 8168 - [[package]] 8169 - name = "sysinfo" 8170 - version = "0.26.9" 8171 - source = "registry+https://github.com/rust-lang/crates.io-index" 8172 - checksum = "5c18a6156d1f27a9592ee18c1a846ca8dd5c258b7179fc193ae87c74ebb666f5" 8173 - dependencies = [ 8174 - "cfg-if", 8175 - "core-foundation-sys", 8176 - "libc", 8177 - "ntapi", 8178 - "once_cell", 8179 - "rayon", 8180 - "winapi", 8181 - ] 8182 - 8183 - [[package]] 8184 - name = "system-configuration" 8185 - version = "0.5.1" 8186 - source = "registry+https://github.com/rust-lang/crates.io-index" 8187 - checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 8188 - dependencies = [ 8189 - "bitflags 1.3.2", 8190 - "core-foundation", 8191 - "system-configuration-sys", 8192 - ] 8193 - 8194 - [[package]] 8195 - name = "system-configuration-sys" 8196 - version = "0.5.0" 8197 - source = "registry+https://github.com/rust-lang/crates.io-index" 8198 - checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 8199 - dependencies = [ 8200 - "core-foundation-sys", 8201 - "libc", 8202 - ] 8203 - 8204 - [[package]] 8205 - name = "system_health" 8206 - version = "0.1.0" 8207 - dependencies = [ 8208 - "lighthouse_network", 8209 - "parking_lot 0.12.3", 8210 - "serde", 8211 - "sysinfo", 8212 - "types", 8213 - ] 8214 - 8215 - [[package]] 8216 - name = "take_mut" 8217 - version = "0.2.2" 8218 - source = "registry+https://github.com/rust-lang/crates.io-index" 8219 - checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" 8220 - 8221 - [[package]] 8222 - name = "tap" 8223 - version = "1.0.1" 8224 - source = "registry+https://github.com/rust-lang/crates.io-index" 8225 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 8226 - 8227 - [[package]] 8228 - name = "target_check" 8229 - version = "0.1.0" 8230 - dependencies = [ 8231 - "static_assertions", 8232 - ] 8233 - 8234 - [[package]] 8235 - name = "target_info" 8236 - version = "0.1.0" 8237 - source = "registry+https://github.com/rust-lang/crates.io-index" 8238 - checksum = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe" 8239 - 8240 - [[package]] 8241 - name = "task_executor" 8242 - version = "0.1.0" 8243 - dependencies = [ 8244 - "async-channel", 8245 - "futures", 8246 - "lazy_static", 8247 - "lighthouse_metrics", 8248 - "logging", 8249 - "slog", 8250 - "sloggers", 8251 - "tokio", 8252 - ] 8253 - 8254 - [[package]] 8255 - name = "tempfile" 8256 - version = "3.10.1" 8257 - source = "registry+https://github.com/rust-lang/crates.io-index" 8258 - checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 8259 - dependencies = [ 8260 - "cfg-if", 8261 - "fastrand", 8262 - "rustix 0.38.34", 8263 - "windows-sys 0.52.0", 8264 - ] 8265 - 8266 - [[package]] 8267 - name = "term" 8268 - version = "0.7.0" 8269 - source = "registry+https://github.com/rust-lang/crates.io-index" 8270 - checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" 8271 - dependencies = [ 8272 - "dirs-next", 8273 - "rustversion", 8274 - "winapi", 8275 - ] 8276 - 8277 - [[package]] 8278 - name = "termcolor" 8279 - version = "1.4.1" 8280 - source = "registry+https://github.com/rust-lang/crates.io-index" 8281 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 8282 - dependencies = [ 8283 - "winapi-util", 8284 - ] 8285 - 8286 - [[package]] 8287 - name = "terminal_size" 8288 - version = "0.3.0" 8289 - source = "registry+https://github.com/rust-lang/crates.io-index" 8290 - checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 8291 - dependencies = [ 8292 - "rustix 0.38.34", 8293 - "windows-sys 0.48.0", 8294 - ] 8295 - 8296 - [[package]] 8297 - name = "test-test_logger" 8298 - version = "0.1.0" 8299 - dependencies = [ 8300 - "logging", 8301 - "slog", 8302 - ] 8303 - 8304 - [[package]] 8305 - name = "test_random_derive" 8306 - version = "0.2.0" 8307 - dependencies = [ 8308 - "quote", 8309 - "syn 1.0.109", 8310 - ] 8311 - 8312 - [[package]] 8313 - name = "testcontainers" 8314 - version = "0.15.0" 8315 - source = "registry+https://github.com/rust-lang/crates.io-index" 8316 - checksum = "f83d2931d7f521af5bae989f716c3fa43a6af9af7ec7a5e21b59ae40878cec00" 8317 - dependencies = [ 8318 - "bollard-stubs", 8319 - "futures", 8320 - "hex", 8321 - "hmac 0.12.1", 8322 - "log", 8323 - "rand", 8324 - "serde", 8325 - "serde_json", 8326 - "sha2 0.10.8", 8327 - ] 8328 - 8329 - [[package]] 8330 - name = "thiserror" 8331 - version = "1.0.63" 8332 - source = "registry+https://github.com/rust-lang/crates.io-index" 8333 - checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" 8334 - dependencies = [ 8335 - "thiserror-impl", 8336 - ] 8337 - 8338 - [[package]] 8339 - name = "thiserror-impl" 8340 - version = "1.0.63" 8341 - source = "registry+https://github.com/rust-lang/crates.io-index" 8342 - checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" 8343 - dependencies = [ 8344 - "proc-macro2", 8345 - "quote", 8346 - "syn 2.0.72", 8347 - ] 8348 - 8349 - [[package]] 8350 - name = "thread_local" 8351 - version = "1.1.8" 8352 - source = "registry+https://github.com/rust-lang/crates.io-index" 8353 - checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 8354 - dependencies = [ 8355 - "cfg-if", 8356 - "once_cell", 8357 - ] 8358 - 8359 - [[package]] 8360 - name = "threadpool" 8361 - version = "1.8.1" 8362 - source = "registry+https://github.com/rust-lang/crates.io-index" 8363 - checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 8364 - dependencies = [ 8365 - "num_cpus", 8366 - ] 8367 - 8368 - [[package]] 8369 - name = "time" 8370 - version = "0.3.36" 8371 - source = "registry+https://github.com/rust-lang/crates.io-index" 8372 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 8373 - dependencies = [ 8374 - "deranged", 8375 - "itoa", 8376 - "num-conv", 8377 - "powerfmt", 8378 - "serde", 8379 - "time-core", 8380 - "time-macros", 8381 - ] 8382 - 8383 - [[package]] 8384 - name = "time-core" 8385 - version = "0.1.2" 8386 - source = "registry+https://github.com/rust-lang/crates.io-index" 8387 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 8388 - 8389 - [[package]] 8390 - name = "time-macros" 8391 - version = "0.2.18" 8392 - source = "registry+https://github.com/rust-lang/crates.io-index" 8393 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 8394 - dependencies = [ 8395 - "num-conv", 8396 - "time-core", 8397 - ] 8398 - 8399 - [[package]] 8400 - name = "timer" 8401 - version = "0.2.0" 8402 - dependencies = [ 8403 - "beacon_chain", 8404 - "slog", 8405 - "slot_clock", 8406 - "task_executor", 8407 - "tokio", 8408 - ] 8409 - 8410 - [[package]] 8411 - name = "tiny-bip39" 8412 - version = "1.0.0" 8413 - source = "registry+https://github.com/rust-lang/crates.io-index" 8414 - checksum = "62cc94d358b5a1e84a5cb9109f559aa3c4d634d2b1b4de3d0fa4adc7c78e2861" 8415 - dependencies = [ 8416 - "anyhow", 8417 - "hmac 0.12.1", 8418 - "once_cell", 8419 - "pbkdf2 0.11.0", 8420 - "rand", 8421 - "rustc-hash", 8422 - "sha2 0.10.8", 8423 - "thiserror", 8424 - "unicode-normalization", 8425 - "wasm-bindgen", 8426 - "zeroize", 8427 - ] 8428 - 8429 - [[package]] 8430 - name = "tiny-keccak" 8431 - version = "2.0.2" 8432 - source = "registry+https://github.com/rust-lang/crates.io-index" 8433 - checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 8434 - dependencies = [ 8435 - "crunchy", 8436 - ] 8437 - 8438 - [[package]] 8439 - name = "tinytemplate" 8440 - version = "1.2.1" 8441 - source = "registry+https://github.com/rust-lang/crates.io-index" 8442 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 8443 - dependencies = [ 8444 - "serde", 8445 - "serde_json", 8446 - ] 8447 - 8448 - [[package]] 8449 - name = "tinyvec" 8450 - version = "1.8.0" 8451 - source = "registry+https://github.com/rust-lang/crates.io-index" 8452 - checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 8453 - dependencies = [ 8454 - "tinyvec_macros", 8455 - ] 8456 - 8457 - [[package]] 8458 - name = "tinyvec_macros" 8459 - version = "0.1.1" 8460 - source = "registry+https://github.com/rust-lang/crates.io-index" 8461 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 8462 - 8463 - [[package]] 8464 - name = "tokio" 8465 - version = "1.39.1" 8466 - source = "registry+https://github.com/rust-lang/crates.io-index" 8467 - checksum = "d040ac2b29ab03b09d4129c2f5bbd012a3ac2f79d38ff506a4bf8dd34b0eac8a" 8468 - dependencies = [ 8469 - "backtrace", 8470 - "bytes", 8471 - "libc", 8472 - "mio", 8473 - "pin-project-lite", 8474 - "signal-hook-registry", 8475 - "socket2 0.5.7", 8476 - "tokio-macros", 8477 - "windows-sys 0.52.0", 8478 - ] 8479 - 8480 - [[package]] 8481 - name = "tokio-io-timeout" 8482 - version = "1.2.0" 8483 - source = "registry+https://github.com/rust-lang/crates.io-index" 8484 - checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 8485 - dependencies = [ 8486 - "pin-project-lite", 8487 - "tokio", 8488 - ] 8489 - 8490 - [[package]] 8491 - name = "tokio-macros" 8492 - version = "2.4.0" 8493 - source = "registry+https://github.com/rust-lang/crates.io-index" 8494 - checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 8495 - dependencies = [ 8496 - "proc-macro2", 8497 - "quote", 8498 - "syn 2.0.72", 8499 - ] 8500 - 8501 - [[package]] 8502 - name = "tokio-native-tls" 8503 - version = "0.3.1" 8504 - source = "registry+https://github.com/rust-lang/crates.io-index" 8505 - checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 8506 - dependencies = [ 8507 - "native-tls", 8508 - "tokio", 8509 - ] 8510 - 8511 - [[package]] 8512 - name = "tokio-postgres" 8513 - version = "0.7.11" 8514 - source = "registry+https://github.com/rust-lang/crates.io-index" 8515 - checksum = "03adcf0147e203b6032c0b2d30be1415ba03bc348901f3ff1cc0df6a733e60c3" 8516 - dependencies = [ 8517 - "async-trait", 8518 - "byteorder", 8519 - "bytes", 8520 - "fallible-iterator", 8521 - "futures-channel", 8522 - "futures-util", 8523 - "log", 8524 - "parking_lot 0.12.3", 8525 - "percent-encoding", 8526 - "phf", 8527 - "pin-project-lite", 8528 - "postgres-protocol", 8529 - "postgres-types", 8530 - "rand", 8531 - "socket2 0.5.7", 8532 - "tokio", 8533 - "tokio-util", 8534 - "whoami", 8535 - ] 8536 - 8537 - [[package]] 8538 - name = "tokio-rustls" 8539 - version = "0.24.1" 8540 - source = "registry+https://github.com/rust-lang/crates.io-index" 8541 - checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 8542 - dependencies = [ 8543 - "rustls 0.21.12", 8544 - "tokio", 8545 - ] 8546 - 8547 - [[package]] 8548 - name = "tokio-rustls" 8549 - version = "0.25.0" 8550 - source = "registry+https://github.com/rust-lang/crates.io-index" 8551 - checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" 8552 - dependencies = [ 8553 - "rustls 0.22.4", 8554 - "rustls-pki-types", 8555 - "tokio", 8556 - ] 8557 - 8558 - [[package]] 8559 - name = "tokio-stream" 8560 - version = "0.1.15" 8561 - source = "registry+https://github.com/rust-lang/crates.io-index" 8562 - checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" 8563 - dependencies = [ 8564 - "futures-core", 8565 - "pin-project-lite", 8566 - "tokio", 8567 - "tokio-util", 8568 - ] 8569 - 8570 - [[package]] 8571 - name = "tokio-util" 8572 - version = "0.7.11" 8573 - source = "registry+https://github.com/rust-lang/crates.io-index" 8574 - checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" 8575 - dependencies = [ 8576 - "bytes", 8577 - "futures-core", 8578 - "futures-io", 8579 - "futures-sink", 8580 - "pin-project-lite", 8581 - "slab", 8582 - "tokio", 8583 - ] 8584 - 8585 - [[package]] 8586 - name = "toml" 8587 - version = "0.5.11" 8588 - source = "registry+https://github.com/rust-lang/crates.io-index" 8589 - checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 8590 - dependencies = [ 8591 - "serde", 8592 - ] 8593 - 8594 - [[package]] 8595 - name = "toml" 8596 - version = "0.8.15" 8597 - source = "registry+https://github.com/rust-lang/crates.io-index" 8598 - checksum = "ac2caab0bf757388c6c0ae23b3293fdb463fee59434529014f85e3263b995c28" 8599 - dependencies = [ 8600 - "serde", 8601 - "serde_spanned", 8602 - "toml_datetime", 8603 - "toml_edit 0.22.16", 8604 - ] 8605 - 8606 - [[package]] 8607 - name = "toml_datetime" 8608 - version = "0.6.6" 8609 - source = "registry+https://github.com/rust-lang/crates.io-index" 8610 - checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 8611 - dependencies = [ 8612 - "serde", 8613 - ] 8614 - 8615 - [[package]] 8616 - name = "toml_edit" 8617 - version = "0.19.15" 8618 - source = "registry+https://github.com/rust-lang/crates.io-index" 8619 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 8620 - dependencies = [ 8621 - "indexmap 2.2.6", 8622 - "toml_datetime", 8623 - "winnow 0.5.40", 8624 - ] 8625 - 8626 - [[package]] 8627 - name = "toml_edit" 8628 - version = "0.21.1" 8629 - source = "registry+https://github.com/rust-lang/crates.io-index" 8630 - checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 8631 - dependencies = [ 8632 - "indexmap 2.2.6", 8633 - "toml_datetime", 8634 - "winnow 0.5.40", 8635 - ] 8636 - 8637 - [[package]] 8638 - name = "toml_edit" 8639 - version = "0.22.16" 8640 - source = "registry+https://github.com/rust-lang/crates.io-index" 8641 - checksum = "278f3d518e152219c994ce877758516bca5e118eaed6996192a774fb9fbf0788" 8642 - dependencies = [ 8643 - "indexmap 2.2.6", 8644 - "serde", 8645 - "serde_spanned", 8646 - "toml_datetime", 8647 - "winnow 0.6.15", 8648 - ] 8649 - 8650 - [[package]] 8651 - name = "tower" 8652 - version = "0.4.13" 8653 - source = "registry+https://github.com/rust-lang/crates.io-index" 8654 - checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 8655 - dependencies = [ 8656 - "futures-core", 8657 - "futures-util", 8658 - "pin-project", 8659 - "pin-project-lite", 8660 - "tokio", 8661 - "tower-layer", 8662 - "tower-service", 8663 - "tracing", 8664 - ] 8665 - 8666 - [[package]] 8667 - name = "tower-layer" 8668 - version = "0.3.2" 8669 - source = "registry+https://github.com/rust-lang/crates.io-index" 8670 - checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 8671 - 8672 - [[package]] 8673 - name = "tower-service" 8674 - version = "0.3.2" 8675 - source = "registry+https://github.com/rust-lang/crates.io-index" 8676 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 8677 - 8678 - [[package]] 8679 - name = "tracing" 8680 - version = "0.1.40" 8681 - source = "registry+https://github.com/rust-lang/crates.io-index" 8682 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 8683 - dependencies = [ 8684 - "log", 8685 - "pin-project-lite", 8686 - "tracing-attributes", 8687 - "tracing-core", 8688 - ] 8689 - 8690 - [[package]] 8691 - name = "tracing-appender" 8692 - version = "0.2.3" 8693 - source = "registry+https://github.com/rust-lang/crates.io-index" 8694 - checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" 8695 - dependencies = [ 8696 - "crossbeam-channel", 8697 - "thiserror", 8698 - "time", 8699 - "tracing-subscriber", 8700 - ] 8701 - 8702 - [[package]] 8703 - name = "tracing-attributes" 8704 - version = "0.1.27" 8705 - source = "registry+https://github.com/rust-lang/crates.io-index" 8706 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 8707 - dependencies = [ 8708 - "proc-macro2", 8709 - "quote", 8710 - "syn 2.0.72", 8711 - ] 8712 - 8713 - [[package]] 8714 - name = "tracing-core" 8715 - version = "0.1.32" 8716 - source = "registry+https://github.com/rust-lang/crates.io-index" 8717 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 8718 - dependencies = [ 8719 - "once_cell", 8720 - "valuable", 8721 - ] 8722 - 8723 - [[package]] 8724 - name = "tracing-futures" 8725 - version = "0.2.5" 8726 - source = "registry+https://github.com/rust-lang/crates.io-index" 8727 - checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 8728 - dependencies = [ 8729 - "pin-project", 8730 - "tracing", 8731 - ] 8732 - 8733 - [[package]] 8734 - name = "tracing-log" 8735 - version = "0.2.0" 8736 - source = "registry+https://github.com/rust-lang/crates.io-index" 8737 - checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 8738 - dependencies = [ 8739 - "log", 8740 - "once_cell", 8741 - "tracing-core", 8742 - ] 8743 - 8744 - [[package]] 8745 - name = "tracing-subscriber" 8746 - version = "0.3.18" 8747 - source = "registry+https://github.com/rust-lang/crates.io-index" 8748 - checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 8749 - dependencies = [ 8750 - "matchers", 8751 - "nu-ansi-term", 8752 - "once_cell", 8753 - "regex", 8754 - "sharded-slab", 8755 - "smallvec", 8756 - "thread_local", 8757 - "tracing", 8758 - "tracing-core", 8759 - "tracing-log", 8760 - ] 8761 - 8762 - [[package]] 8763 - name = "trackable" 8764 - version = "1.3.0" 8765 - source = "registry+https://github.com/rust-lang/crates.io-index" 8766 - checksum = "b15bd114abb99ef8cee977e517c8f37aee63f184f2d08e3e6ceca092373369ae" 8767 - dependencies = [ 8768 - "trackable_derive", 8769 - ] 8770 - 8771 - [[package]] 8772 - name = "trackable_derive" 8773 - version = "1.0.0" 8774 - source = "registry+https://github.com/rust-lang/crates.io-index" 8775 - checksum = "ebeb235c5847e2f82cfe0f07eb971d1e5f6804b18dac2ae16349cc604380f82f" 8776 - dependencies = [ 8777 - "quote", 8778 - "syn 1.0.109", 8779 - ] 8780 - 8781 - [[package]] 8782 - name = "tree_hash" 8783 - version = "0.6.0" 8784 - source = "registry+https://github.com/rust-lang/crates.io-index" 8785 - checksum = "134d6b24a5b829f30b5ee7de05ba7384557f5f6b00e29409cdf2392f93201bfa" 8786 - dependencies = [ 8787 - "ethereum-types 0.14.1", 8788 - "ethereum_hashing", 8789 - "smallvec", 8790 - ] 8791 - 8792 - [[package]] 8793 - name = "tree_hash_derive" 8794 - version = "0.6.0" 8795 - source = "registry+https://github.com/rust-lang/crates.io-index" 8796 - checksum = "9ce7bccc538359a213436af7bc95804bdbf1c2a21d80e22953cbe9e096837ff1" 8797 - dependencies = [ 8798 - "darling 0.13.4", 8799 - "quote", 8800 - "syn 1.0.109", 8801 - ] 8802 - 8803 - [[package]] 8804 - name = "triehash" 8805 - version = "0.8.4" 8806 - source = "registry+https://github.com/rust-lang/crates.io-index" 8807 - checksum = "a1631b201eb031b563d2e85ca18ec8092508e262a3196ce9bd10a67ec87b9f5c" 8808 - dependencies = [ 8809 - "hash-db", 8810 - "rlp", 8811 - ] 8812 - 8813 - [[package]] 8814 - name = "triomphe" 8815 - version = "0.1.13" 8816 - source = "registry+https://github.com/rust-lang/crates.io-index" 8817 - checksum = "e6631e42e10b40c0690bf92f404ebcfe6e1fdb480391d15f17cc8e96eeed5369" 8818 - dependencies = [ 8819 - "serde", 8820 - "stable_deref_trait", 8821 - ] 8822 - 8823 - [[package]] 8824 - name = "try-lock" 8825 - version = "0.2.5" 8826 - source = "registry+https://github.com/rust-lang/crates.io-index" 8827 - checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 8828 - 8829 - [[package]] 8830 - name = "typenum" 8831 - version = "1.17.0" 8832 - source = "registry+https://github.com/rust-lang/crates.io-index" 8833 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 8834 - 8835 - [[package]] 8836 - name = "types" 8837 - version = "0.2.1" 8838 - dependencies = [ 8839 - "alloy-primitives", 8840 - "alloy-rlp", 8841 - "arbitrary", 8842 - "beacon_chain", 8843 - "bls", 8844 - "compare_fields", 8845 - "compare_fields_derive", 8846 - "criterion", 8847 - "derivative", 8848 - "eth2_interop_keypairs", 8849 - "ethereum-types 0.14.1", 8850 - "ethereum_hashing", 8851 - "ethereum_serde_utils", 8852 - "ethereum_ssz", 8853 - "ethereum_ssz_derive", 8854 - "hex", 8855 - "int_to_bytes", 8856 - "itertools 0.10.5", 8857 - "kzg", 8858 - "lazy_static", 8859 - "log", 8860 - "maplit", 8861 - "merkle_proof", 8862 - "metastruct", 8863 - "milhouse", 8864 - "parking_lot 0.12.3", 8865 - "paste", 8866 - "rand", 8867 - "rand_xorshift", 8868 - "rayon", 8869 - "regex", 8870 - "rpds", 8871 - "rusqlite", 8872 - "safe_arith", 8873 - "serde", 8874 - "serde_json", 8875 - "serde_yaml", 8876 - "slog", 8877 - "smallvec", 8878 - "ssz_types", 8879 - "state_processing", 8880 - "superstruct", 8881 - "swap_or_not_shuffle", 8882 - "tempfile", 8883 - "test_random_derive", 8884 - "tokio", 8885 - "tree_hash", 8886 - "tree_hash_derive", 8887 - ] 8888 - 8889 - [[package]] 8890 - name = "ucd-trie" 8891 - version = "0.1.6" 8892 - source = "registry+https://github.com/rust-lang/crates.io-index" 8893 - checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 8894 - 8895 - [[package]] 8896 - name = "uint" 8897 - version = "0.9.5" 8898 - source = "registry+https://github.com/rust-lang/crates.io-index" 8899 - checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52" 8900 - dependencies = [ 8901 - "arbitrary", 8902 - "byteorder", 8903 - "crunchy", 8904 - "hex", 8905 - "static_assertions", 8906 - ] 8907 - 8908 - [[package]] 8909 - name = "unarray" 8910 - version = "0.1.4" 8911 - source = "registry+https://github.com/rust-lang/crates.io-index" 8912 - checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 8913 - 8914 - [[package]] 8915 - name = "unescape" 8916 - version = "0.1.0" 8917 - source = "registry+https://github.com/rust-lang/crates.io-index" 8918 - checksum = "ccb97dac3243214f8d8507998906ca3e2e0b900bf9bf4870477f125b82e68f6e" 8919 - 8920 - [[package]] 8921 - name = "unicase" 8922 - version = "2.7.0" 8923 - source = "registry+https://github.com/rust-lang/crates.io-index" 8924 - checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 8925 - dependencies = [ 8926 - "version_check", 8927 - ] 8928 - 8929 - [[package]] 8930 - name = "unicode-bidi" 8931 - version = "0.3.15" 8932 - source = "registry+https://github.com/rust-lang/crates.io-index" 8933 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 8934 - 8935 - [[package]] 8936 - name = "unicode-ident" 8937 - version = "1.0.12" 8938 - source = "registry+https://github.com/rust-lang/crates.io-index" 8939 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 8940 - 8941 - [[package]] 8942 - name = "unicode-normalization" 8943 - version = "0.1.23" 8944 - source = "registry+https://github.com/rust-lang/crates.io-index" 8945 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 8946 - dependencies = [ 8947 - "tinyvec", 8948 - ] 8949 - 8950 - [[package]] 8951 - name = "unicode-properties" 8952 - version = "0.1.1" 8953 - source = "registry+https://github.com/rust-lang/crates.io-index" 8954 - checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291" 8955 - 8956 - [[package]] 8957 - name = "unicode-xid" 8958 - version = "0.2.4" 8959 - source = "registry+https://github.com/rust-lang/crates.io-index" 8960 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 8961 - 8962 - [[package]] 8963 - name = "universal-hash" 8964 - version = "0.4.0" 8965 - source = "registry+https://github.com/rust-lang/crates.io-index" 8966 - checksum = "8326b2c654932e3e4f9196e69d08fdf7cfd718e1dc6f66b347e6024a0c961402" 8967 - dependencies = [ 8968 - "generic-array", 8969 - "subtle", 8970 - ] 8971 - 8972 - [[package]] 8973 - name = "universal-hash" 8974 - version = "0.5.1" 8975 - source = "registry+https://github.com/rust-lang/crates.io-index" 8976 - checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 8977 - dependencies = [ 8978 - "crypto-common", 8979 - "subtle", 8980 - ] 8981 - 8982 - [[package]] 8983 - name = "unsafe-libyaml" 8984 - version = "0.2.11" 8985 - source = "registry+https://github.com/rust-lang/crates.io-index" 8986 - checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" 8987 - 8988 - [[package]] 8989 - name = "unsigned-varint" 8990 - version = "0.7.2" 8991 - source = "registry+https://github.com/rust-lang/crates.io-index" 8992 - checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" 8993 - dependencies = [ 8994 - "asynchronous-codec 0.6.2", 8995 - "bytes", 8996 - ] 8997 - 8998 - [[package]] 8999 - name = "unsigned-varint" 9000 - version = "0.8.0" 9001 - source = "registry+https://github.com/rust-lang/crates.io-index" 9002 - checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 9003 - dependencies = [ 9004 - "bytes", 9005 - "tokio-util", 9006 - ] 9007 - 9008 - [[package]] 9009 - name = "untrusted" 9010 - version = "0.7.1" 9011 - source = "registry+https://github.com/rust-lang/crates.io-index" 9012 - checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 9013 - 9014 - [[package]] 9015 - name = "untrusted" 9016 - version = "0.9.0" 9017 - source = "registry+https://github.com/rust-lang/crates.io-index" 9018 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 9019 - 9020 - [[package]] 9021 - name = "unused_port" 9022 - version = "0.1.0" 9023 - dependencies = [ 9024 - "lazy_static", 9025 - "lru_cache", 9026 - "parking_lot 0.12.3", 9027 - ] 9028 - 9029 - [[package]] 9030 - name = "url" 9031 - version = "2.5.2" 9032 - source = "registry+https://github.com/rust-lang/crates.io-index" 9033 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 9034 - dependencies = [ 9035 - "form_urlencoded", 9036 - "idna 0.5.0", 9037 - "percent-encoding", 9038 - ] 9039 - 9040 - [[package]] 9041 - name = "utf8parse" 9042 - version = "0.2.2" 9043 - source = "registry+https://github.com/rust-lang/crates.io-index" 9044 - checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 9045 - 9046 - [[package]] 9047 - name = "uuid" 9048 - version = "0.8.2" 9049 - source = "registry+https://github.com/rust-lang/crates.io-index" 9050 - checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 9051 - dependencies = [ 9052 - "getrandom", 9053 - "serde", 9054 - ] 9055 - 9056 - [[package]] 9057 - name = "validator_client" 9058 - version = "0.3.5" 9059 - dependencies = [ 9060 - "account_utils", 9061 - "bincode", 9062 - "bls", 9063 - "clap", 9064 - "clap_utils", 9065 - "deposit_contract", 9066 - "directory", 9067 - "dirs", 9068 - "environment", 9069 - "eth2", 9070 - "eth2_keystore", 9071 - "ethereum_serde_utils", 9072 - "fdlimit", 9073 - "filesystem", 9074 - "futures", 9075 - "hex", 9076 - "hyper 1.4.1", 9077 - "itertools 0.10.5", 9078 - "lazy_static", 9079 - "libsecp256k1", 9080 - "lighthouse_metrics", 9081 - "lighthouse_version", 9082 - "lockfile", 9083 - "logging", 9084 - "malloc_utils", 9085 - "monitoring_api", 9086 - "parking_lot 0.12.3", 9087 - "rand", 9088 - "reqwest", 9089 - "ring 0.16.20", 9090 - "safe_arith", 9091 - "sensitive_url", 9092 - "serde", 9093 - "serde_json", 9094 - "slashing_protection", 9095 - "slog", 9096 - "slot_clock", 9097 - "strum", 9098 - "sysinfo", 9099 - "system_health", 9100 - "task_executor", 9101 - "tempfile", 9102 - "tokio", 9103 - "tokio-stream", 9104 - "tree_hash", 9105 - "types", 9106 - "url", 9107 - "validator_dir", 9108 - "warp", 9109 - "warp_utils", 9110 - ] 9111 - 9112 - [[package]] 9113 - name = "validator_dir" 9114 - version = "0.1.0" 9115 - dependencies = [ 9116 - "bls", 9117 - "deposit_contract", 9118 - "derivative", 9119 - "directory", 9120 - "eth2_keystore", 9121 - "filesystem", 9122 - "hex", 9123 - "lockfile", 9124 - "rand", 9125 - "tempfile", 9126 - "tree_hash", 9127 - "types", 9128 - ] 9129 - 9130 - [[package]] 9131 - name = "validator_manager" 9132 - version = "0.1.0" 9133 - dependencies = [ 9134 - "account_utils", 9135 - "clap", 9136 - "clap_utils", 9137 - "environment", 9138 - "eth2", 9139 - "eth2_network_config", 9140 - "eth2_wallet", 9141 - "ethereum_serde_utils", 9142 - "hex", 9143 - "regex", 9144 - "serde", 9145 - "serde_json", 9146 - "tempfile", 9147 - "tokio", 9148 - "tree_hash", 9149 - "types", 9150 - "validator_client", 9151 - ] 9152 - 9153 - [[package]] 9154 - name = "valuable" 9155 - version = "0.1.0" 9156 - source = "registry+https://github.com/rust-lang/crates.io-index" 9157 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 9158 - 9159 - [[package]] 9160 - name = "vcpkg" 9161 - version = "0.2.15" 9162 - source = "registry+https://github.com/rust-lang/crates.io-index" 9163 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 9164 - 9165 - [[package]] 9166 - name = "vec_map" 9167 - version = "0.8.2" 9168 - source = "registry+https://github.com/rust-lang/crates.io-index" 9169 - checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 9170 - 9171 - [[package]] 9172 - name = "version_check" 9173 - version = "0.9.4" 9174 - source = "registry+https://github.com/rust-lang/crates.io-index" 9175 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 9176 - 9177 - [[package]] 9178 - name = "void" 9179 - version = "1.0.2" 9180 - source = "registry+https://github.com/rust-lang/crates.io-index" 9181 - checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" 9182 - 9183 - [[package]] 9184 - name = "wait-timeout" 9185 - version = "0.2.0" 9186 - source = "registry+https://github.com/rust-lang/crates.io-index" 9187 - checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 9188 - dependencies = [ 9189 - "libc", 9190 - ] 9191 - 9192 - [[package]] 9193 - name = "walkdir" 9194 - version = "2.5.0" 9195 - source = "registry+https://github.com/rust-lang/crates.io-index" 9196 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 9197 - dependencies = [ 9198 - "same-file", 9199 - "winapi-util", 9200 - ] 9201 - 9202 - [[package]] 9203 - name = "want" 9204 - version = "0.3.1" 9205 - source = "registry+https://github.com/rust-lang/crates.io-index" 9206 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 9207 - dependencies = [ 9208 - "try-lock", 9209 - ] 9210 - 9211 - [[package]] 9212 - name = "warp" 9213 - version = "0.3.7" 9214 - source = "registry+https://github.com/rust-lang/crates.io-index" 9215 - checksum = "4378d202ff965b011c64817db11d5829506d3404edeadb61f190d111da3f231c" 9216 - dependencies = [ 9217 - "bytes", 9218 - "futures-channel", 9219 - "futures-util", 9220 - "headers", 9221 - "http 0.2.12", 9222 - "hyper 0.14.30", 9223 - "log", 9224 - "mime", 9225 - "mime_guess", 9226 - "percent-encoding", 9227 - "pin-project", 9228 - "rustls-pemfile 2.1.2", 9229 - "scoped-tls", 9230 - "serde", 9231 - "serde_json", 9232 - "serde_urlencoded", 9233 - "tokio", 9234 - "tokio-rustls 0.25.0", 9235 - "tokio-util", 9236 - "tower-service", 9237 - "tracing", 9238 - ] 9239 - 9240 - [[package]] 9241 - name = "warp_utils" 9242 - version = "0.1.0" 9243 - dependencies = [ 9244 - "beacon_chain", 9245 - "bytes", 9246 - "eth2", 9247 - "headers", 9248 - "lazy_static", 9249 - "lighthouse_metrics", 9250 - "safe_arith", 9251 - "serde", 9252 - "serde_array_query", 9253 - "serde_json", 9254 - "state_processing", 9255 - "tokio", 9256 - "types", 9257 - "warp", 9258 - ] 9259 - 9260 - [[package]] 9261 - name = "wasi" 9262 - version = "0.11.0+wasi-snapshot-preview1" 9263 - source = "registry+https://github.com/rust-lang/crates.io-index" 9264 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 9265 - 9266 - [[package]] 9267 - name = "wasite" 9268 - version = "0.1.0" 9269 - source = "registry+https://github.com/rust-lang/crates.io-index" 9270 - checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 9271 - 9272 - [[package]] 9273 - name = "wasm-bindgen" 9274 - version = "0.2.92" 9275 - source = "registry+https://github.com/rust-lang/crates.io-index" 9276 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 9277 - dependencies = [ 9278 - "cfg-if", 9279 - "wasm-bindgen-macro", 9280 - ] 9281 - 9282 - [[package]] 9283 - name = "wasm-bindgen-backend" 9284 - version = "0.2.92" 9285 - source = "registry+https://github.com/rust-lang/crates.io-index" 9286 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 9287 - dependencies = [ 9288 - "bumpalo", 9289 - "log", 9290 - "once_cell", 9291 - "proc-macro2", 9292 - "quote", 9293 - "syn 2.0.72", 9294 - "wasm-bindgen-shared", 9295 - ] 9296 - 9297 - [[package]] 9298 - name = "wasm-bindgen-futures" 9299 - version = "0.4.42" 9300 - source = "registry+https://github.com/rust-lang/crates.io-index" 9301 - checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 9302 - dependencies = [ 9303 - "cfg-if", 9304 - "js-sys", 9305 - "wasm-bindgen", 9306 - "web-sys", 9307 - ] 9308 - 9309 - [[package]] 9310 - name = "wasm-bindgen-macro" 9311 - version = "0.2.92" 9312 - source = "registry+https://github.com/rust-lang/crates.io-index" 9313 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 9314 - dependencies = [ 9315 - "quote", 9316 - "wasm-bindgen-macro-support", 9317 - ] 9318 - 9319 - [[package]] 9320 - name = "wasm-bindgen-macro-support" 9321 - version = "0.2.92" 9322 - source = "registry+https://github.com/rust-lang/crates.io-index" 9323 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 9324 - dependencies = [ 9325 - "proc-macro2", 9326 - "quote", 9327 - "syn 2.0.72", 9328 - "wasm-bindgen-backend", 9329 - "wasm-bindgen-shared", 9330 - ] 9331 - 9332 - [[package]] 9333 - name = "wasm-bindgen-shared" 9334 - version = "0.2.92" 9335 - source = "registry+https://github.com/rust-lang/crates.io-index" 9336 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 9337 - 9338 - [[package]] 9339 - name = "wasm-streams" 9340 - version = "0.4.0" 9341 - source = "registry+https://github.com/rust-lang/crates.io-index" 9342 - checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" 9343 - dependencies = [ 9344 - "futures-util", 9345 - "js-sys", 9346 - "wasm-bindgen", 9347 - "wasm-bindgen-futures", 9348 - "web-sys", 9349 - ] 9350 - 9351 - [[package]] 9352 - name = "wasm-timer" 9353 - version = "0.2.5" 9354 - source = "registry+https://github.com/rust-lang/crates.io-index" 9355 - checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" 9356 - dependencies = [ 9357 - "futures", 9358 - "js-sys", 9359 - "parking_lot 0.11.2", 9360 - "pin-utils", 9361 - "wasm-bindgen", 9362 - "wasm-bindgen-futures", 9363 - "web-sys", 9364 - ] 9365 - 9366 - [[package]] 9367 - name = "watch" 9368 - version = "0.1.0" 9369 - dependencies = [ 9370 - "axum", 9371 - "beacon_chain", 9372 - "beacon_node", 9373 - "bls", 9374 - "clap", 9375 - "clap_utils", 9376 - "diesel", 9377 - "diesel_migrations", 9378 - "env_logger 0.9.3", 9379 - "eth2", 9380 - "http_api", 9381 - "hyper 1.4.1", 9382 - "log", 9383 - "logging", 9384 - "network", 9385 - "r2d2", 9386 - "rand", 9387 - "reqwest", 9388 - "serde", 9389 - "serde_json", 9390 - "serde_yaml", 9391 - "task_executor", 9392 - "testcontainers", 9393 - "tokio", 9394 - "tokio-postgres", 9395 - "types", 9396 - "unused_port", 9397 - "url", 9398 - ] 9399 - 9400 - [[package]] 9401 - name = "web-sys" 9402 - version = "0.3.69" 9403 - source = "registry+https://github.com/rust-lang/crates.io-index" 9404 - checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 9405 - dependencies = [ 9406 - "js-sys", 9407 - "wasm-bindgen", 9408 - ] 9409 - 9410 - [[package]] 9411 - name = "web-time" 9412 - version = "1.1.0" 9413 - source = "registry+https://github.com/rust-lang/crates.io-index" 9414 - checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 9415 - dependencies = [ 9416 - "js-sys", 9417 - "wasm-bindgen", 9418 - ] 9419 - 9420 - [[package]] 9421 - name = "web3signer_tests" 9422 - version = "0.1.0" 9423 - dependencies = [ 9424 - "account_utils", 9425 - "async-channel", 9426 - "environment", 9427 - "eth2_keystore", 9428 - "eth2_network_config", 9429 - "futures", 9430 - "lazy_static", 9431 - "parking_lot 0.12.3", 9432 - "reqwest", 9433 - "serde", 9434 - "serde_json", 9435 - "serde_yaml", 9436 - "slot_clock", 9437 - "task_executor", 9438 - "tempfile", 9439 - "tokio", 9440 - "types", 9441 - "url", 9442 - "validator_client", 9443 - "zip", 9444 - ] 9445 - 9446 - [[package]] 9447 - name = "webpki-roots" 9448 - version = "0.25.4" 9449 - source = "registry+https://github.com/rust-lang/crates.io-index" 9450 - checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 9451 - 9452 - [[package]] 9453 - name = "whoami" 9454 - version = "1.5.1" 9455 - source = "registry+https://github.com/rust-lang/crates.io-index" 9456 - checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9" 9457 - dependencies = [ 9458 - "redox_syscall 0.4.1", 9459 - "wasite", 9460 - "web-sys", 9461 - ] 9462 - 9463 - [[package]] 9464 - name = "widestring" 9465 - version = "0.4.3" 9466 - source = "registry+https://github.com/rust-lang/crates.io-index" 9467 - checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c" 9468 - 9469 - [[package]] 9470 - name = "widestring" 9471 - version = "1.1.0" 9472 - source = "registry+https://github.com/rust-lang/crates.io-index" 9473 - checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" 9474 - 9475 - [[package]] 9476 - name = "winapi" 9477 - version = "0.3.9" 9478 - source = "registry+https://github.com/rust-lang/crates.io-index" 9479 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 9480 - dependencies = [ 9481 - "winapi-i686-pc-windows-gnu", 9482 - "winapi-x86_64-pc-windows-gnu", 9483 - ] 9484 - 9485 - [[package]] 9486 - name = "winapi-i686-pc-windows-gnu" 9487 - version = "0.4.0" 9488 - source = "registry+https://github.com/rust-lang/crates.io-index" 9489 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 9490 - 9491 - [[package]] 9492 - name = "winapi-util" 9493 - version = "0.1.8" 9494 - source = "registry+https://github.com/rust-lang/crates.io-index" 9495 - checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 9496 - dependencies = [ 9497 - "windows-sys 0.52.0", 9498 - ] 9499 - 9500 - [[package]] 9501 - name = "winapi-x86_64-pc-windows-gnu" 9502 - version = "0.4.0" 9503 - source = "registry+https://github.com/rust-lang/crates.io-index" 9504 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 9505 - 9506 - [[package]] 9507 - name = "windows" 9508 - version = "0.51.1" 9509 - source = "registry+https://github.com/rust-lang/crates.io-index" 9510 - checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" 9511 - dependencies = [ 9512 - "windows-core 0.51.1", 9513 - "windows-targets 0.48.5", 9514 - ] 9515 - 9516 - [[package]] 9517 - name = "windows-acl" 9518 - version = "0.3.0" 9519 - source = "registry+https://github.com/rust-lang/crates.io-index" 9520 - checksum = "177b1723986bcb4c606058e77f6e8614b51c7f9ad2face6f6fd63dd5c8b3cec3" 9521 - dependencies = [ 9522 - "field-offset", 9523 - "libc", 9524 - "widestring 0.4.3", 9525 - "winapi", 9526 - ] 9527 - 9528 - [[package]] 9529 - name = "windows-core" 9530 - version = "0.51.1" 9531 - source = "registry+https://github.com/rust-lang/crates.io-index" 9532 - checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 9533 - dependencies = [ 9534 - "windows-targets 0.48.5", 9535 - ] 9536 - 9537 - [[package]] 9538 - name = "windows-core" 9539 - version = "0.52.0" 9540 - source = "registry+https://github.com/rust-lang/crates.io-index" 9541 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 9542 - dependencies = [ 9543 - "windows-targets 0.52.6", 9544 - ] 9545 - 9546 - [[package]] 9547 - name = "windows-sys" 9548 - version = "0.45.0" 9549 - source = "registry+https://github.com/rust-lang/crates.io-index" 9550 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 9551 - dependencies = [ 9552 - "windows-targets 0.42.2", 9553 - ] 9554 - 9555 - [[package]] 9556 - name = "windows-sys" 9557 - version = "0.48.0" 9558 - source = "registry+https://github.com/rust-lang/crates.io-index" 9559 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 9560 - dependencies = [ 9561 - "windows-targets 0.48.5", 9562 - ] 9563 - 9564 - [[package]] 9565 - name = "windows-sys" 9566 - version = "0.52.0" 9567 - source = "registry+https://github.com/rust-lang/crates.io-index" 9568 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 9569 - dependencies = [ 9570 - "windows-targets 0.52.6", 9571 - ] 9572 - 9573 - [[package]] 9574 - name = "windows-targets" 9575 - version = "0.42.2" 9576 - source = "registry+https://github.com/rust-lang/crates.io-index" 9577 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 9578 - dependencies = [ 9579 - "windows_aarch64_gnullvm 0.42.2", 9580 - "windows_aarch64_msvc 0.42.2", 9581 - "windows_i686_gnu 0.42.2", 9582 - "windows_i686_msvc 0.42.2", 9583 - "windows_x86_64_gnu 0.42.2", 9584 - "windows_x86_64_gnullvm 0.42.2", 9585 - "windows_x86_64_msvc 0.42.2", 9586 - ] 9587 - 9588 - [[package]] 9589 - name = "windows-targets" 9590 - version = "0.48.5" 9591 - source = "registry+https://github.com/rust-lang/crates.io-index" 9592 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 9593 - dependencies = [ 9594 - "windows_aarch64_gnullvm 0.48.5", 9595 - "windows_aarch64_msvc 0.48.5", 9596 - "windows_i686_gnu 0.48.5", 9597 - "windows_i686_msvc 0.48.5", 9598 - "windows_x86_64_gnu 0.48.5", 9599 - "windows_x86_64_gnullvm 0.48.5", 9600 - "windows_x86_64_msvc 0.48.5", 9601 - ] 9602 - 9603 - [[package]] 9604 - name = "windows-targets" 9605 - version = "0.52.6" 9606 - source = "registry+https://github.com/rust-lang/crates.io-index" 9607 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 9608 - dependencies = [ 9609 - "windows_aarch64_gnullvm 0.52.6", 9610 - "windows_aarch64_msvc 0.52.6", 9611 - "windows_i686_gnu 0.52.6", 9612 - "windows_i686_gnullvm", 9613 - "windows_i686_msvc 0.52.6", 9614 - "windows_x86_64_gnu 0.52.6", 9615 - "windows_x86_64_gnullvm 0.52.6", 9616 - "windows_x86_64_msvc 0.52.6", 9617 - ] 9618 - 9619 - [[package]] 9620 - name = "windows_aarch64_gnullvm" 9621 - version = "0.42.2" 9622 - source = "registry+https://github.com/rust-lang/crates.io-index" 9623 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 9624 - 9625 - [[package]] 9626 - name = "windows_aarch64_gnullvm" 9627 - version = "0.48.5" 9628 - source = "registry+https://github.com/rust-lang/crates.io-index" 9629 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 9630 - 9631 - [[package]] 9632 - name = "windows_aarch64_gnullvm" 9633 - version = "0.52.6" 9634 - source = "registry+https://github.com/rust-lang/crates.io-index" 9635 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 9636 - 9637 - [[package]] 9638 - name = "windows_aarch64_msvc" 9639 - version = "0.42.2" 9640 - source = "registry+https://github.com/rust-lang/crates.io-index" 9641 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 9642 - 9643 - [[package]] 9644 - name = "windows_aarch64_msvc" 9645 - version = "0.48.5" 9646 - source = "registry+https://github.com/rust-lang/crates.io-index" 9647 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 9648 - 9649 - [[package]] 9650 - name = "windows_aarch64_msvc" 9651 - version = "0.52.6" 9652 - source = "registry+https://github.com/rust-lang/crates.io-index" 9653 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 9654 - 9655 - [[package]] 9656 - name = "windows_i686_gnu" 9657 - version = "0.42.2" 9658 - source = "registry+https://github.com/rust-lang/crates.io-index" 9659 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 9660 - 9661 - [[package]] 9662 - name = "windows_i686_gnu" 9663 - version = "0.48.5" 9664 - source = "registry+https://github.com/rust-lang/crates.io-index" 9665 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 9666 - 9667 - [[package]] 9668 - name = "windows_i686_gnu" 9669 - version = "0.52.6" 9670 - source = "registry+https://github.com/rust-lang/crates.io-index" 9671 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 9672 - 9673 - [[package]] 9674 - name = "windows_i686_gnullvm" 9675 - version = "0.52.6" 9676 - source = "registry+https://github.com/rust-lang/crates.io-index" 9677 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 9678 - 9679 - [[package]] 9680 - name = "windows_i686_msvc" 9681 - version = "0.42.2" 9682 - source = "registry+https://github.com/rust-lang/crates.io-index" 9683 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 9684 - 9685 - [[package]] 9686 - name = "windows_i686_msvc" 9687 - version = "0.48.5" 9688 - source = "registry+https://github.com/rust-lang/crates.io-index" 9689 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 9690 - 9691 - [[package]] 9692 - name = "windows_i686_msvc" 9693 - version = "0.52.6" 9694 - source = "registry+https://github.com/rust-lang/crates.io-index" 9695 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 9696 - 9697 - [[package]] 9698 - name = "windows_x86_64_gnu" 9699 - version = "0.42.2" 9700 - source = "registry+https://github.com/rust-lang/crates.io-index" 9701 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 9702 - 9703 - [[package]] 9704 - name = "windows_x86_64_gnu" 9705 - version = "0.48.5" 9706 - source = "registry+https://github.com/rust-lang/crates.io-index" 9707 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 9708 - 9709 - [[package]] 9710 - name = "windows_x86_64_gnu" 9711 - version = "0.52.6" 9712 - source = "registry+https://github.com/rust-lang/crates.io-index" 9713 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 9714 - 9715 - [[package]] 9716 - name = "windows_x86_64_gnullvm" 9717 - version = "0.42.2" 9718 - source = "registry+https://github.com/rust-lang/crates.io-index" 9719 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 9720 - 9721 - [[package]] 9722 - name = "windows_x86_64_gnullvm" 9723 - version = "0.48.5" 9724 - source = "registry+https://github.com/rust-lang/crates.io-index" 9725 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 9726 - 9727 - [[package]] 9728 - name = "windows_x86_64_gnullvm" 9729 - version = "0.52.6" 9730 - source = "registry+https://github.com/rust-lang/crates.io-index" 9731 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 9732 - 9733 - [[package]] 9734 - name = "windows_x86_64_msvc" 9735 - version = "0.42.2" 9736 - source = "registry+https://github.com/rust-lang/crates.io-index" 9737 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 9738 - 9739 - [[package]] 9740 - name = "windows_x86_64_msvc" 9741 - version = "0.48.5" 9742 - source = "registry+https://github.com/rust-lang/crates.io-index" 9743 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 9744 - 9745 - [[package]] 9746 - name = "windows_x86_64_msvc" 9747 - version = "0.52.6" 9748 - source = "registry+https://github.com/rust-lang/crates.io-index" 9749 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 9750 - 9751 - [[package]] 9752 - name = "winnow" 9753 - version = "0.5.40" 9754 - source = "registry+https://github.com/rust-lang/crates.io-index" 9755 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 9756 - dependencies = [ 9757 - "memchr", 9758 - ] 9759 - 9760 - [[package]] 9761 - name = "winnow" 9762 - version = "0.6.15" 9763 - source = "registry+https://github.com/rust-lang/crates.io-index" 9764 - checksum = "557404e450152cd6795bb558bca69e43c585055f4606e3bcae5894fc6dac9ba0" 9765 - dependencies = [ 9766 - "memchr", 9767 - ] 9768 - 9769 - [[package]] 9770 - name = "winreg" 9771 - version = "0.50.0" 9772 - source = "registry+https://github.com/rust-lang/crates.io-index" 9773 - checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 9774 - dependencies = [ 9775 - "cfg-if", 9776 - "windows-sys 0.48.0", 9777 - ] 9778 - 9779 - [[package]] 9780 - name = "ws_stream_wasm" 9781 - version = "0.7.4" 9782 - source = "registry+https://github.com/rust-lang/crates.io-index" 9783 - checksum = "7999f5f4217fe3818726b66257a4475f71e74ffd190776ad053fa159e50737f5" 9784 - dependencies = [ 9785 - "async_io_stream", 9786 - "futures", 9787 - "js-sys", 9788 - "log", 9789 - "pharos", 9790 - "rustc_version 0.4.0", 9791 - "send_wrapper", 9792 - "thiserror", 9793 - "wasm-bindgen", 9794 - "wasm-bindgen-futures", 9795 - "web-sys", 9796 - ] 9797 - 9798 - [[package]] 9799 - name = "wyz" 9800 - version = "0.2.0" 9801 - source = "registry+https://github.com/rust-lang/crates.io-index" 9802 - checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214" 9803 - 9804 - [[package]] 9805 - name = "wyz" 9806 - version = "0.5.1" 9807 - source = "registry+https://github.com/rust-lang/crates.io-index" 9808 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 9809 - dependencies = [ 9810 - "tap", 9811 - ] 9812 - 9813 - [[package]] 9814 - name = "x25519-dalek" 9815 - version = "2.0.1" 9816 - source = "registry+https://github.com/rust-lang/crates.io-index" 9817 - checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" 9818 - dependencies = [ 9819 - "curve25519-dalek", 9820 - "rand_core", 9821 - "serde", 9822 - "zeroize", 9823 - ] 9824 - 9825 - [[package]] 9826 - name = "x509-parser" 9827 - version = "0.16.0" 9828 - source = "registry+https://github.com/rust-lang/crates.io-index" 9829 - checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" 9830 - dependencies = [ 9831 - "asn1-rs", 9832 - "data-encoding", 9833 - "der-parser", 9834 - "lazy_static", 9835 - "nom", 9836 - "oid-registry", 9837 - "rusticata-macros", 9838 - "thiserror", 9839 - "time", 9840 - ] 9841 - 9842 - [[package]] 9843 - name = "xml-rs" 9844 - version = "0.8.20" 9845 - source = "registry+https://github.com/rust-lang/crates.io-index" 9846 - checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" 9847 - 9848 - [[package]] 9849 - name = "xmltree" 9850 - version = "0.10.3" 9851 - source = "registry+https://github.com/rust-lang/crates.io-index" 9852 - checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb" 9853 - dependencies = [ 9854 - "xml-rs", 9855 - ] 9856 - 9857 - [[package]] 9858 - name = "yaml-rust2" 9859 - version = "0.8.1" 9860 - source = "registry+https://github.com/rust-lang/crates.io-index" 9861 - checksum = "8902160c4e6f2fb145dbe9d6760a75e3c9522d8bf796ed7047c85919ac7115f8" 9862 - dependencies = [ 9863 - "arraydeque", 9864 - "encoding_rs", 9865 - "hashlink 0.8.4", 9866 - ] 9867 - 9868 - [[package]] 9869 - name = "yamux" 9870 - version = "0.12.1" 9871 - source = "registry+https://github.com/rust-lang/crates.io-index" 9872 - checksum = "9ed0164ae619f2dc144909a9f082187ebb5893693d8c0196e8085283ccd4b776" 9873 - dependencies = [ 9874 - "futures", 9875 - "log", 9876 - "nohash-hasher", 9877 - "parking_lot 0.12.3", 9878 - "pin-project", 9879 - "rand", 9880 - "static_assertions", 9881 - ] 9882 - 9883 - [[package]] 9884 - name = "yamux" 9885 - version = "0.13.3" 9886 - source = "registry+https://github.com/rust-lang/crates.io-index" 9887 - checksum = "a31b5e376a8b012bee9c423acdbb835fc34d45001cfa3106236a624e4b738028" 9888 - dependencies = [ 9889 - "futures", 9890 - "log", 9891 - "nohash-hasher", 9892 - "parking_lot 0.12.3", 9893 - "pin-project", 9894 - "rand", 9895 - "static_assertions", 9896 - "web-time", 9897 - ] 9898 - 9899 - [[package]] 9900 - name = "yasna" 9901 - version = "0.5.2" 9902 - source = "registry+https://github.com/rust-lang/crates.io-index" 9903 - checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" 9904 - dependencies = [ 9905 - "time", 9906 - ] 9907 - 9908 - [[package]] 9909 - name = "zerocopy" 9910 - version = "0.7.35" 9911 - source = "registry+https://github.com/rust-lang/crates.io-index" 9912 - checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 9913 - dependencies = [ 9914 - "zerocopy-derive", 9915 - ] 9916 - 9917 - [[package]] 9918 - name = "zerocopy-derive" 9919 - version = "0.7.35" 9920 - source = "registry+https://github.com/rust-lang/crates.io-index" 9921 - checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 9922 - dependencies = [ 9923 - "proc-macro2", 9924 - "quote", 9925 - "syn 2.0.72", 9926 - ] 9927 - 9928 - [[package]] 9929 - name = "zeroize" 9930 - version = "1.8.1" 9931 - source = "registry+https://github.com/rust-lang/crates.io-index" 9932 - checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 9933 - dependencies = [ 9934 - "zeroize_derive", 9935 - ] 9936 - 9937 - [[package]] 9938 - name = "zeroize_derive" 9939 - version = "1.4.2" 9940 - source = "registry+https://github.com/rust-lang/crates.io-index" 9941 - checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 9942 - dependencies = [ 9943 - "proc-macro2", 9944 - "quote", 9945 - "syn 2.0.72", 9946 - ] 9947 - 9948 - [[package]] 9949 - name = "zip" 9950 - version = "0.6.6" 9951 - source = "registry+https://github.com/rust-lang/crates.io-index" 9952 - checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 9953 - dependencies = [ 9954 - "aes 0.8.4", 9955 - "byteorder", 9956 - "bzip2", 9957 - "constant_time_eq", 9958 - "crc32fast", 9959 - "crossbeam-utils", 9960 - "flate2", 9961 - "hmac 0.12.1", 9962 - "pbkdf2 0.11.0", 9963 - "sha1", 9964 - "time", 9965 - "zstd", 9966 - ] 9967 - 9968 - [[package]] 9969 - name = "zstd" 9970 - version = "0.11.2+zstd.1.5.2" 9971 - source = "registry+https://github.com/rust-lang/crates.io-index" 9972 - checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 9973 - dependencies = [ 9974 - "zstd-safe", 9975 - ] 9976 - 9977 - [[package]] 9978 - name = "zstd-safe" 9979 - version = "5.0.2+zstd.1.5.2" 9980 - source = "registry+https://github.com/rust-lang/crates.io-index" 9981 - checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 9982 - dependencies = [ 9983 - "libc", 9984 - "zstd-sys", 9985 - ] 9986 - 9987 - [[package]] 9988 - name = "zstd-sys" 9989 - version = "2.0.12+zstd.1.5.6" 9990 - source = "registry+https://github.com/rust-lang/crates.io-index" 9991 - checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13" 9992 - dependencies = [ 9993 - "cc", 9994 - "pkg-config", 9995 - ]
+2 -12
pkgs/applications/blockchains/lighthouse/default.nix
··· 38 38 ./fix-dep-lazy_static.patch 39 39 ]; 40 40 41 - postPatch = '' 42 - cp ${./Cargo.lock} Cargo.lock 43 - ''; 44 - 45 - cargoLock = { 46 - lockFile = ./Cargo.lock; 47 - outputHashes = { 48 - "libmdbx-0.1.4" = "sha256-ONp4uPkVCN84MObjXorCZuSjnM6uFSMXK1vdJiX074o="; 49 - "lmdb-rkv-0.14.0" = "sha256-sxmguwqqcyOlfXOZogVz1OLxfJPo+Q0+UjkROkbbOCk="; 50 - "quick-protobuf-0.8.1" = "sha256-dgePLYCeoEZz5DGaLifhf3gEIPaL7XB0QT9wRKY8LJg="; 51 - }; 52 - }; 41 + cargoHash = "sha256-v/gOTbkzcwmqV8XCzkLzAl6LyshVBWxUclZxx1mr53o="; 42 + useFetchCargoVendor = true; 53 43 54 44 buildFeatures = [ "modern" "gnosis" ]; 55 45
+3 -3
pkgs/applications/blockchains/polkadot/default.nix
··· 18 18 in 19 19 rustPlatform.buildRustPackage rec { 20 20 pname = "polkadot"; 21 - version = "2412-2"; 21 + version = "2412-3"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "paritytech"; 25 25 repo = "polkadot-sdk"; 26 26 rev = "polkadot-stable${version}"; 27 - hash = "sha256-iFlC/KQaq7RoQqnlOjIwxrMBdwarrNXfKyE2b1XXfzU="; 27 + hash = "sha256-Bsy6CUDxtm5atkpp03edzWtZYuDKFdtBG6wfr+NPkng="; 28 28 29 29 # the build process of polkadot requires a .git folder in order to determine 30 30 # the git commit hash that is being built and add it to the version string. ··· 46 46 ''; 47 47 48 48 useFetchCargoVendor = true; 49 - cargoHash = "sha256-P/pNmW6vQAB4gEDaPFYJQsqUlSBSX1krcU7C6ngRk5Q="; 49 + cargoHash = "sha256-9irbcL7wBlwYkWM5goLZx6AAFCOjMSEbZ+Va69Am3pc="; 50 50 51 51 buildType = "production"; 52 52 buildAndTestSubdir = "polkadot";
+13
pkgs/applications/editors/vim/plugins/generated.nix
··· 11358 11358 meta.hydraPlatforms = [ ]; 11359 11359 }; 11360 11360 11361 + org-roam-nvim = buildVimPlugin { 11362 + pname = "org-roam.nvim"; 11363 + version = "2025-03-12"; 11364 + src = fetchFromGitHub { 11365 + owner = "chipsenkbeil"; 11366 + repo = "org-roam.nvim"; 11367 + rev = "f92b54eff931982031d5e164482d5e781bb2cd31"; 11368 + sha256 = "sha256-KEmbFGXjOlSPY8wpr5WUzD5+eCUP1hXN2Ty37smLU9M="; 11369 + }; 11370 + meta.homepage = "https://github.com/chipsenkbeil/org-roam.nvim/"; 11371 + meta.hydraPlatforms = [ ]; 11372 + }; 11373 + 11361 11374 other-nvim = buildVimPlugin { 11362 11375 pname = "other.nvim"; 11363 11376 version = "2024-11-30";
+4
pkgs/applications/editors/vim/plugins/overrides.nix
··· 2658 2658 ]; 2659 2659 }; 2660 2660 2661 + org-roam-nvim = super.org-roam-nvim.overrideAttrs { 2662 + dependencies = [ self.orgmode ]; 2663 + }; 2664 + 2661 2665 otter-nvim = super.otter-nvim.overrideAttrs { 2662 2666 dependencies = [ self.nvim-lspconfig ]; 2663 2667 };
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 871 871 https://github.com/tyru/open-browser.vim/,, 872 872 https://github.com/Almo7aya/openingh.nvim/,, 873 873 https://github.com/salkin-mada/openscad.nvim/,HEAD, 874 + https://github.com/chipsenkbeil/org-roam.nvim/,HEAD, 874 875 https://github.com/rgroli/other.nvim/,HEAD, 875 876 https://github.com/jmbuhr/otter.nvim/,, 876 877 https://github.com/hedyhli/outline.nvim/,HEAD,
+5 -4
pkgs/applications/networking/compactor/default.nix
··· 5 5 asciidoctor, 6 6 autoreconfHook, 7 7 pkg-config, 8 - boost, 8 + boost186, 9 9 libctemplate, 10 10 libmaxminddb, 11 11 libpcap, ··· 47 47 pkg-config 48 48 ]; 49 49 buildInputs = [ 50 - boost 50 + boost186 51 51 libctemplate 52 52 libmaxminddb 53 53 libpcap ··· 69 69 ''; 70 70 71 71 configureFlags = [ 72 - "--with-boost-libdir=${boost.out}/lib" 73 - "--with-boost=${boost.dev}" 72 + "--with-boost-libdir=${boost186.out}/lib" 73 + "--with-boost=${boost186.dev}" 74 74 ]; 75 75 enableParallelBuilding = true; 76 + enableParallelInstalling = false; # race conditions when installing 76 77 77 78 doCheck = !stdenv.hostPlatform.isDarwin; # check-dnstap.sh failing on Darwin 78 79 nativeCheckInputs = [
+2
pkgs/applications/networking/mailreaders/astroid/default.nix
··· 101 101 ]; 102 102 license = licenses.gpl3Plus; 103 103 platforms = platforms.linux; 104 + # error: 'is_regular' was not declared in this scope 105 + broken = true; 104 106 }; 105 107 }
+2
pkgs/applications/networking/sniffers/qtwirediff/default.nix
··· 57 57 homepage = "https://github.com/aaptel/qtwirediff"; 58 58 license = lib.licenses.gpl3Plus; 59 59 maintainers = [ ]; 60 + # error: assignment of member 'trivial' in read-only object 61 + broken = true; 60 62 }; 61 63 }
+81 -34
pkgs/applications/office/ledger-web/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - backports (3.14.0) 5 - database_cleaner (1.7.0) 6 - diff-lcs (1.3) 4 + activemodel (8.0.2) 5 + activesupport (= 8.0.2) 6 + activerecord (8.0.2) 7 + activemodel (= 8.0.2) 8 + activesupport (= 8.0.2) 9 + timeout (>= 0.4.0) 10 + activesupport (8.0.2) 11 + base64 12 + benchmark (>= 0.3) 13 + bigdecimal 14 + concurrent-ruby (~> 1.0, >= 1.3.1) 15 + connection_pool (>= 2.2.5) 16 + drb 17 + i18n (>= 1.6, < 2) 18 + logger (>= 1.4.2) 19 + minitest (>= 5.1) 20 + securerandom (>= 0.3) 21 + tzinfo (~> 2.0, >= 2.0.5) 22 + uri (>= 0.13.1) 23 + base64 (0.2.0) 24 + benchmark (0.4.0) 25 + bigdecimal (3.1.9) 26 + concurrent-ruby (1.3.5) 27 + connection_pool (2.5.0) 28 + database_cleaner (2.1.0) 29 + database_cleaner-active_record (>= 2, < 3) 30 + database_cleaner-active_record (2.2.0) 31 + activerecord (>= 5.a) 32 + database_cleaner-core (~> 2.0.0) 33 + database_cleaner-core (2.0.1) 34 + diff-lcs (1.6.0) 7 35 directory_watcher (1.5.1) 36 + drb (2.2.1) 37 + i18n (1.14.7) 38 + concurrent-ruby (~> 1.0) 8 39 ledger_web (1.5.2) 9 40 database_cleaner 10 41 directory_watcher (~> 1.5.1) ··· 15 46 sinatra 16 47 sinatra-contrib 17 48 sinatra-session 18 - multi_json (1.13.1) 19 - mustermann (1.0.3) 20 - pg (1.1.4) 21 - rack (2.0.7) 22 - rack-protection (2.0.5) 23 - rack 24 - rspec (3.8.0) 25 - rspec-core (~> 3.8.0) 26 - rspec-expectations (~> 3.8.0) 27 - rspec-mocks (~> 3.8.0) 28 - rspec-core (3.8.0) 29 - rspec-support (~> 3.8.0) 30 - rspec-expectations (3.8.3) 49 + logger (1.6.6) 50 + minitest (5.25.4) 51 + multi_json (1.15.0) 52 + mustermann (3.0.3) 53 + ruby2_keywords (~> 0.0.1) 54 + pg (1.5.9) 55 + rack (3.1.12) 56 + rack-protection (4.1.1) 57 + base64 (>= 0.1.0) 58 + logger (>= 1.6.0) 59 + rack (>= 3.0.0, < 4) 60 + rack-session (2.1.0) 61 + base64 (>= 0.1.0) 62 + rack (>= 3.0.0) 63 + rspec (3.13.0) 64 + rspec-core (~> 3.13.0) 65 + rspec-expectations (~> 3.13.0) 66 + rspec-mocks (~> 3.13.0) 67 + rspec-core (3.13.3) 68 + rspec-support (~> 3.13.0) 69 + rspec-expectations (3.13.3) 31 70 diff-lcs (>= 1.2.0, < 2.0) 32 - rspec-support (~> 3.8.0) 33 - rspec-mocks (3.8.0) 71 + rspec-support (~> 3.13.0) 72 + rspec-mocks (3.13.2) 34 73 diff-lcs (>= 1.2.0, < 2.0) 35 - rspec-support (~> 3.8.0) 36 - rspec-support (3.8.0) 37 - sequel (5.19.0) 38 - sinatra (2.0.5) 39 - mustermann (~> 1.0) 40 - rack (~> 2.0) 41 - rack-protection (= 2.0.5) 74 + rspec-support (~> 3.13.0) 75 + rspec-support (3.13.2) 76 + ruby2_keywords (0.0.5) 77 + securerandom (0.4.1) 78 + sequel (5.90.0) 79 + bigdecimal 80 + sinatra (4.1.1) 81 + logger (>= 1.6.0) 82 + mustermann (~> 3.0) 83 + rack (>= 3.0.0, < 4) 84 + rack-protection (= 4.1.1) 85 + rack-session (>= 2.0.0, < 3) 42 86 tilt (~> 2.0) 43 - sinatra-contrib (2.0.5) 44 - backports (>= 2.8.2) 45 - multi_json 46 - mustermann (~> 1.0) 47 - rack-protection (= 2.0.5) 48 - sinatra (= 2.0.5) 49 - tilt (>= 1.3, < 3) 87 + sinatra-contrib (4.1.1) 88 + multi_json (>= 0.0.2) 89 + mustermann (~> 3.0) 90 + rack-protection (= 4.1.1) 91 + sinatra (= 4.1.1) 92 + tilt (~> 2.0) 50 93 sinatra-session (1.0.0) 51 94 sinatra (>= 1.0) 52 - tilt (2.0.9) 95 + tilt (2.6.0) 96 + timeout (0.4.3) 97 + tzinfo (2.0.6) 98 + concurrent-ruby (~> 1.0) 99 + uri (1.0.3) 53 100 54 101 PLATFORMS 55 102 ruby ··· 58 105 ledger_web 59 106 60 107 BUNDLED WITH 61 - 2.1.4 108 + 2.6.2
+265 -37
pkgs/applications/office/ledger-web/gemset.nix
··· 1 1 { 2 - backports = { 2 + activemodel = { 3 + dependencies = [ "activesupport" ]; 4 + groups = [ "default" ]; 5 + platforms = [ ]; 6 + source = { 7 + remotes = [ "https://rubygems.org" ]; 8 + sha256 = "0v35y2jzqlfy1wnrzlzj2cxylhnz09vykaa1l2dnkq7sl5zzpq8a"; 9 + type = "gem"; 10 + }; 11 + version = "8.0.2"; 12 + }; 13 + activerecord = { 14 + dependencies = [ 15 + "activemodel" 16 + "activesupport" 17 + "timeout" 18 + ]; 19 + groups = [ "default" ]; 20 + platforms = [ ]; 21 + source = { 22 + remotes = [ "https://rubygems.org" ]; 23 + sha256 = "02nrya34qviawdkssyahb3mg08kqdc461b320a6ikr245jwp0d3r"; 24 + type = "gem"; 25 + }; 26 + version = "8.0.2"; 27 + }; 28 + activesupport = { 29 + dependencies = [ 30 + "base64" 31 + "benchmark" 32 + "bigdecimal" 33 + "concurrent-ruby" 34 + "connection_pool" 35 + "drb" 36 + "i18n" 37 + "logger" 38 + "minitest" 39 + "securerandom" 40 + "tzinfo" 41 + "uri" 42 + ]; 43 + groups = [ "default" ]; 44 + platforms = [ ]; 45 + source = { 46 + remotes = [ "https://rubygems.org" ]; 47 + sha256 = "0pm40y64wfc50a9sj87kxvil2102rmpdcbv82zf0r40vlgdwsrc5"; 48 + type = "gem"; 49 + }; 50 + version = "8.0.2"; 51 + }; 52 + base64 = { 53 + groups = [ "default" ]; 54 + platforms = [ ]; 55 + source = { 56 + remotes = [ "https://rubygems.org" ]; 57 + sha256 = "01qml0yilb9basf7is2614skjp8384h2pycfx86cr8023arfj98g"; 58 + type = "gem"; 59 + }; 60 + version = "0.2.0"; 61 + }; 62 + benchmark = { 63 + groups = [ "default" ]; 64 + platforms = [ ]; 65 + source = { 66 + remotes = [ "https://rubygems.org" ]; 67 + sha256 = "0jl71qcgamm96dzyqk695j24qszhcc7liw74qc83fpjljp2gh4hg"; 68 + type = "gem"; 69 + }; 70 + version = "0.4.0"; 71 + }; 72 + bigdecimal = { 73 + groups = [ "default" ]; 74 + platforms = [ ]; 75 + source = { 76 + remotes = [ "https://rubygems.org" ]; 77 + sha256 = "1k6qzammv9r6b2cw3siasaik18i6wjc5m0gw5nfdc6jj64h79z1g"; 78 + type = "gem"; 79 + }; 80 + version = "3.1.9"; 81 + }; 82 + concurrent-ruby = { 3 83 groups = [ "default" ]; 4 84 platforms = [ ]; 5 85 source = { 6 86 remotes = [ "https://rubygems.org" ]; 7 - sha256 = "17j5pf0b69bkn043wi4xd530ky53jbbnljr4bsjzlm4k8bzlknfn"; 87 + sha256 = "1ipbrgvf0pp6zxdk5ascp6i29aybz2bx9wdrlchjmpx6mhvkwfw1"; 8 88 type = "gem"; 9 89 }; 10 - version = "3.14.0"; 90 + version = "1.3.5"; 91 + }; 92 + connection_pool = { 93 + groups = [ "default" ]; 94 + platforms = [ ]; 95 + source = { 96 + remotes = [ "https://rubygems.org" ]; 97 + sha256 = "1z7bag6zb2vwi7wp2bkdkmk7swkj6zfnbsnc949qq0wfsgw94fr3"; 98 + type = "gem"; 99 + }; 100 + version = "2.5.0"; 11 101 }; 12 102 database_cleaner = { 103 + dependencies = [ "database_cleaner-active_record" ]; 13 104 groups = [ "default" ]; 14 105 platforms = [ ]; 15 106 source = { 16 107 remotes = [ "https://rubygems.org" ]; 17 - sha256 = "05i0nf2aj70m61y3fspypdkc6d1qgibf5kav05a71b5gjz0k7y5x"; 108 + sha256 = "1kc9bp3415p1m94d54y2pjjlsx546q0w3fn65xlxlxhm7dpa5jqx"; 109 + type = "gem"; 110 + }; 111 + version = "2.1.0"; 112 + }; 113 + database_cleaner-active_record = { 114 + dependencies = [ 115 + "activerecord" 116 + "database_cleaner-core" 117 + ]; 118 + groups = [ "default" ]; 119 + platforms = [ ]; 120 + source = { 121 + remotes = [ "https://rubygems.org" ]; 122 + sha256 = "1iz1hv2b1z7509dxvxdwzay1hhs24glxls5ldbyh688zxkcdca1j"; 123 + type = "gem"; 124 + }; 125 + version = "2.2.0"; 126 + }; 127 + database_cleaner-core = { 128 + groups = [ "default" ]; 129 + platforms = [ ]; 130 + source = { 131 + remotes = [ "https://rubygems.org" ]; 132 + sha256 = "0v44bn386ipjjh4m2kl53dal8g4d41xajn2jggnmjbhn6965fil6"; 18 133 type = "gem"; 19 134 }; 20 - version = "1.7.0"; 135 + version = "2.0.1"; 21 136 }; 22 137 diff-lcs = { 23 138 groups = [ "default" ]; 24 139 platforms = [ ]; 25 140 source = { 26 141 remotes = [ "https://rubygems.org" ]; 27 - sha256 = "18w22bjz424gzafv6nzv98h0aqkwz3d9xhm7cbr1wfbyas8zayza"; 142 + sha256 = "0bnss89lcm3b1k3xcjd35grxqz5q040d12imd73qybwnfarggrx1"; 28 143 type = "gem"; 29 144 }; 30 - version = "1.3"; 145 + version = "1.6.0"; 31 146 }; 32 147 directory_watcher = { 33 148 groups = [ "default" ]; ··· 39 154 }; 40 155 version = "1.5.1"; 41 156 }; 157 + drb = { 158 + groups = [ "default" ]; 159 + platforms = [ ]; 160 + source = { 161 + remotes = [ "https://rubygems.org" ]; 162 + sha256 = "0h5kbj9hvg5hb3c7l425zpds0vb42phvln2knab8nmazg2zp5m79"; 163 + type = "gem"; 164 + }; 165 + version = "2.2.1"; 166 + }; 167 + i18n = { 168 + dependencies = [ "concurrent-ruby" ]; 169 + groups = [ "default" ]; 170 + platforms = [ ]; 171 + source = { 172 + remotes = [ "https://rubygems.org" ]; 173 + sha256 = "03sx3ahz1v5kbqjwxj48msw3maplpp2iyzs22l4jrzrqh4zmgfnf"; 174 + type = "gem"; 175 + }; 176 + version = "1.14.7"; 177 + }; 42 178 ledger_web = { 43 179 dependencies = [ 44 180 "database_cleaner" ··· 60 196 }; 61 197 version = "1.5.2"; 62 198 }; 199 + logger = { 200 + groups = [ "default" ]; 201 + platforms = [ ]; 202 + source = { 203 + remotes = [ "https://rubygems.org" ]; 204 + sha256 = "05s008w9vy7is3njblmavrbdzyrwwc1fsziffdr58w9pwqj8sqfx"; 205 + type = "gem"; 206 + }; 207 + version = "1.6.6"; 208 + }; 209 + minitest = { 210 + groups = [ "default" ]; 211 + platforms = [ ]; 212 + source = { 213 + remotes = [ "https://rubygems.org" ]; 214 + sha256 = "0izrg03wn2yj3gd76ck7ifbm9h2kgy8kpg4fk06ckpy4bbicmwlw"; 215 + type = "gem"; 216 + }; 217 + version = "5.25.4"; 218 + }; 63 219 multi_json = { 64 220 groups = [ "default" ]; 65 221 platforms = [ ]; 66 222 source = { 67 223 remotes = [ "https://rubygems.org" ]; 68 - sha256 = "1rl0qy4inf1mp8mybfk56dfga0mvx97zwpmq5xmiwl5r770171nv"; 224 + sha256 = "0pb1g1y3dsiahavspyzkdy39j4q377009f6ix0bh1ag4nqw43l0z"; 69 225 type = "gem"; 70 226 }; 71 - version = "1.13.1"; 227 + version = "1.15.0"; 72 228 }; 73 229 mustermann = { 230 + dependencies = [ "ruby2_keywords" ]; 74 231 groups = [ "default" ]; 75 232 platforms = [ ]; 76 233 source = { 77 234 remotes = [ "https://rubygems.org" ]; 78 - sha256 = "0lycgkmnyy0bf29nnd2zql5a6pcf8sp69g9v4xw0gcfcxgpwp7i1"; 235 + sha256 = "123ycmq6pkivv29bqbv79jv2cs04xakzd0fz1lalgvfs5nxfky6i"; 79 236 type = "gem"; 80 237 }; 81 - version = "1.0.3"; 238 + version = "3.0.3"; 82 239 }; 83 240 pg = { 84 241 groups = [ "default" ]; 85 242 platforms = [ ]; 86 243 source = { 87 244 remotes = [ "https://rubygems.org" ]; 88 - sha256 = "0fmnyxcyrvgdbgq7m09whgn9i8rwfybk0w8aii1nc4g5kqw0k2jy"; 245 + sha256 = "1p2gqqrm895fzr9vi8d118zhql67bm8ydjvgqbq1crdnfggzn7kn"; 89 246 type = "gem"; 90 247 }; 91 - version = "1.1.4"; 248 + version = "1.5.9"; 92 249 }; 93 250 rack = { 94 251 groups = [ "default" ]; 95 252 platforms = [ ]; 96 253 source = { 97 254 remotes = [ "https://rubygems.org" ]; 98 - sha256 = "0z90vflxbgjy2n84r7mbyax3i2vyvvrxxrf86ljzn5rw65jgnn2i"; 255 + sha256 = "0h65a1f9gsqx2ryisdy4lrd9a9l8gdv65dcscw9ynwwjr1ak1n00"; 99 256 type = "gem"; 100 257 }; 101 - version = "2.0.7"; 258 + version = "3.1.12"; 102 259 }; 103 260 rack-protection = { 104 - dependencies = [ "rack" ]; 261 + dependencies = [ 262 + "base64" 263 + "logger" 264 + "rack" 265 + ]; 105 266 groups = [ "default" ]; 106 267 platforms = [ ]; 107 268 source = { 108 269 remotes = [ "https://rubygems.org" ]; 109 - sha256 = "15167q25rmxipqwi6hjqj3i1byi9iwl3xq9b7mdar7qiz39pmjsk"; 270 + sha256 = "0sniswjyi0yn949l776h7f67rvx5w9f04wh69z5g19vlsnjm98ji"; 110 271 type = "gem"; 111 272 }; 112 - version = "2.0.5"; 273 + version = "4.1.1"; 274 + }; 275 + rack-session = { 276 + dependencies = [ 277 + "base64" 278 + "rack" 279 + ]; 280 + groups = [ "default" ]; 281 + platforms = [ ]; 282 + source = { 283 + remotes = [ "https://rubygems.org" ]; 284 + sha256 = "1452c1bhh6fdnv17s1z65ajwh08axqnlmkhnr1qyyn2vacb3jz23"; 285 + type = "gem"; 286 + }; 287 + version = "2.1.0"; 113 288 }; 114 289 rspec = { 115 290 dependencies = [ ··· 121 296 platforms = [ ]; 122 297 source = { 123 298 remotes = [ "https://rubygems.org" ]; 124 - sha256 = "15ppasvb9qrscwlyjz67ppw1lnxiqnkzx5vkx1bd8x5n3dhikxc3"; 299 + sha256 = "14xrp8vq6i9zx37vh0yp4h9m0anx9paw200l1r5ad9fmq559346l"; 125 300 type = "gem"; 126 301 }; 127 - version = "3.8.0"; 302 + version = "3.13.0"; 128 303 }; 129 304 rspec-core = { 130 305 dependencies = [ "rspec-support" ]; ··· 132 307 platforms = [ ]; 133 308 source = { 134 309 remotes = [ "https://rubygems.org" ]; 135 - sha256 = "1p1s5bnbqp3sxk67y0fh0x884jjym527r0vgmhbm81w7aq6b7l4p"; 310 + sha256 = "1r6zbis0hhbik1ck8kh58qb37d1qwij1x1d2fy4jxkzryh3na4r5"; 136 311 type = "gem"; 137 312 }; 138 - version = "3.8.0"; 313 + version = "3.13.3"; 139 314 }; 140 315 rspec-expectations = { 141 316 dependencies = [ ··· 146 321 platforms = [ ]; 147 322 source = { 148 323 remotes = [ "https://rubygems.org" ]; 149 - sha256 = "1c4gs5ybf7km0qshdm92p38zvg32n1j2kr5fgs2icacz7xf2y6fy"; 324 + sha256 = "0n3cyrhsa75x5wwvskrrqk56jbjgdi2q1zx0irllf0chkgsmlsqf"; 150 325 type = "gem"; 151 326 }; 152 - version = "3.8.3"; 327 + version = "3.13.3"; 153 328 }; 154 329 rspec-mocks = { 155 330 dependencies = [ ··· 160 335 platforms = [ ]; 161 336 source = { 162 337 remotes = [ "https://rubygems.org" ]; 163 - sha256 = "06y508cjqycb4yfhxmb3nxn0v9xqf17qbd46l1dh4xhncinr4fyp"; 338 + sha256 = "1vxxkb2sf2b36d8ca2nq84kjf85fz4x7wqcvb8r6a5hfxxfk69r3"; 164 339 type = "gem"; 165 340 }; 166 - version = "3.8.0"; 341 + version = "3.13.2"; 167 342 }; 168 343 rspec-support = { 169 344 groups = [ "default" ]; 170 345 platforms = [ ]; 171 346 source = { 172 347 remotes = [ "https://rubygems.org" ]; 173 - sha256 = "0p3m7drixrlhvj2zpc38b11x145bvm311x6f33jjcxmvcm0wq609"; 348 + sha256 = "1v6v6xvxcpkrrsrv7v1xgf7sl0d71vcfz1cnrjflpf6r7x3a58yf"; 349 + type = "gem"; 350 + }; 351 + version = "3.13.2"; 352 + }; 353 + ruby2_keywords = { 354 + groups = [ "default" ]; 355 + platforms = [ ]; 356 + source = { 357 + remotes = [ "https://rubygems.org" ]; 358 + sha256 = "1vz322p8n39hz3b4a9gkmz9y7a5jaz41zrm2ywf31dvkqm03glgz"; 174 359 type = "gem"; 175 360 }; 176 - version = "3.8.0"; 361 + version = "0.0.5"; 362 + }; 363 + securerandom = { 364 + groups = [ "default" ]; 365 + platforms = [ ]; 366 + source = { 367 + remotes = [ "https://rubygems.org" ]; 368 + sha256 = "1cd0iriqfsf1z91qg271sm88xjnfd92b832z49p1nd542ka96lfc"; 369 + type = "gem"; 370 + }; 371 + version = "0.4.1"; 177 372 }; 178 373 sequel = { 374 + dependencies = [ "bigdecimal" ]; 179 375 groups = [ "default" ]; 180 376 platforms = [ ]; 181 377 source = { 182 378 remotes = [ "https://rubygems.org" ]; 183 - sha256 = "0lwkc9kf4jn1x1ph4mgy4saiw2dirq6fhnkpyd0zq8rj1d0nay9a"; 379 + sha256 = "1s5qhylirrmfbjhdjdfqaiksjlaqmgixl25sxd8znq8dqwqlrydz"; 184 380 type = "gem"; 185 381 }; 186 - version = "5.19.0"; 382 + version = "5.90.0"; 187 383 }; 188 384 sinatra = { 189 385 dependencies = [ 386 + "logger" 190 387 "mustermann" 191 388 "rack" 192 389 "rack-protection" 390 + "rack-session" 193 391 "tilt" 194 392 ]; 195 393 groups = [ "default" ]; 196 394 platforms = [ ]; 197 395 source = { 198 396 remotes = [ "https://rubygems.org" ]; 199 - sha256 = "1gasgn5f15myv08k10i16p326pchxjsy37pgqfw0xm66kcc5d7ry"; 397 + sha256 = "002dkzdc1xqhvz5sdnj4vb0apczhs07mnpgq4kkd5dd1ka2pp6af"; 200 398 type = "gem"; 201 399 }; 202 - version = "2.0.5"; 400 + version = "4.1.1"; 203 401 }; 204 402 sinatra-contrib = { 205 403 dependencies = [ 206 - "backports" 207 404 "multi_json" 208 405 "mustermann" 209 406 "rack-protection" ··· 214 411 platforms = [ ]; 215 412 source = { 216 413 remotes = [ "https://rubygems.org" ]; 217 - sha256 = "093blvpfy5n7s8knaav9a4pm4j7kck9zidwz942qqd4g99fnk443"; 414 + sha256 = "1giziwf8mgki581jf40zzw3dhjkkmdg3yxbrahj9krd5h24vb90y"; 218 415 type = "gem"; 219 416 }; 220 - version = "2.0.5"; 417 + version = "4.1.1"; 221 418 }; 222 419 sinatra-session = { 223 420 dependencies = [ "sinatra" ]; ··· 235 432 platforms = [ ]; 236 433 source = { 237 434 remotes = [ "https://rubygems.org" ]; 238 - sha256 = "0ca4k0clwf0rkvy7726x4nxpjxkpv67w043i39saxgldxd97zmwz"; 435 + sha256 = "0szpapi229v3scrvw1pgy0vpjm7z3qlf58m1198kxn70cs278g96"; 436 + type = "gem"; 437 + }; 438 + version = "2.6.0"; 439 + }; 440 + timeout = { 441 + groups = [ "default" ]; 442 + platforms = [ ]; 443 + source = { 444 + remotes = [ "https://rubygems.org" ]; 445 + sha256 = "03p31w5ghqfsbz5mcjzvwgkw3h9lbvbknqvrdliy8pxmn9wz02cm"; 446 + type = "gem"; 447 + }; 448 + version = "0.4.3"; 449 + }; 450 + tzinfo = { 451 + dependencies = [ "concurrent-ruby" ]; 452 + groups = [ "default" ]; 453 + platforms = [ ]; 454 + source = { 455 + remotes = [ "https://rubygems.org" ]; 456 + sha256 = "16w2g84dzaf3z13gxyzlzbf748kylk5bdgg3n1ipvkvvqy685bwd"; 239 457 type = "gem"; 240 458 }; 241 - version = "2.0.9"; 459 + version = "2.0.6"; 460 + }; 461 + uri = { 462 + groups = [ "default" ]; 463 + platforms = [ ]; 464 + source = { 465 + remotes = [ "https://rubygems.org" ]; 466 + sha256 = "04bhfvc25b07jaiaf62yrach7khhr5jlr5bx6nygg8pf11329wp9"; 467 + type = "gem"; 468 + }; 469 + version = "1.0.3"; 242 470 }; 243 471 }
+6 -6
pkgs/applications/version-management/gitlab/data.json
··· 1 1 { 2 - "version": "17.9.1", 3 - "repo_hash": "17ldwswipr82db7mrx1rjwdns2waih6ay443icyj6s815s3g56aj", 2 + "version": "17.9.2", 3 + "repo_hash": "08gkn3j4v75azb0fahlf4i8vllm5c26537li6vx0yir8ri249xzl", 4 4 "yarn_hash": "1bvv79jr6d9p33h81mc0miwc7rw3irblmcqbig8ikpb589kr09yv", 5 5 "owner": "gitlab-org", 6 6 "repo": "gitlab", 7 - "rev": "v17.9.1-ee", 7 + "rev": "v17.9.2-ee", 8 8 "passthru": { 9 - "GITALY_SERVER_VERSION": "17.9.1", 10 - "GITLAB_PAGES_VERSION": "17.9.1", 9 + "GITALY_SERVER_VERSION": "17.9.2", 10 + "GITLAB_PAGES_VERSION": "17.9.2", 11 11 "GITLAB_SHELL_VERSION": "14.40.0", 12 12 "GITLAB_ELASTICSEARCH_INDEXER_VERSION": "5.4.0", 13 - "GITLAB_WORKHORSE_VERSION": "17.9.1" 13 + "GITLAB_WORKHORSE_VERSION": "17.9.2" 14 14 } 15 15 }
+1 -1
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 5 5 buildGoModule rec { 6 6 pname = "gitlab-workhorse"; 7 7 8 - version = "17.9.1"; 8 + version = "17.9.2"; 9 9 10 10 # nixpkgs-update: no auto update 11 11 src = fetchFromGitLab {
+2 -2
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile
··· 95 95 gem 'doorkeeper-openid_connect', '~> 1.8.10', feature_category: :system_access 96 96 gem 'doorkeeper-device_authorization_grant', '~> 1.0.0', feature_category: :system_access 97 97 gem 'rexml', '~> 3.4.0', feature_category: :shared 98 - gem 'ruby-saml', '~> 1.17.0', feature_category: :system_access 98 + gem 'ruby-saml', '~> 1.18.0', path: 'vendor/gems/ruby-saml', feature_category: :system_access 99 99 gem 'omniauth', '~> 2.1.0', feature_category: :system_access 100 100 gem 'omniauth-auth0', '~> 3.1', feature_category: :system_access 101 101 gem 'omniauth-azure-activedirectory-v2', '~> 2.0', feature_category: :system_access ··· 164 164 gem 'rack-cors', '~> 2.0.1', require: 'rack/cors', feature_category: :shared 165 165 166 166 # GraphQL API 167 - gem 'graphql', '~> 2.4.1', feature_category: :api 167 + gem 'graphql', '2.4.11', path: 'vendor/gems/graphql', feature_category: :api 168 168 gem 'graphql-docs', '~> 5.0.0', group: [:development, :test], feature_category: :api 169 169 gem 'apollo_upload_server', '~> 2.1.6', feature_category: :api 170 170 gem 'graphlient', '~> 0.8.0', feature_category: :importers # Used by BulkImport feature (group::import)
+18 -9
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock
··· 171 171 grpc 172 172 173 173 PATH 174 + remote: vendor/gems/graphql 175 + specs: 176 + graphql (2.4.11) 177 + base64 178 + fiber-storage 179 + logger 180 + 181 + PATH 174 182 remote: vendor/gems/mail-smtp_pool 175 183 specs: 176 184 mail-smtp_pool (0.1.0) ··· 207 215 omniauth (~> 2.0) 208 216 209 217 PATH 218 + remote: vendor/gems/ruby-saml 219 + specs: 220 + ruby-saml (1.18.0) 221 + nokogiri (>= 1.13.10) 222 + rexml 223 + 224 + PATH 210 225 remote: vendor/gems/sidekiq-7.2.4 211 226 specs: 212 227 sidekiq (7.2.4) ··· 939 954 faraday (~> 2.0) 940 955 graphql-client 941 956 graphlyte (1.0.0) 942 - graphql (2.4.8) 943 - base64 944 - fiber-storage 945 957 graphql-client (0.23.0) 946 958 activesupport (>= 3.0) 947 959 graphql (>= 1.13.0) ··· 1703 1715 ruby-openai (3.7.0) 1704 1716 httparty (>= 0.18.1) 1705 1717 ruby-progressbar (1.11.0) 1706 - ruby-saml (1.17.0) 1707 - nokogiri (>= 1.13.10) 1708 - rexml 1709 1718 ruby-statistics (4.1.0) 1710 1719 ruby2_keywords (0.0.5) 1711 1720 rubyntlm (0.6.3) ··· 2147 2156 grape_logging (~> 1.8, >= 1.8.4) 2148 2157 graphlient (~> 0.8.0) 2149 2158 graphlyte (~> 1.0.0) 2150 - graphql (~> 2.4.1) 2159 + graphql (= 2.4.11)! 2151 2160 graphql-docs (~> 5.0.0) 2152 2161 grpc (= 1.63.0) 2153 2162 gssapi (~> 1.3.1) ··· 2298 2307 ruby-magic (~> 0.6) 2299 2308 ruby-openai (~> 3.7) 2300 2309 ruby-progressbar (~> 1.10) 2301 - ruby-saml (~> 1.17.0) 2310 + ruby-saml (~> 1.18.0)! 2302 2311 rubyzip (~> 2.3.2) 2303 2312 rugged (~> 1.6) 2304 2313 sanitize (~> 6.0.2) ··· 2360 2369 yajl-ruby (~> 1.4.3) 2361 2370 2362 2371 BUNDLED WITH 2363 - 2.5.22 2372 + 2.6.2
+7 -9
pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix
··· 2935 2935 version = "1.0.0"; 2936 2936 }; 2937 2937 graphql = { 2938 - dependencies = ["base64" "fiber-storage"]; 2938 + dependencies = ["base64" "fiber-storage" "logger"]; 2939 2939 groups = ["default" "development" "test"]; 2940 2940 platforms = []; 2941 2941 source = { 2942 - remotes = ["https://rubygems.org"]; 2943 - sha256 = "1dbg7xp1jgcfnmpvv8xcpzxandjkhqpsfybiwipz0sj7br685zzn"; 2944 - type = "gem"; 2942 + path = "${src}/vendor/gems/graphql"; 2943 + type = "path"; 2945 2944 }; 2946 - version = "2.4.8"; 2945 + version = "2.4.11"; 2947 2946 }; 2948 2947 graphql-client = { 2949 2948 dependencies = ["activesupport" "graphql"]; ··· 6096 6095 groups = ["default"]; 6097 6096 platforms = []; 6098 6097 source = { 6099 - remotes = ["https://rubygems.org"]; 6100 - sha256 = "1adq06m684gnpjp6qyb8shgj8jjy2npcfg7y6mg2ab9ilfdq6684"; 6101 - type = "gem"; 6098 + path = "${src}/vendor/gems/ruby-saml"; 6099 + type = "path"; 6102 6100 }; 6103 - version = "1.17.0"; 6101 + version = "1.18.0"; 6104 6102 }; 6105 6103 ruby-statistics = { 6106 6104 groups = ["default" "test"];
+3 -3
pkgs/by-name/an/ananicy-rules-cachyos/package.nix
··· 7 7 8 8 stdenvNoCC.mkDerivation { 9 9 pname = "ananicy-rules-cachyos"; 10 - version = "0-unstable-2025-02-28"; 10 + version = "0-unstable-2025-03-13"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "CachyOS"; 14 14 repo = "ananicy-rules"; 15 - rev = "2cf86e02f4e2b15df6fe0e2af80f36433e120051"; 16 - hash = "sha256-Nu9SN+yXA85JQ9csYVbI8hDEfC6ih5/ciy21m+TPpJQ="; 15 + rev = "8d62f1554af7ef21d54afc1c3b8b5d31349f7a30"; 16 + hash = "sha256-vdDpoPFcVPDqykJIOHYPyFAWtRKSP6NJ2MNn8Hcislc="; 17 17 }; 18 18 19 19 dontConfigure = true;
+35
pkgs/by-name/ap/apio-udev-rules/package.nix
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + }: 6 + 7 + stdenvNoCC.mkDerivation (finalAttrs: { 8 + pname = "apio-udev-rules"; 9 + version = "0.9.5"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "FPGAwars"; 13 + repo = "apio"; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-VU4tOszGkw20DWW2SerFsnjFiSkrSwqBcwosGnHJfU8="; 16 + }; 17 + 18 + dontBuild = true; 19 + 20 + # 80-* renamed to 70-* for uaccess TAG 21 + installPhase = '' 22 + runHook preInstall 23 + install -D apio/resources/80-fpga-ftdi.rules $out/lib/udev/rules.d/70-fpga-ftdi.rules 24 + install -D apio/resources/80-fpga-serial.rules $out/lib/udev/rules.d/70-fpga-serial.rules 25 + runHook postInstall 26 + ''; 27 + 28 + meta = { 29 + description = "apio udev rules list"; 30 + homepage = "https://github.com/FPGAwars/apio"; 31 + platforms = lib.platforms.linux; 32 + license = lib.licenses.gpl2Only; 33 + maintainers = with lib.maintainers; [ zh4ngx ]; 34 + }; 35 + })
+2
pkgs/by-name/bl/blueman/package.nix
··· 20 20 networkmanager, 21 21 withPulseAudio ? config.pulseaudio or stdenv.hostPlatform.isLinux, 22 22 libpulseaudio, 23 + procps, 23 24 }: 24 25 25 26 let ··· 52 53 librsvg 53 54 adwaita-icon-theme 54 55 networkmanager 56 + procps 55 57 ] 56 58 ++ pythonPath 57 59 ++ lib.optional withPulseAudio libpulseaudio;
+5 -5
pkgs/by-name/bu/bun/package.nix
··· 16 16 }: 17 17 18 18 stdenvNoCC.mkDerivation rec { 19 - version = "1.2.4"; 19 + version = "1.2.5"; 20 20 pname = "bun"; 21 21 22 22 src = passthru.sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); ··· 76 76 sources = { 77 77 "aarch64-darwin" = fetchurl { 78 78 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip"; 79 - hash = "sha256-/UcChwu7kRg2RppwOu58HH26/HzY/FgEKbot2hi7WqE="; 79 + hash = "sha256-VeZSChcuIqN9SCLyOv3pCybzaIDOPqrTSGmUGNv3iLs="; 80 80 }; 81 81 "aarch64-linux" = fetchurl { 82 82 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip"; 83 - hash = "sha256-aUobOa01YPP8fI4KxC3yd9esTyj+NzZGEEAA3f+a6Fw="; 83 + hash = "sha256-7htcq7X9uyVkB4fjKYRu9BOEyoaZ21BPRb/uAV80i1g="; 84 84 }; 85 85 "x86_64-darwin" = fetchurl { 86 86 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64-baseline.zip"; 87 - hash = "sha256-DEMsLgRWkecJwY+ML+C00tkpdO039A5Ih6ZmYyopX8w="; 87 + hash = "sha256-P/MaERH0ww2O8a2Xk74ziNAp5aEZ8JiP5PCltNSTB1M="; 88 88 }; 89 89 "x86_64-linux" = fetchurl { 90 90 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip"; 91 - hash = "sha256-ity9dM8a8H3DYH6+4yv+WlM1OxrvlRWWN4EYPVxAFYY="; 91 + hash = "sha256-iPZL7e4zD/TWMo4+kMZpvHrFMUknxgT4XjKeoqHRl5s="; 92 92 }; 93 93 }; 94 94 updateScript = writeShellScript "update-bun" ''
+14 -6
pkgs/by-name/bu/bundler/package.nix
··· 5 5 writeScript, 6 6 testers, 7 7 bundler, 8 + versionCheckHook, 8 9 }: 9 10 10 11 buildRubyGem rec { 11 12 inherit ruby; 12 13 name = "${gemName}-${version}"; 13 14 gemName = "bundler"; 14 - version = "2.5.22"; 15 - source.sha256 = "sha256-dj8w1ZjuWHQu6ikoWHVDXqciIY1N8UneNbzjfALOlo4="; 15 + version = "2.6.2"; 16 + source.sha256 = "sha256-S4l1bhsFOQ/2eEkRGaEPCXOiBFzJ/LInsCqTlrKPfXQ="; 16 17 dontPatchShebangs = true; 17 18 18 19 postFixup = '' 19 - sed -i -e "s/activate_bin_path/bin_path/g" $out/bin/bundle 20 + substituteInPlace $out/bin/bundle --replace-fail "activate_bin_path" "bin_path" 20 21 ''; 21 22 23 + nativeInstallCheckInputs = [ 24 + versionCheckHook 25 + ]; 26 + versionCheckProgram = "${placeholder "out"}/bin/bundler"; 27 + versionCheckProgramArg = [ "--version" ]; 28 + doInstallCheck = true; 29 + 22 30 passthru = { 23 31 updateScript = writeScript "gem-update-script" '' 24 32 #!/usr/bin/env nix-shell ··· 36 44 }; 37 45 }; 38 46 39 - meta = with lib; { 47 + meta = { 40 48 description = "Manage your Ruby application's gem dependencies"; 41 49 homepage = "https://bundler.io"; 42 50 changelog = "https://github.com/rubygems/rubygems/blob/bundler-v${version}/bundler/CHANGELOG.md"; 43 - license = licenses.mit; 44 - maintainers = with maintainers; [ anthonyroussel ]; 51 + license = lib.licenses.mit; 52 + maintainers = with lib.maintainers; [ anthonyroussel ]; 45 53 mainProgram = "bundler"; 46 54 }; 47 55 }
+40 -10
pkgs/by-name/ce/cewl/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 + logger (1.6.6) 4 5 mime (0.4.4) 5 - mime-types (3.3.1) 6 + mime-types (3.6.0) 7 + logger 6 8 mime-types-data (~> 3.2015) 7 - mime-types-data (3.2021.0704) 8 - mini_exiftool (2.10.2) 9 - mini_portile2 (2.5.3) 10 - nokogiri (1.11.7) 11 - mini_portile2 (~> 2.5.0) 9 + mime-types-data (3.2025.0304) 10 + mini_exiftool (2.14.0) 11 + ostruct (>= 0.6.0) 12 + pstore (>= 0.1.3) 13 + mini_portile2 (2.8.8) 14 + nokogiri (1.18.3) 15 + mini_portile2 (~> 2.8.2) 16 + racc (~> 1.4) 17 + nokogiri (1.18.3-aarch64-linux-gnu) 12 18 racc (~> 1.4) 13 - racc (1.5.2) 14 - rexml (3.2.5) 15 - rubyzip (2.3.2) 19 + nokogiri (1.18.3-aarch64-linux-musl) 20 + racc (~> 1.4) 21 + nokogiri (1.18.3-arm-linux-gnu) 22 + racc (~> 1.4) 23 + nokogiri (1.18.3-arm-linux-musl) 24 + racc (~> 1.4) 25 + nokogiri (1.18.3-arm64-darwin) 26 + racc (~> 1.4) 27 + nokogiri (1.18.3-x86_64-darwin) 28 + racc (~> 1.4) 29 + nokogiri (1.18.3-x86_64-linux-gnu) 30 + racc (~> 1.4) 31 + nokogiri (1.18.3-x86_64-linux-musl) 32 + racc (~> 1.4) 33 + ostruct (0.6.1) 34 + pstore (0.1.4) 35 + racc (1.8.1) 36 + rexml (3.4.1) 37 + rubyzip (2.4.1) 16 38 spider (0.5.4) 17 39 18 40 PLATFORMS 41 + aarch64-linux-gnu 42 + aarch64-linux-musl 43 + arm-linux-gnu 44 + arm-linux-musl 45 + arm64-darwin 19 46 ruby 47 + x86_64-darwin 48 + x86_64-linux-gnu 49 + x86_64-linux-musl 20 50 21 51 DEPENDENCIES 22 52 mime ··· 28 58 spider 29 59 30 60 BUNDLED WITH 31 - 2.1.4 61 + 2.6.2
+54 -17
pkgs/by-name/ce/cewl/gemset.nix
··· 1 1 { 2 + logger = { 3 + groups = [ "default" ]; 4 + platforms = [ ]; 5 + source = { 6 + remotes = [ "https://rubygems.org" ]; 7 + sha256 = "05s008w9vy7is3njblmavrbdzyrwwc1fsziffdr58w9pwqj8sqfx"; 8 + type = "gem"; 9 + }; 10 + version = "1.6.6"; 11 + }; 2 12 mime = { 3 13 groups = [ "default" ]; 4 14 platforms = [ ]; ··· 10 20 version = "0.4.4"; 11 21 }; 12 22 mime-types = { 13 - dependencies = [ "mime-types-data" ]; 23 + dependencies = [ 24 + "logger" 25 + "mime-types-data" 26 + ]; 14 27 groups = [ "default" ]; 15 28 platforms = [ ]; 16 29 source = { 17 30 remotes = [ "https://rubygems.org" ]; 18 - sha256 = "1zj12l9qk62anvk9bjvandpa6vy4xslil15wl6wlivyf51z773vh"; 31 + sha256 = "0r34mc3n7sxsbm9mzyzy8m3dvq7pwbryyc8m452axkj0g2axnwbg"; 19 32 type = "gem"; 20 33 }; 21 - version = "3.3.1"; 34 + version = "3.6.0"; 22 35 }; 23 36 mime-types-data = { 24 37 groups = [ "default" ]; 25 38 platforms = [ ]; 26 39 source = { 27 40 remotes = [ "https://rubygems.org" ]; 28 - sha256 = "0dlxwc75iy0dj23x824cxpvpa7c8aqcpskksrmb32j6m66h5mkcy"; 41 + sha256 = "15sh43bmq39sqa1q5l5wiazyim71m6jg572fgy5p0ba3h5c3inby"; 29 42 type = "gem"; 30 43 }; 31 - version = "3.2021.0704"; 44 + version = "3.2025.0304"; 32 45 }; 33 46 mini_exiftool = { 47 + dependencies = [ 48 + "ostruct" 49 + "pstore" 50 + ]; 34 51 groups = [ "default" ]; 35 52 platforms = [ ]; 36 53 source = { 37 54 remotes = [ "https://rubygems.org" ]; 38 - sha256 = "0ir4wigpm6nkd3f40wcjdqrhjx3l60w1hwcg143is1a95ypnvqhr"; 55 + sha256 = "0b9k99l0k2jl1jgbhrpr4q6ws366gm4zkzzyvvpxv25isxbdwnf5"; 39 56 type = "gem"; 40 57 }; 41 - version = "2.10.2"; 58 + version = "2.14.0"; 42 59 }; 43 60 mini_portile2 = { 44 61 groups = [ "default" ]; 45 62 platforms = [ ]; 46 63 source = { 47 64 remotes = [ "https://rubygems.org" ]; 48 - sha256 = "1ad0mli9rc0f17zw4ibp24dbj1y39zkykijsjmnzl4gwpg5s0j6k"; 65 + sha256 = "0x8asxl83msn815lwmb2d7q5p29p7drhjv5va0byhk60v9n16iwf"; 49 66 type = "gem"; 50 67 }; 51 - version = "2.5.3"; 68 + version = "2.8.8"; 52 69 }; 53 70 nokogiri = { 54 71 dependencies = [ ··· 59 76 platforms = [ ]; 60 77 source = { 61 78 remotes = [ "https://rubygems.org" ]; 62 - sha256 = "1vrn31385ix5k9b0yalnlzv360isv6dincbcvi8psllnwz4sjxj9"; 79 + sha256 = "0npx535cs8qc33n0lpbbwl0p9fi3a5bczn6ayqhxvknh9yqw77vb"; 80 + type = "gem"; 81 + }; 82 + version = "1.18.3"; 83 + }; 84 + ostruct = { 85 + groups = [ "default" ]; 86 + platforms = [ ]; 87 + source = { 88 + remotes = [ "https://rubygems.org" ]; 89 + sha256 = "05xqijcf80sza5pnlp1c8whdaay8x5dc13214ngh790zrizgp8q9"; 90 + type = "gem"; 91 + }; 92 + version = "0.6.1"; 93 + }; 94 + pstore = { 95 + groups = [ "default" ]; 96 + platforms = [ ]; 97 + source = { 98 + remotes = [ "https://rubygems.org" ]; 99 + sha256 = "11mvc9s72fq7bl6h3f1rcng4ffa0nbjy1fr9wpshgzn4b9zznxm2"; 63 100 type = "gem"; 64 101 }; 65 - version = "1.11.7"; 102 + version = "0.1.4"; 66 103 }; 67 104 racc = { 68 105 groups = [ "default" ]; 69 106 platforms = [ ]; 70 107 source = { 71 108 remotes = [ "https://rubygems.org" ]; 72 - sha256 = "178k7r0xn689spviqzhvazzvxfq6fyjldxb3ywjbgipbfi4s8j1g"; 109 + sha256 = "0byn0c9nkahsl93y9ln5bysq4j31q8xkf2ws42swighxd4lnjzsa"; 73 110 type = "gem"; 74 111 }; 75 - version = "1.5.2"; 112 + version = "1.8.1"; 76 113 }; 77 114 rexml = { 78 115 groups = [ "default" ]; 79 116 platforms = [ ]; 80 117 source = { 81 118 remotes = [ "https://rubygems.org" ]; 82 - sha256 = "08ximcyfjy94pm1rhcx04ny1vx2sk0x4y185gzn86yfsbzwkng53"; 119 + sha256 = "1jmbf6lf7pcyacpb939xjjpn1f84c3nw83dy3p1lwjx0l2ljfif7"; 83 120 type = "gem"; 84 121 }; 85 - version = "3.2.5"; 122 + version = "3.4.1"; 86 123 }; 87 124 rubyzip = { 88 125 groups = [ "default" ]; 89 126 platforms = [ ]; 90 127 source = { 91 128 remotes = [ "https://rubygems.org" ]; 92 - sha256 = "0grps9197qyxakbpw02pda59v45lfgbgiyw48i0mq9f2bn9y6mrz"; 129 + sha256 = "05an0wz87vkmqwcwyh5rjiaavydfn5f4q1lixcsqkphzvj7chxw5"; 93 130 type = "gem"; 94 131 }; 95 - version = "2.3.2"; 132 + version = "2.4.1"; 96 133 }; 97 134 spider = { 98 135 groups = [ "default" ];
+4 -4
pkgs/by-name/de/dependency-track/package.nix
··· 12 12 nixosTests, 13 13 }: 14 14 let 15 - version = "4.12.6"; 15 + version = "4.12.7"; 16 16 17 17 frontend = buildNpmPackage { 18 18 pname = "dependency-track-frontend"; ··· 25 25 owner = "DependencyTrack"; 26 26 repo = "frontend"; 27 27 rev = version; 28 - hash = "sha256-IcahhuWX1Ba7kmyJaNJlY1gcVHOR6uynyr7w5MMwRgo="; 28 + hash = "sha256-JuZM/IJd+6xtiC2Tq4ecArmT24D1m8J719UZG+iP2s0="; 29 29 }; 30 30 31 31 installPhase = '' ··· 33 33 cp -R ./dist $out/ 34 34 ''; 35 35 36 - npmDepsHash = "sha256-LeSKSZYtjrZ84RkhGbLEMHVi1fw7FK/137F0V4hjSCE="; 36 + npmDepsHash = "sha256-5kLtdEM0tI02ufsmJNCfZkuEJdp6wBWlGiELJ87YOyQ="; 37 37 forceGitDeps = true; 38 38 makeCacheWritable = true; 39 39 ··· 50 50 owner = "DependencyTrack"; 51 51 repo = "dependency-track"; 52 52 rev = version; 53 - hash = "sha256-4k7O5ONUqKuJ5EKXnsS1moQ4B9FDMz4ZAwBknwrdjXo="; 53 + hash = "sha256-GcA6Vv3H0gujkRYxipLg9ydk/HorNzwWkEAjKnMrHro="; 54 54 }; 55 55 56 56 patches = [
+21
pkgs/by-name/ep/epson-workforce-635-nx625-series/eps_raster_print-cast.patch
··· 1 + diff --git a/src/raster_to_epson.c b/src/raster_to_epson.c 2 + index 6e621c8..a5ca797 100644 3 + --- a/src/raster_to_epson.c 4 + +++ b/src/raster_to_epson.c 5 + @@ -438,14 +438,14 @@ static int print_page (void) 6 + break; 7 + } 8 + 9 + - if (eps_raster_print(raster_h, image_raw, pageRegion.bytesPerLine, pageRegion.width, &nraster)) { 10 + + if (eps_raster_print(raster_h, image_raw, pageRegion.bytesPerLine, pageRegion.width, (int *) &nraster)) { 11 + error = 1; 12 + break; 13 + } 14 + } 15 + 16 + // flushing page 17 + - eps_raster_print(raster_h, NULL, 0, 0, &nraster); 18 + + eps_raster_print(raster_h, NULL, 0, 0, (int *) &nraster); 19 + 20 + bAbort = (error) ? TRUE : FALSE; 21 + if (epcgEndPage (bAbort)) {
+24
pkgs/by-name/ep/epson-workforce-635-nx625-series/include-raster-helper.patch
··· 1 + diff --git a/src/pagemanager/pagemanager.c b/src/pagemanager/pagemanager.c 2 + index 029e6d3..2881585 100644 3 + --- a/src/pagemanager/pagemanager.c 4 + +++ b/src/pagemanager/pagemanager.c 5 + @@ -23,6 +23,7 @@ 6 + #include "debuglog.h" 7 + #include "memory.h" 8 + #include "raster.h" 9 + +#include "raster-helper.h" 10 + #include "pagemanager.h" 11 + 12 + extern int JobCanceled; 13 + diff --git a/src/raster_to_epson.c b/src/raster_to_epson.c 14 + index 6e621c8..6eea77c 100644 15 + --- a/src/raster_to_epson.c 16 + +++ b/src/raster_to_epson.c 17 + @@ -36,6 +36,7 @@ 18 + #include "raster.h" 19 + #include "memory.h" 20 + #include "raster_to_epson.h" 21 + +#include "raster-helper.h" 22 + #include "pagemanager.h" 23 + #include "filter_option.h" 24 +
+5
pkgs/by-name/ep/epson-workforce-635-nx625-series/package.nix
··· 44 44 done 45 45 ''; 46 46 47 + patches = [ 48 + ./eps_raster_print-cast.patch 49 + ./include-raster-helper.patch 50 + ]; 51 + 47 52 preConfigure = '' 48 53 chmod u+x configure 49 54 '';
+3 -3
pkgs/by-name/ez/eza/package.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "eza"; 18 - version = "0.20.23"; 18 + version = "0.20.24"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "eza-community"; 22 22 repo = "eza"; 23 23 rev = "v${version}"; 24 - hash = "sha256-Xak/caavqaCThrVBQV1MyJRpZrRAYs05VjcbNRWZchs="; 24 + hash = "sha256-uvMhsffNr3gJbF3jSXodQfym3JKtJ7Nvv3eHllUAj3M="; 25 25 }; 26 26 27 27 useFetchCargoVendor = true; 28 - cargoHash = "sha256-hvK19TWH1a0zQIggiPSnxzjWopxKDKJyg7LKGMc5tqo="; 28 + cargoHash = "sha256-vRttIzM6noDE6EA9y3RDmztYfxwrfYgvdmX95ryUqpA="; 29 29 30 30 nativeBuildInputs = [ 31 31 cmake
+2 -2
pkgs/by-name/gi/gitaly/package.nix
··· 7 7 }: 8 8 9 9 let 10 - version = "17.9.1"; 10 + version = "17.9.2"; 11 11 package_version = "v${lib.versions.major version}"; 12 12 gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; 13 13 ··· 21 21 owner = "gitlab-org"; 22 22 repo = "gitaly"; 23 23 rev = "v${version}"; 24 - hash = "sha256-xgNuU4m+19+FXZkL2ROx+BdyQu6cE2A7Jq2PFLNhGxc="; 24 + hash = "sha256-QoIM2I9dLFmN4dFbiFu1pWCGj4Yiel9HGUb7jYWc4Hg="; 25 25 }; 26 26 27 27 vendorHash = "sha256-ZPxlv8jc3VWS1XzIyXs3W3aCxdTiDl8+Wx82exuYBDY=";
+3 -3
pkgs/by-name/gi/gitlab-container-registry/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "gitlab-container-registry"; 10 - version = "4.16.0"; 10 + version = "4.17.1"; 11 11 rev = "v${version}-gitlab"; 12 12 13 13 # nixpkgs-update: no auto update ··· 15 15 owner = "gitlab-org"; 16 16 repo = "container-registry"; 17 17 inherit rev; 18 - hash = "sha256-PnX2pLbNqeJmvs+nFiCVW+sYVt8AJ7CEexGcYV7IN4U="; 18 + hash = "sha256-zsrNu1Xdi2143i9po8UzEOtidwWjRlR5n0bOksz75FE="; 19 19 }; 20 20 21 - vendorHash = "sha256-oNQoKn8GPJxmUzkUHGzax2/KWyI3VXLRtAvWe9B64Ds="; 21 + vendorHash = "sha256-I/umXgVm9a+0Ay3ARuaa4Dua4Zhc5p2TONHvhCt3Qtk="; 22 22 23 23 postPatch = '' 24 24 substituteInPlace health/checks/checks_test.go \
+2 -2
pkgs/by-name/gi/gitlab-pages/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "gitlab-pages"; 9 - version = "17.9.1"; 9 + version = "17.9.2"; 10 10 11 11 # nixpkgs-update: no auto update 12 12 src = fetchFromGitLab { 13 13 owner = "gitlab-org"; 14 14 repo = "gitlab-pages"; 15 15 rev = "v${version}"; 16 - hash = "sha256-M+VtrMUiXc2e8Kk6ZSLbysWLmw7rlLSTVloBz0O4gP0="; 16 + hash = "sha256-5LnFiuGq7RSPum0ctkz3YwK7ZLl9+tLJtKhxbEOs3ZE="; 17 17 }; 18 18 19 19 vendorHash = "sha256-2UtdooVoyoWr4yOPCRBAjkftn29DhJonpJSguHwfHNE=";
-64
pkgs/by-name/ha/haka/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - cmake, 6 - swig, 7 - wireshark, 8 - check, 9 - rsync, 10 - libpcap, 11 - gawk, 12 - libedit, 13 - pcre, 14 - nixosTests, 15 - }: 16 - 17 - let 18 - version = "0.3.0"; 19 - in 20 - 21 - stdenv.mkDerivation { 22 - pname = "haka"; 23 - inherit version; 24 - 25 - src = fetchurl { 26 - name = "haka_${version}_source.tar.gz"; 27 - url = "https://github.com/haka-security/haka/releases/download/v${version}/haka_${version}_source.tar.gz"; 28 - sha256 = "0dm39g3k77sa70zrjsqadidg27a6iqq61jzfdxazpllnrw4mjy4w"; 29 - }; 30 - 31 - env.NIX_CFLAGS_COMPILE = "-Wno-error"; 32 - 33 - preConfigure = '' 34 - sed -i 's,/etc,'$out'/etc,' src/haka/haka.c 35 - sed -i 's,/etc,'$out'/etc,' src/haka/CMakeLists.txt 36 - sed -i 's,/opt/haka/etc,$out/opt/haka/etc,' src/haka/haka.1 37 - sed -i 's,/etc,'$out'/etc,' doc/user/tool_suite_haka.rst 38 - ''; 39 - 40 - nativeBuildInputs = [ cmake ]; 41 - buildInputs = [ 42 - swig 43 - wireshark 44 - check 45 - rsync 46 - libpcap 47 - gawk 48 - libedit 49 - pcre 50 - ]; 51 - 52 - passthru.tests = { inherit (nixosTests) haka; }; 53 - 54 - meta = { 55 - description = "Collection of tools that allows capturing TCP/IP packets and filtering them based on Lua policy files"; 56 - homepage = "http://www.haka-security.org/"; 57 - license = lib.licenses.mpl20; 58 - maintainers = [ lib.maintainers.tvestelind ]; 59 - platforms = [ 60 - "x86_64-linux" 61 - "i686-linux" 62 - ]; # fails on aarch64 63 - }; 64 - }
+2 -2
pkgs/by-name/hb/hblock/package.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "hblock"; 14 - version = "3.5.0"; 14 + version = "3.5.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "hectorm"; 18 18 repo = "hblock"; 19 19 rev = "v${version}"; 20 - hash = "sha256-XnBmKOZBHWyjNlv+L24LYns05oGTOJnNNzM0jCwZMuI="; 20 + hash = "sha256-cke3MppQm8p8B9+5IcvCplw6CtyRbgq46wHqli7U77I="; 21 21 }; 22 22 23 23 buildInputs = [
+3 -3
pkgs/by-name/hy/hyprprop/package.nix
··· 14 14 }: 15 15 stdenvNoCC.mkDerivation (finalAttrs: { 16 16 pname = "hyprprop"; 17 - version = "0.1-unstable-2025-02-13"; 17 + version = "0.1-unstable-2025-03-11"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "hyprwm"; 21 21 repo = "contrib"; 22 - rev = "59178a657b7e09ddf82b9e79681f482b6c2f378b"; 23 - hash = "sha256-kXdVW89VJoG+W6N1u0m8hgK2VIWUAweQVzehRZwdNSo="; 22 + rev = "e14d9c5e9aea4a84c3677e0a7c73268153b15327"; 23 + hash = "sha256-SJrLVyoaQUg29fq3nNdRmYrLgiu9dtgcIVqpl8j/Teo="; 24 24 }; 25 25 26 26 sourceRoot = "${finalAttrs.src.name}/hyprprop";
+3
pkgs/by-name/js/jsduck/package.nix
··· 39 39 nicknovitski 40 40 ]; 41 41 platforms = platforms.unix; 42 + # rdiscount fails to compile with: 43 + # mktags.c:44:1: error: return type defaults to ‘int’ [-Wimplicit-int] 44 + broken = true; 42 45 }; 43 46 }
+13 -12
pkgs/by-name/li/libayatana-common/package.nix
··· 17 17 18 18 stdenv.mkDerivation (finalAttrs: { 19 19 pname = "libayatana-common"; 20 - version = "0.9.10"; 20 + version = "0.9.11"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "AyatanaIndicators"; 24 24 repo = "libayatana-common"; 25 - rev = finalAttrs.version; 26 - hash = "sha256-qi3xsnZjqSz3I7O+xPxDnI91qDIA0XFJ3tCQQF84vIg="; 25 + tag = finalAttrs.version; 26 + hash = "sha256-o5datBxGaGnvNvz8hvPY14DvjiFJdB7k93MumXuol0I="; 27 27 }; 28 28 29 29 postPatch = '' 30 30 # Queries via pkg_get_variable, can't override prefix 31 31 substituteInPlace data/CMakeLists.txt \ 32 - --replace 'pkg_get_variable(SYSTEMD_USER_UNIT_DIR systemd systemd_user_unit_dir)' 'set(SYSTEMD_USER_UNIT_DIR ''${CMAKE_INSTALL_PREFIX}/lib/systemd/user)' 32 + --replace 'pkg_get_variable(SYSTEMD_USER_UNIT_DIR systemd systemd_user_unit_dir)' 'pkg_get_variable(SYSTEMD_USER_UNIT_DIR systemd systemd_user_unit_dir DEFINE_VARIABLES prefix=''${CMAKE_INSTALL_PREFIX})' 33 33 ''; 34 34 35 35 strictDeps = true; ··· 54 54 ]; 55 55 56 56 cmakeFlags = [ 57 - "-DENABLE_TESTS=${lib.boolToString finalAttrs.finalPackage.doCheck}" 58 - "-DENABLE_LOMIRI_FEATURES=ON" 59 - "-DGSETTINGS_LOCALINSTALL=ON" 60 - "-DGSETTINGS_COMPILE=ON" 57 + (lib.cmakeBool "ENABLE_TESTS" finalAttrs.finalPackage.doCheck) 58 + (lib.cmakeBool "ENABLE_LOMIRI_FEATURES" true) 59 + (lib.cmakeBool "GSETTINGS_LOCALINSTALL" true) 60 + (lib.cmakeBool "GSETTINGS_COMPILE" true) 61 61 ]; 62 62 63 63 doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; ··· 67 67 updateScript = gitUpdater { }; 68 68 }; 69 69 70 - meta = with lib; { 70 + meta = { 71 71 description = "Common functions for Ayatana System Indicators"; 72 72 homepage = "https://github.com/AyatanaIndicators/libayatana-common"; 73 - license = licenses.gpl3Only; 74 - maintainers = with maintainers; [ OPNA2608 ]; 75 - platforms = platforms.linux; 73 + changelog = "https://github.com/AyatanaIndicators/libayatana-common/blob/${finalAttrs.version}/ChangeLog"; 74 + license = lib.licenses.gpl3Only; 75 + maintainers = with lib.maintainers; [ OPNA2608 ]; 76 + platforms = lib.platforms.linux; 76 77 pkgConfigModules = [ 77 78 "libayatana-common" 78 79 ];
+3 -3
pkgs/by-name/li/libdeltachat/package.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "libdeltachat"; 23 - version = "1.156.3"; 23 + version = "1.157.1"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "chatmail"; 27 27 repo = "core"; 28 28 tag = "v${version}"; 29 - hash = "sha256-FJTHG1NUdKcYTPrBkhu4ZiodSwpNgaGUHiHBSk/lUVA="; 29 + hash = "sha256-2jAlSHKN4QfLdaHZfhbtaJDOLAUmCHX2XRmfcCSstPI="; 30 30 }; 31 31 32 32 patches = [ ··· 36 36 cargoDeps = rustPlatform.fetchCargoVendor { 37 37 pname = "deltachat-core-rust"; 38 38 inherit version src; 39 - hash = "sha256-Kh0TU6lJ7spZIOUyJabFd1icqN9jU+kG+BpADAi0nRo="; 39 + hash = "sha256-0zdhpMfeoEi2zGbFdfpc9CDivfdIDhFH3cFP2+arpG0="; 40 40 }; 41 41 42 42 nativeBuildInputs = [
+2 -2
pkgs/by-name/li/liblcf/package.nix
··· 5 5 autoreconfHook, 6 6 pkg-config, 7 7 expat, 8 - icu, 8 + icu74, 9 9 }: 10 10 11 11 stdenv.mkDerivation rec { ··· 28 28 29 29 propagatedBuildInputs = [ 30 30 expat 31 - icu 31 + icu74 32 32 ]; 33 33 34 34 enableParallelBuilding = true;
+20 -11
pkgs/by-name/ma/mars/package.nix
··· 3 3 stdenv, 4 4 fetchFromGitHub, 5 5 cmake, 6 - libGLU, 6 + fribidi, 7 7 libGL, 8 + libGLU, 8 9 sfml, 9 - fribidi, 10 10 taglib, 11 11 }: 12 - stdenv.mkDerivation rec { 12 + stdenv.mkDerivation { 13 13 pname = "mars"; 14 - version = "unstable-17.10.2021"; 14 + version = "0-unstable-2021-10-17"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "thelaui"; 18 18 repo = "M.A.R.S."; 19 19 rev = "84664cda094efe6e49d9b1550e4f4f98c33eefa2"; 20 - sha256 = "sha256-SWLP926SyVTjn+UT1DCaJSo4Ue0RbyzImVnlNJQksS0="; 20 + hash = "sha256-SWLP926SyVTjn+UT1DCaJSo4Ue0RbyzImVnlNJQksS0="; 21 21 }; 22 + 22 23 nativeBuildInputs = [ cmake ]; 24 + 23 25 buildInputs = [ 24 - libGLU 26 + fribidi 25 27 libGL 28 + libGLU 26 29 sfml 27 - fribidi 28 30 taglib 29 31 ]; 32 + 30 33 installPhase = '' 34 + runHook preInstall 35 + 31 36 cd .. 32 37 mkdir -p "$out/share/mars/" 33 38 mkdir -p "$out/bin/" ··· 39 44 exec "$out/bin/mars.bin" "\$@" 40 45 EOF 41 46 chmod +x "$out/bin/mars" 47 + 48 + runHook postInstall 42 49 ''; 43 - meta = with lib; { 50 + 51 + meta = { 44 52 homepage = "https://mars-game.sourceforge.net/"; 45 53 description = "Game about fighting with ships in a 2D space setting"; 46 - license = licenses.gpl3Plus; 47 - maintainers = [ maintainers.astsmtl ]; 48 - platforms = platforms.linux; 54 + license = lib.licenses.gpl3Plus; 55 + maintainers = [ lib.maintainers.astsmtl ]; 56 + platforms = lib.platforms.linux; 57 + mainProgram = "mars"; 49 58 }; 50 59 }
+30 -4
pkgs/by-name/mp/mpdcron/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - mini_portile2 (2.4.0) 5 - nokogiri (1.10.3) 6 - mini_portile2 (~> 2.4.0) 4 + mini_portile2 (2.8.8) 5 + nokogiri (1.18.3) 6 + mini_portile2 (~> 2.8.2) 7 + racc (~> 1.4) 8 + nokogiri (1.18.3-aarch64-linux-gnu) 9 + racc (~> 1.4) 10 + nokogiri (1.18.3-aarch64-linux-musl) 11 + racc (~> 1.4) 12 + nokogiri (1.18.3-arm-linux-gnu) 13 + racc (~> 1.4) 14 + nokogiri (1.18.3-arm-linux-musl) 15 + racc (~> 1.4) 16 + nokogiri (1.18.3-arm64-darwin) 17 + racc (~> 1.4) 18 + nokogiri (1.18.3-x86_64-darwin) 19 + racc (~> 1.4) 20 + nokogiri (1.18.3-x86_64-linux-gnu) 21 + racc (~> 1.4) 22 + nokogiri (1.18.3-x86_64-linux-musl) 23 + racc (~> 1.4) 24 + racc (1.8.1) 7 25 8 26 PLATFORMS 27 + aarch64-linux-gnu 28 + aarch64-linux-musl 29 + arm-linux-gnu 30 + arm-linux-musl 31 + arm64-darwin 9 32 ruby 33 + x86_64-darwin 34 + x86_64-linux-gnu 35 + x86_64-linux-musl 10 36 11 37 DEPENDENCIES 12 38 nokogiri 13 39 14 40 BUNDLED WITH 15 - 2.1.4 41 + 2.6.2
+18 -18
pkgs/by-name/mp/mpdcron/gemset.nix
··· 4 4 platforms = [ ]; 5 5 source = { 6 6 remotes = [ "https://rubygems.org" ]; 7 - sha256 = "15zplpfw3knqifj9bpf604rb3wc1vhq6363pd6lvhayng8wql5vy"; 7 + sha256 = "0x8asxl83msn815lwmb2d7q5p29p7drhjv5va0byhk60v9n16iwf"; 8 8 type = "gem"; 9 9 }; 10 - version = "2.4.0"; 10 + version = "2.8.8"; 11 11 }; 12 12 nokogiri = { 13 - dependencies = [ "mini_portile2" ]; 13 + dependencies = [ 14 + "mini_portile2" 15 + "racc" 16 + ]; 14 17 groups = [ "default" ]; 15 18 platforms = [ ]; 16 19 source = { 17 20 remotes = [ "https://rubygems.org" ]; 18 - sha256 = "02bjydih0j515szfv9mls195cvpyidh6ixm7dwbl3s2sbaxxk5s4"; 21 + sha256 = "0npx535cs8qc33n0lpbbwl0p9fi3a5bczn6ayqhxvknh9yqw77vb"; 19 22 type = "gem"; 20 23 }; 21 - 22 - dontBuild = false; 23 - patches = [ 24 - # Fixes a naming conflict of nokogiri's `canonicalize` function 25 - # with one defined in glibc. This has been fixed upstream in 2020 26 - # in a much newer version (1.15.5), but through the divergence 27 - # of the affected file, the commit isn't directly applicable to 28 - # the one packaged here: 29 - # 30 - # https://github.com/sparklemotion/nokogiri/pull/2106/commits/7a74cdbe4538e964023e5a0fdca58d8af708b91e 31 - # https://github.com/sparklemotion/nokogiri/issues/2105 32 - ./fix-canonicalize-conflict-with-glibc.patch 33 - ]; 34 - version = "1.10.3"; 24 + version = "1.18.3"; 25 + }; 26 + racc = { 27 + groups = [ "default" ]; 28 + platforms = [ ]; 29 + source = { 30 + remotes = [ "https://rubygems.org" ]; 31 + sha256 = "0byn0c9nkahsl93y9ln5bysq4j31q8xkf2ws42swighxd4lnjzsa"; 32 + type = "gem"; 33 + }; 34 + version = "1.8.1"; 35 35 }; 36 36 }
+76
pkgs/by-name/op/openrw/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + 6 + # nativeBuildInputs 7 + cmake, 8 + ninja, 9 + 10 + # buildInputs 11 + SDL2, 12 + boost, 13 + bullet, 14 + ffmpeg_6, 15 + glm, 16 + libGL, 17 + libGLU, 18 + libmad, 19 + openal, 20 + sfml, 21 + 22 + unstableGitUpdater, 23 + }: 24 + 25 + stdenv.mkDerivation { 26 + version = "0-unstable-2025-01-09"; 27 + pname = "openrw"; 28 + 29 + src = fetchFromGitHub { 30 + owner = "rwengine"; 31 + repo = "openrw"; 32 + rev = "556cdfbbf1fb5b3ddef5e43f36e97976be0252fc"; 33 + fetchSubmodules = true; 34 + hash = "sha256-NYn89KGMITccVdqGo7NUS45HxXGurR9QDbVKEagjFqk="; 35 + }; 36 + 37 + postPatch = lib.optional (stdenv.cc.isClang && (lib.versionAtLeast stdenv.cc.version "9")) '' 38 + substituteInPlace cmake_configure.cmake \ 39 + --replace-fail 'target_link_libraries(rw_interface INTERFACE "stdc++fs")' "" 40 + ''; 41 + 42 + nativeBuildInputs = [ 43 + cmake 44 + ninja 45 + ]; 46 + 47 + buildInputs = [ 48 + SDL2 49 + boost 50 + bullet 51 + ffmpeg_6 52 + glm 53 + libGL 54 + libGLU 55 + libmad 56 + openal 57 + sfml 58 + ]; 59 + 60 + passthru = { 61 + updateScript = unstableGitUpdater { }; 62 + }; 63 + 64 + meta = { 65 + description = "Unofficial open source recreation of the classic Grand Theft Auto III game executable"; 66 + homepage = "https://github.com/rwengine/openrw"; 67 + license = lib.licenses.gpl3; 68 + longDescription = '' 69 + OpenRW is an open source re-implementation of Rockstar Games' Grand Theft 70 + Auto III, a classic 3D action game first published in 2001. 71 + ''; 72 + maintainers = with lib.maintainers; [ kragniz ]; 73 + platforms = lib.platforms.all; 74 + mainProgram = "rwgame"; 75 + }; 76 + }
+2 -2
pkgs/by-name/ro/rockcraft/package.nix
··· 11 11 12 12 python3Packages.buildPythonApplication rec { 13 13 pname = "rockcraft"; 14 - version = "1.8.0"; 14 + version = "1.9.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "canonical"; 18 18 repo = "rockcraft"; 19 19 rev = version; 20 - hash = "sha256-v7biDGgJoQO6cKRXG8xosCgd/mlOUEwHrqcgtL2R5L4="; 20 + hash = "sha256-cgNKMxQrD9/OfmY5YEnpbNDstDdXqc/wdfCb4HvsgNM="; 21 21 }; 22 22 23 23 pyproject = true;
-2
pkgs/by-name/sy/syslogng/package.nix
··· 19 19 python3, 20 20 riemann_c_client, 21 21 protobufc, 22 - pcre, 23 22 paho-mqtt-c, 24 23 python3Packages, 25 24 libnet, ··· 99 98 systemd 100 99 riemann_c_client 101 100 protobufc 102 - pcre 103 101 libnet 104 102 json_c 105 103 libuuid
+46
pkgs/by-name/sy/systemd-language-server/package.nix
··· 1 + { 2 + lib, 3 + python3Packages, 4 + fetchFromGitHub, 5 + pandoc, 6 + }: 7 + 8 + python3Packages.buildPythonApplication rec { 9 + pname = "systemd-language-server"; 10 + version = "0.3.5"; 11 + pyproject = true; 12 + 13 + src = fetchFromGitHub { 14 + owner = "psacawa"; 15 + repo = "systemd-language-server"; 16 + tag = version; 17 + hash = "sha256-QRd2mV4qRh4OfVJ2/5cOm3Wh8ydsLTG9Twp346DHjs0="; 18 + }; 19 + 20 + build-system = with python3Packages; [ 21 + poetry-core 22 + ]; 23 + 24 + dependencies = with python3Packages; [ 25 + lxml 26 + pygls 27 + ]; 28 + 29 + pythonImportsCheck = [ "systemd_language_server" ]; 30 + 31 + nativeCheckInputs = [ 32 + pandoc 33 + python3Packages.pytestCheckHook 34 + ]; 35 + 36 + __darwinAllowLocalNetworking = true; 37 + 38 + meta = { 39 + description = "Language Server for Systemd unit files"; 40 + homepage = "https://github.com/psacawa/systemd-language-server"; 41 + changelog = "https://github.com/psacawa/systemd-language-server/releases/tag/${version}"; 42 + license = lib.licenses.gpl3Only; 43 + maintainers = with lib.maintainers; [ GaetanLepage ]; 44 + mainProgram = "systemd-language-server"; 45 + }; 46 + }
+2
pkgs/by-name/ti/tic-80/package.nix
··· 151 151 platforms = platforms.linux; 152 152 mainProgram = "tic80"; 153 153 maintainers = with maintainers; [ blinry ]; 154 + # /build/source/vendor/sdl2/src/audio/pipewire/SDL_pipewire.c:623:37: error: passing argument 1 of 'pw_node_enum_params' from incompatible pointer type [-Wincompatible-pointer-types] 155 + broken = true; 154 156 }; 155 157 }
+7 -10
pkgs/by-name/ub/ubuntu-themes/package.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "ubuntu-themes"; 16 - version = "20.10"; 16 + version = "24.04"; 17 17 18 18 src = fetchurl { 19 - url = "https://launchpad.net/ubuntu/+archive/primary/+files/${pname}_${version}.orig.tar.gz"; 20 - sha256 = "00frn2dd4kjhlmwkasrx4a820fwrg8f8hmiwh51m63bpj00vwn0r"; 19 + url = "https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/ubuntu-themes/${version}-0ubuntu1/ubuntu-themes_${version}.orig.tar.gz"; 20 + hash = "sha256-/SMwwDaSUe86SXNe7U9Sh7SzzlC4yOXVA+urAIxeDxk="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ ··· 51 51 52 52 mkdir -p $out/share/icons 53 53 cp -a LoginIcons $out/share/icons 54 - cp -a suru-icons $out/share/icons 55 54 cp -a ubuntu-mobile $out/share/icons 56 55 cp -a ubuntu-mono-dark $out/share/icons 57 56 cp -a ubuntu-mono-light $out/share/icons 58 - 59 - mv $out/share/icons/{suru-icons,suru} 60 57 61 58 for theme in $out/share/icons/*; do 62 59 gtk-update-icon-cache $theme ··· 70 67 71 68 dontCheckForBrokenSymlinks = true; 72 69 73 - meta = with lib; { 70 + meta = { 74 71 description = "Ubuntu monochrome and Suru icon themes, Ambiance and Radiance themes, and Ubuntu artwork"; 75 72 homepage = "https://launchpad.net/ubuntu-themes"; 76 - license = with licenses; [ 73 + license = with lib.licenses; [ 77 74 cc-by-sa-40 78 75 gpl3 79 76 ]; 80 - platforms = platforms.linux; 81 - maintainers = [ maintainers.romildo ]; 77 + platforms = lib.platforms.linux; 78 + maintainers = [ lib.maintainers.romildo ]; 82 79 }; 83 80 }
+3 -3
pkgs/by-name/xc/xcbeautify/package.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "xcbeautify"; 10 - version = "2.4.1"; 10 + version = "2.27.0"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/cpisciotta/xcbeautify/releases/download/${version}/xcbeautify-${version}-${stdenv.hostPlatform.darwinArch}-apple-macosx.zip"; 14 14 hash = lib.getAttr stdenv.hostPlatform.darwinArch { 15 - arm64 = "sha256-EjBhpw9qsOEweXOepQVPNL/hCxj12Z5gyvv7neNEeMU="; 16 - x86_64 = "sha256-Zb54g0cMWB6ouzLPUd+VTCicp+bVb5aDKxNSB3eGaZU="; 15 + arm64 = "sha256-8HEge1LvnEZQbliEDO+FP485V/OddBBESfCXnI/v2dE="; 16 + x86_64 = "sha256-s1YyXEUJ7I0UhNEPSGregTFHpDKlFQ6ezvUXFk/0J6Q="; 17 17 }; 18 18 }; 19 19
-25
pkgs/by-name/za/zammad/package.nix
··· 5 5 fetchFromGitHub, 6 6 applyPatches, 7 7 bundlerEnv, 8 - defaultGemConfig, 9 8 callPackage, 10 9 procps, 11 10 ruby, 12 11 postgresql, 13 - libpq, 14 - imlib2, 15 12 jq, 16 13 moreutils, 17 14 nodejs, ··· 58 55 "development" 59 56 "postgres" # database 60 57 ]; 61 - gemConfig = defaultGemConfig // { 62 - pg = attrs: { 63 - buildInputs = [ libpq ]; 64 - }; 65 - rszr = attrs: { 66 - buildInputs = [ 67 - imlib2 68 - imlib2.dev 69 - ]; 70 - buildFlags = [ "--without-imlib2-config" ]; 71 - }; 72 - mini_racer = attrs: { 73 - buildFlags = [ 74 - "--with-v8-dir=\"${nodejs.libv8}\"" 75 - ]; 76 - dontBuild = false; 77 - postPatch = '' 78 - substituteInPlace ext/mini_racer_extension/extconf.rb \ 79 - --replace Libv8.configure_makefile '$CPPFLAGS += " -x c++"; Libv8.configure_makefile' 80 - ''; 81 - }; 82 - }; 83 58 }; 84 59 85 60 in
+1 -1
pkgs/by-name/zi/zitadel/package.nix
··· 100 100 protoc-gen-zitadel 101 101 ]; 102 102 outputPath = ".artifacts"; 103 - hash = "sha256-11ByEuamYpCUeuqNr8ZVNCo4r3aSfuPXXhIu6mUqlzU="; 103 + hash = "sha256-QUUe3jK9rOWzI1jzevgZ/UB6SqB6GXtd9CVtAqiStdo="; 104 104 }; 105 105 in 106 106 buildGoModule rec {
+2 -2
pkgs/development/emilua-plugins/botan/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "emilua-botan"; 23 - version = "1.1.1"; 23 + version = "1.2.1"; 24 24 25 25 src = fetchFromGitLab { 26 26 owner = "emilua"; 27 27 repo = "botan"; 28 28 rev = "v${version}"; 29 - hash = "sha256-oqJEsVe/mF/v6pCrDDG/Tug4st+LsSlYs4oRvfri8Tc="; 29 + hash = "sha256-b5yOkjXKnJBQWSKCqiHJcznH1QOmTVgBbS5IwP3VTXA="; 30 30 }; 31 31 32 32 buildInputs = [
+1
pkgs/development/libraries/dbus-sharp-glib/dbus-sharp-glib-1.0.nix
··· 23 23 nativeBuildInputs = [ 24 24 pkg-config 25 25 autoreconfHook 26 + mono # gmcs 26 27 ]; 27 28 buildInputs = [ 28 29 mono
+1
pkgs/development/libraries/dbus-sharp-glib/default.nix
··· 23 23 nativeBuildInputs = [ 24 24 pkg-config 25 25 autoreconfHook 26 + mono # gmcs 26 27 ]; 27 28 buildInputs = [ 28 29 mono
+1
pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix
··· 22 22 nativeBuildInputs = [ 23 23 pkg-config 24 24 autoreconfHook 25 + mono # gmcs 25 26 ]; 26 27 buildInputs = [ mono ]; 27 28
+1
pkgs/development/libraries/dbus-sharp/default.nix
··· 22 22 nativeBuildInputs = [ 23 23 pkg-config 24 24 autoreconfHook 25 + mono4 # gmcs 25 26 ]; 26 27 27 28 # Use msbuild when https://github.com/NixOS/nixpkgs/pull/43680 is merged
+2
pkgs/development/python-modules/clldutils/default.nix
··· 64 64 homepage = "https://github.com/clld/clldutils"; 65 65 license = licenses.asl20; 66 66 maintainers = with maintainers; [ melling ]; 67 + # TypeError: EnumSymbol.__init__() missing 2 required positional arguments: 'value' and 'description' 68 + broken = true; 67 69 }; 68 70 }
+6 -14
pkgs/development/python-modules/locust/default.nix
··· 4 4 python, 5 5 callPackage, 6 6 fetchFromGitHub, 7 - poetry-core, 8 - poetry-dynamic-versioning, 7 + hatchling, 8 + hatch-vcs, 9 9 pytestCheckHook, 10 10 configargparse, 11 11 cryptography, ··· 26 26 27 27 buildPythonPackage rec { 28 28 pname = "locust"; 29 - version = "2.32.6"; 29 + version = "2.33.1"; 30 30 pyproject = true; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "locustio"; 34 34 repo = "locust"; 35 35 tag = version; 36 - hash = "sha256-KWPIZLdOx09iMlnczjmlzPmy32ozw0xEBZI9li+fJ24="; 36 + hash = "sha256-cOYdf3F1OF1P4xFEG3isuiePIl1tHnjL7UVoFIpb40A="; 37 37 }; 38 38 39 39 postPatch = '' 40 - substituteInPlace pyproject.toml \ 41 - --replace-fail 'script = "pre_build.py"' "" 42 - 43 40 substituteInPlace locust/test/test_main.py \ 44 41 --replace-fail '"locust"' '"${placeholder "out"}/bin/locust"' 45 42 ··· 52 49 src = "${src}/locust/webui"; 53 50 }; 54 51 55 - preBuild = '' 56 - mkdir -p $out/${python.sitePackages}/${pname} 57 - ln -sf ${webui} $out/${python.sitePackages}/${pname}/webui 58 - ''; 59 - 60 52 build-system = [ 61 - poetry-core 62 - poetry-dynamic-versioning 53 + hatchling 54 + hatch-vcs 63 55 ]; 64 56 65 57 pythonRelaxDeps = [
+1 -1
pkgs/development/python-modules/locust/webui.nix
··· 14 14 15 15 yarnOfflineCache = fetchYarnDeps { 16 16 yarnLock = "${finalAttrs.src}/yarn.lock"; 17 - hash = "sha256-ek02mjB8DsBUOR28WSuqj6oVvxTq8EKTNXWFFI3OhuU="; 17 + hash = "sha256-OTGTpAAxr8rmCi5oEWIWzwZqiP3Cx3vyc3r2kbcLyUg="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/psycopg/default.nix
··· 35 35 36 36 let 37 37 pname = "psycopg"; 38 - version = "3.2.5"; 38 + version = "3.2.6"; 39 39 40 40 src = fetchFromGitHub { 41 41 owner = "psycopg"; 42 42 repo = "psycopg"; 43 43 tag = version; 44 - hash = "sha256-I1aL12SWwPk7jHosE0LEv5ksUxqGBgCXBxeIYqs1iDw="; 44 + hash = "sha256-fCiTu6lKFqY7Yl9KfmhRZQIDg5sEkXkQ95kPfIDSGn8="; 45 45 }; 46 46 47 47 patches = [
+14 -8
pkgs/development/python-modules/recurring-ical-events/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - pythonOlder, 5 4 fetchFromGitHub, 6 - setuptools, 5 + git, 6 + hatch-vcs, 7 + hatchling, 7 8 icalendar, 8 9 python-dateutil, 9 10 tzdata, ··· 16 17 17 18 buildPythonPackage rec { 18 19 pname = "recurring-ical-events"; 19 - version = "3.4.1"; 20 - 21 - disabled = pythonOlder "3.8"; 22 - 20 + version = "3.6.0"; 23 21 pyproject = true; 24 22 25 23 src = fetchFromGitHub { 26 24 owner = "niccokunzmann"; 27 25 repo = "python-recurring-ical-events"; 28 26 tag = "v${version}"; 29 - hash = "sha256-JhGKowFtRJwLj/5J1lNpgMTl1d+oWsmV4wI3hfOW5io="; 27 + hash = "sha256-wfp/ubFZv54z2d44hvG56xcCjGedYqW/zeNvaoPPJYE="; 30 28 }; 31 29 32 - build-system = [ setuptools ]; 30 + postPatch = '' 31 + substituteInPlace pyproject.toml \ 32 + --replace 'dynamic = ["urls", "version"]' 'version = "${version}"' 33 + ''; 34 + 35 + build-system = [ 36 + hatch-vcs 37 + hatchling 38 + ]; 33 39 34 40 dependencies = [ 35 41 icalendar
+3 -3
pkgs/development/python-modules/x-wr-timezone/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "x-wr-timezone"; 18 - version = "2.0.0"; 18 + version = "2.0.1"; 19 19 pyproject = true; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "niccokunzmann"; 23 23 repo = "x-wr-timezone"; 24 24 tag = "v${version}"; 25 - hash = "sha256-F/bNETgscbhEkpG/D1eSJaBNdpi0+xEYuNL4RURGST0="; 25 + hash = "sha256-Llpe3Z0Yfd0vRgx95D4YVrnNJk0g/VqPuNvtUrUpFk0="; 26 26 }; 27 27 28 28 build-system = [ setuptools ]; ··· 48 48 pythonImportsCheck = [ "x_wr_timezone" ]; 49 49 50 50 meta = { 51 - changelog = "https://github.com/niccokunzmann/x-wr-timezone/blob/${src.rev}/README.rst#changelog"; 51 + changelog = "https://github.com/niccokunzmann/x-wr-timezone/blob/${src.tag}/README.rst#changelog"; 52 52 description = "Convert calendars using X-WR-TIMEZONE to standard ones"; 53 53 homepage = "https://github.com/niccokunzmann/x-wr-timezone"; 54 54 license = lib.licenses.lgpl3Plus;
+20 -1
pkgs/development/ruby-modules/gem-config/default.nix
··· 27 27 , bison, flex, pango, python3, patchelf, binutils, freetds, wrapGAppsHook3, atk 28 28 , bundler, libsass, dart-sass, libexif, libselinux, libsepol, shared-mime-info, libthai, libdatrie 29 29 , CoreServices, DarwinTools, cctools, libtool, discount, exiv2, libepoxy, libxkbcommon, libmaxminddb, libyaml 30 - , cargo, rustc, rustPlatform, libsysprof-capture 30 + , cargo, rustc, rustPlatform, libsysprof-capture, imlib2 31 31 , autoSignDarwinBinariesHook 32 32 }@args: 33 33 ··· 206 206 postInstall = '' 207 207 installPath=$(cat $out/nix-support/gem-meta/install-path) 208 208 echo -e "\nENV['PATH'] += ':${graphicsmagick}/bin'\n" >> $installPath/lib/mini_magick/configuration.rb 209 + ''; 210 + }; 211 + 212 + mini_racer = attrs: { 213 + buildFlags = [ 214 + "--with-v8-dir=\"${nodejs.libv8}\"" 215 + ]; 216 + dontBuild = false; 217 + postPatch = '' 218 + substituteInPlace ext/mini_racer_extension/extconf.rb \ 219 + --replace Libv8.configure_makefile '$CPPFLAGS += " -x c++"; Libv8.configure_makefile' 209 220 ''; 210 221 }; 211 222 ··· 663 674 buildFlags = [ "--with-pg-config=ignore" ]; 664 675 nativeBuildInputs = [ pkg-config ]; 665 676 buildInputs = [ libpq ]; 677 + }; 678 + 679 + rszr = attrs: { 680 + buildInputs = [ 681 + imlib2 682 + imlib2.dev 683 + ]; 684 + buildFlags = [ "--without-imlib2-config" ]; 666 685 }; 667 686 668 687 psych = attrs: {
+79 -68
pkgs/development/tools/github-changelog-generator/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - activesupport (7.0.1) 5 - concurrent-ruby (~> 1.0, >= 1.0.2) 4 + activesupport (8.0.1) 5 + base64 6 + benchmark (>= 0.3) 7 + bigdecimal 8 + concurrent-ruby (~> 1.0, >= 1.3.1) 9 + connection_pool (>= 2.2.5) 10 + drb 6 11 i18n (>= 1.6, < 2) 12 + logger (>= 1.4.2) 7 13 minitest (>= 5.1) 8 - tzinfo (~> 2.0) 9 - addressable (2.8.0) 10 - public_suffix (>= 2.0.2, < 5.0) 11 - async (1.30.1) 12 - console (~> 1.10) 13 - nio4r (~> 2.3) 14 - timers (~> 4.1) 15 - async-http (0.56.5) 16 - async (>= 1.25) 17 - async-io (>= 1.28) 18 - async-pool (>= 0.2) 19 - protocol-http (~> 0.22.0) 20 - protocol-http1 (~> 0.14.0) 21 - protocol-http2 (~> 0.14.0) 22 - async-http-faraday (0.11.0) 14 + securerandom (>= 0.3) 15 + tzinfo (~> 2.0, >= 2.0.5) 16 + uri (>= 0.13.1) 17 + addressable (2.8.7) 18 + public_suffix (>= 2.0.2, < 7.0) 19 + async (2.23.1) 20 + console (~> 1.29) 21 + fiber-annotation 22 + io-event (~> 1.9) 23 + metrics (~> 0.12) 24 + traces (~> 0.15) 25 + async-http (0.87.0) 26 + async (>= 2.10.2) 27 + async-pool (~> 0.9) 28 + io-endpoint (~> 0.14) 29 + io-stream (~> 0.6) 30 + metrics (~> 0.12) 31 + protocol-http (~> 0.49) 32 + protocol-http1 (~> 0.30) 33 + protocol-http2 (~> 0.22) 34 + traces (~> 0.10) 35 + async-http-faraday (0.21.0) 23 36 async-http (~> 0.42) 24 37 faraday 25 - async-io (1.32.2) 26 - async 27 - async-pool (0.3.9) 38 + async-pool (0.10.3) 28 39 async (>= 1.25) 29 - concurrent-ruby (1.1.9) 30 - console (1.14.0) 31 - fiber-local 32 - faraday (1.9.3) 33 - faraday-em_http (~> 1.0) 34 - faraday-em_synchrony (~> 1.0) 35 - faraday-excon (~> 1.1) 36 - faraday-httpclient (~> 1.0) 37 - faraday-multipart (~> 1.0) 38 - faraday-net_http (~> 1.0) 39 - faraday-net_http_persistent (~> 1.0) 40 - faraday-patron (~> 1.0) 41 - faraday-rack (~> 1.0) 42 - faraday-retry (~> 1.0) 43 - ruby2_keywords (>= 0.0.4) 44 - faraday-em_http (1.0.0) 45 - faraday-em_synchrony (1.0.0) 46 - faraday-excon (1.1.0) 47 - faraday-http-cache (2.2.0) 40 + base64 (0.2.0) 41 + benchmark (0.4.0) 42 + bigdecimal (3.1.9) 43 + concurrent-ruby (1.3.5) 44 + connection_pool (2.5.0) 45 + console (1.30.2) 46 + fiber-annotation 47 + fiber-local (~> 1.1) 48 + json 49 + drb (2.2.1) 50 + faraday (2.12.2) 51 + faraday-net_http (>= 2.0, < 3.5) 52 + json 53 + logger 54 + faraday-http-cache (2.5.1) 48 55 faraday (>= 0.8) 49 - faraday-httpclient (1.0.1) 50 - faraday-multipart (1.0.3) 51 - multipart-post (>= 1.2, < 3) 52 - faraday-net_http (1.0.1) 53 - faraday-net_http_persistent (1.2.0) 54 - faraday-patron (1.0.0) 55 - faraday-rack (1.0.0) 56 - faraday-retry (1.0.3) 57 - fiber-local (1.0.0) 56 + faraday-net_http (3.4.0) 57 + net-http (>= 0.5.0) 58 + fiber-annotation (0.2.0) 59 + fiber-local (1.1.0) 60 + fiber-storage 61 + fiber-storage (1.0.0) 58 62 github_changelog_generator (1.16.4) 59 63 activesupport 60 64 async (>= 1.25.0) ··· 64 68 octokit (~> 4.6) 65 69 rainbow (>= 2.2.1) 66 70 rake (>= 10.0) 67 - i18n (1.8.11) 71 + i18n (1.14.7) 68 72 concurrent-ruby (~> 1.0) 69 - minitest (5.15.0) 73 + io-endpoint (0.15.2) 74 + io-event (1.9.0) 75 + io-stream (0.6.1) 76 + json (2.10.1) 77 + logger (1.6.6) 78 + metrics (0.12.2) 79 + minitest (5.25.4) 70 80 multi_json (1.15.0) 71 - multipart-post (2.1.1) 72 - nio4r (2.5.8) 73 - octokit (4.22.0) 74 - faraday (>= 0.9) 75 - sawyer (~> 0.8.0, >= 0.5.3) 76 - protocol-hpack (1.4.2) 77 - protocol-http (0.22.5) 78 - protocol-http1 (0.14.2) 81 + net-http (0.6.0) 82 + uri 83 + octokit (4.25.1) 84 + faraday (>= 1, < 3) 85 + sawyer (~> 0.9) 86 + protocol-hpack (1.5.1) 87 + protocol-http (0.49.0) 88 + protocol-http1 (0.30.0) 79 89 protocol-http (~> 0.22) 80 - protocol-http2 (0.14.2) 90 + protocol-http2 (0.22.1) 81 91 protocol-hpack (~> 1.4) 82 - protocol-http (~> 0.18) 83 - public_suffix (4.0.6) 92 + protocol-http (~> 0.47) 93 + public_suffix (6.0.1) 84 94 rainbow (3.1.1) 85 - rake (13.0.6) 86 - ruby2_keywords (0.0.5) 87 - sawyer (0.8.2) 95 + rake (13.2.1) 96 + sawyer (0.9.2) 88 97 addressable (>= 2.3.5) 89 - faraday (> 0.8, < 2.0) 90 - timers (4.3.3) 91 - tzinfo (2.0.4) 98 + faraday (>= 0.17.3, < 3) 99 + securerandom (0.4.1) 100 + traces (0.15.2) 101 + tzinfo (2.0.6) 92 102 concurrent-ruby (~> 1.0) 103 + uri (1.0.3) 93 104 94 105 PLATFORMS 95 106 ruby ··· 98 109 github_changelog_generator (= 1.16.4) 99 110 100 111 BUNDLED WITH 101 - 2.1.4 112 + 2.6.2
+176 -136
pkgs/development/tools/github-changelog-generator/gemset.nix
··· 1 1 { 2 2 activesupport = { 3 3 dependencies = [ 4 + "base64" 5 + "benchmark" 6 + "bigdecimal" 4 7 "concurrent-ruby" 8 + "connection_pool" 9 + "drb" 5 10 "i18n" 11 + "logger" 6 12 "minitest" 13 + "securerandom" 7 14 "tzinfo" 15 + "uri" 8 16 ]; 9 17 groups = [ "default" ]; 10 18 platforms = [ ]; 11 19 source = { 12 20 remotes = [ "https://rubygems.org" ]; 13 - sha256 = "02lys9pnb99hsczs551iqzjn008i8k7c728xxba7acfi9rdw9pa6"; 21 + sha256 = "0drfj44a16r86clrrqz3vqmg93qri6bqghjm21ac6jn2853cfnzx"; 14 22 type = "gem"; 15 23 }; 16 - version = "7.0.1"; 24 + version = "8.0.1"; 17 25 }; 18 26 addressable = { 19 27 dependencies = [ "public_suffix" ]; ··· 21 29 platforms = [ ]; 22 30 source = { 23 31 remotes = [ "https://rubygems.org" ]; 24 - sha256 = "022r3m9wdxljpbya69y2i3h9g3dhhfaqzidf95m6qjzms792jvgp"; 32 + sha256 = "0cl2qpvwiffym62z991ynks7imsm87qmgxf0yfsmlwzkgi9qcaa6"; 25 33 type = "gem"; 26 34 }; 27 - version = "2.8.0"; 35 + version = "2.8.7"; 28 36 }; 29 37 async = { 30 38 dependencies = [ 31 39 "console" 32 - "nio4r" 33 - "timers" 40 + "fiber-annotation" 41 + "io-event" 42 + "metrics" 43 + "traces" 34 44 ]; 35 45 groups = [ "default" ]; 36 46 platforms = [ ]; 37 47 source = { 38 48 remotes = [ "https://rubygems.org" ]; 39 - sha256 = "0mdv66xn5xjyaidyrp66mfnx7d4habkbfmx9y57k75h5q6fd2b65"; 49 + sha256 = "01jh5b1wh9gvgrkl2bgc93pimc0ncjbi5vsadgxxp9a8d4s9fb31"; 40 50 type = "gem"; 41 51 }; 42 - version = "1.30.1"; 52 + version = "2.23.1"; 43 53 }; 44 54 async-http = { 45 55 dependencies = [ 46 56 "async" 47 - "async-io" 48 57 "async-pool" 58 + "io-endpoint" 59 + "io-stream" 60 + "metrics" 49 61 "protocol-http" 50 62 "protocol-http1" 51 63 "protocol-http2" 64 + "traces" 52 65 ]; 53 66 groups = [ "default" ]; 54 67 platforms = [ ]; 55 68 source = { 56 69 remotes = [ "https://rubygems.org" ]; 57 - sha256 = "0v3451bnn7rhgvl6ng0ys0dgm7cmyi3m41kmf5wyrpb83dhds13l"; 70 + sha256 = "100s02s6cxzccsr5fdvi4yx7fzscps429mnaabiiwyxpggdz0pzv"; 58 71 type = "gem"; 59 72 }; 60 - version = "0.56.5"; 73 + version = "0.87.0"; 61 74 }; 62 75 async-http-faraday = { 63 76 dependencies = [ ··· 68 81 platforms = [ ]; 69 82 source = { 70 83 remotes = [ "https://rubygems.org" ]; 71 - sha256 = "0ndynkfknabv6m9wzcmdnj4r4bhlxqkg9c6rzsjc1pk8q057kslv"; 84 + sha256 = "0z9358n42n6bs8s7cj9hglbb65w145y60c08dlgsx7798xsghlpk"; 72 85 type = "gem"; 73 86 }; 74 - version = "0.11.0"; 87 + version = "0.21.0"; 75 88 }; 76 - async-io = { 89 + async-pool = { 77 90 dependencies = [ "async" ]; 78 91 groups = [ "default" ]; 79 92 platforms = [ ]; 80 93 source = { 81 94 remotes = [ "https://rubygems.org" ]; 82 - sha256 = "10l9m0x2ffvsaaxc4mfalrljjx13njkyir9w6yfif8wpszc291h8"; 95 + sha256 = "12h0cmbw8sjlbfkng94wmb9d5mkrpc468ms40mnkvz9lrkggjhmm"; 96 + type = "gem"; 97 + }; 98 + version = "0.10.3"; 99 + }; 100 + base64 = { 101 + groups = [ "default" ]; 102 + platforms = [ ]; 103 + source = { 104 + remotes = [ "https://rubygems.org" ]; 105 + sha256 = "01qml0yilb9basf7is2614skjp8384h2pycfx86cr8023arfj98g"; 106 + type = "gem"; 107 + }; 108 + version = "0.2.0"; 109 + }; 110 + benchmark = { 111 + groups = [ "default" ]; 112 + platforms = [ ]; 113 + source = { 114 + remotes = [ "https://rubygems.org" ]; 115 + sha256 = "0jl71qcgamm96dzyqk695j24qszhcc7liw74qc83fpjljp2gh4hg"; 83 116 type = "gem"; 84 117 }; 85 - version = "1.32.2"; 118 + version = "0.4.0"; 86 119 }; 87 - async-pool = { 88 - dependencies = [ "async" ]; 120 + bigdecimal = { 89 121 groups = [ "default" ]; 90 122 platforms = [ ]; 91 123 source = { 92 124 remotes = [ "https://rubygems.org" ]; 93 - sha256 = "02r6cyvralcv2yn1jj0plxynwr7rvxym13vlxd2wxk1bymfq9fd9"; 125 + sha256 = "1k6qzammv9r6b2cw3siasaik18i6wjc5m0gw5nfdc6jj64h79z1g"; 94 126 type = "gem"; 95 127 }; 96 - version = "0.3.9"; 128 + version = "3.1.9"; 97 129 }; 98 130 concurrent-ruby = { 99 131 groups = [ "default" ]; 100 132 platforms = [ ]; 101 133 source = { 102 134 remotes = [ "https://rubygems.org" ]; 103 - sha256 = "0nwad3211p7yv9sda31jmbyw6sdafzmdi2i2niaz6f0wk5nq9h0f"; 135 + sha256 = "1ipbrgvf0pp6zxdk5ascp6i29aybz2bx9wdrlchjmpx6mhvkwfw1"; 104 136 type = "gem"; 105 137 }; 106 - version = "1.1.9"; 138 + version = "1.3.5"; 107 139 }; 108 - console = { 109 - dependencies = [ "fiber-local" ]; 140 + connection_pool = { 110 141 groups = [ "default" ]; 111 142 platforms = [ ]; 112 143 source = { 113 144 remotes = [ "https://rubygems.org" ]; 114 - sha256 = "13ylq7x9zk79r79pssnjvby14shcyamwcbap842p9gvmkf7xblmr"; 145 + sha256 = "1z7bag6zb2vwi7wp2bkdkmk7swkj6zfnbsnc949qq0wfsgw94fr3"; 115 146 type = "gem"; 116 147 }; 117 - version = "1.14.0"; 148 + version = "2.5.0"; 118 149 }; 119 - faraday = { 150 + console = { 120 151 dependencies = [ 121 - "faraday-em_http" 122 - "faraday-em_synchrony" 123 - "faraday-excon" 124 - "faraday-httpclient" 125 - "faraday-multipart" 126 - "faraday-net_http" 127 - "faraday-net_http_persistent" 128 - "faraday-patron" 129 - "faraday-rack" 130 - "faraday-retry" 131 - "ruby2_keywords" 152 + "fiber-annotation" 153 + "fiber-local" 154 + "json" 132 155 ]; 133 156 groups = [ "default" ]; 134 157 platforms = [ ]; 135 158 source = { 136 159 remotes = [ "https://rubygems.org" ]; 137 - sha256 = "0y32gj994ll3zlcqjmwp78r7s03iiwayij6fz2pjpkfywgvp71s6"; 160 + sha256 = "0vgnpqlg419vwvi6xlqm74n2wdngihjj4wqyz42crdcymc0pl776"; 138 161 type = "gem"; 139 162 }; 140 - version = "1.9.3"; 163 + version = "1.30.2"; 141 164 }; 142 - faraday-em_http = { 165 + drb = { 143 166 groups = [ "default" ]; 144 167 platforms = [ ]; 145 168 source = { 146 169 remotes = [ "https://rubygems.org" ]; 147 - sha256 = "12cnqpbak4vhikrh2cdn94assh3yxza8rq2p9w2j34bqg5q4qgbs"; 170 + sha256 = "0h5kbj9hvg5hb3c7l425zpds0vb42phvln2knab8nmazg2zp5m79"; 148 171 type = "gem"; 149 172 }; 150 - version = "1.0.0"; 173 + version = "2.2.1"; 151 174 }; 152 - faraday-em_synchrony = { 175 + faraday = { 176 + dependencies = [ 177 + "faraday-net_http" 178 + "json" 179 + "logger" 180 + ]; 153 181 groups = [ "default" ]; 154 182 platforms = [ ]; 155 183 source = { 156 184 remotes = [ "https://rubygems.org" ]; 157 - sha256 = "1vgrbhkp83sngv6k4mii9f2s9v5lmp693hylfxp2ssfc60fas3a6"; 185 + sha256 = "1mls9g490k63rdmjc9shqshqzznfn1y21wawkxrwp2vvbk13jwqm"; 158 186 type = "gem"; 159 187 }; 160 - version = "1.0.0"; 188 + version = "2.12.2"; 161 189 }; 162 - faraday-excon = { 190 + faraday-http-cache = { 191 + dependencies = [ "faraday" ]; 163 192 groups = [ "default" ]; 164 193 platforms = [ ]; 165 194 source = { 166 195 remotes = [ "https://rubygems.org" ]; 167 - sha256 = "0h09wkb0k0bhm6dqsd47ac601qiaah8qdzjh8gvxfd376x1chmdh"; 196 + sha256 = "10wld3vk3i8zsr3pa9zyjiyi2zlyyln872812f08bbg1hnd15z6b"; 168 197 type = "gem"; 169 198 }; 170 - version = "1.1.0"; 199 + version = "2.5.1"; 171 200 }; 172 - faraday-http-cache = { 173 - dependencies = [ "faraday" ]; 201 + faraday-net_http = { 202 + dependencies = [ "net-http" ]; 174 203 groups = [ "default" ]; 175 204 platforms = [ ]; 176 205 source = { 177 206 remotes = [ "https://rubygems.org" ]; 178 - sha256 = "0lhfwlk4mhmw9pdlgdsl2bq4x45w7s51jkxjryf18wym8iiw36g7"; 207 + sha256 = "0jp5ci6g40d6i50bsywp35l97nc2fpi9a592r2cibwicdb6y9wd1"; 179 208 type = "gem"; 180 209 }; 181 - version = "2.2.0"; 210 + version = "3.4.0"; 182 211 }; 183 - faraday-httpclient = { 212 + fiber-annotation = { 184 213 groups = [ "default" ]; 185 214 platforms = [ ]; 186 215 source = { 187 216 remotes = [ "https://rubygems.org" ]; 188 - sha256 = "0fyk0jd3ks7fdn8nv3spnwjpzx2lmxmg2gh4inz3by1zjzqg33sc"; 217 + sha256 = "00vcmynyvhny8n4p799rrhcx0m033hivy0s1gn30ix8rs7qsvgvs"; 189 218 type = "gem"; 190 219 }; 191 - version = "1.0.1"; 220 + version = "0.2.0"; 192 221 }; 193 - faraday-multipart = { 194 - dependencies = [ "multipart-post" ]; 222 + fiber-local = { 223 + dependencies = [ "fiber-storage" ]; 195 224 groups = [ "default" ]; 196 225 platforms = [ ]; 197 226 source = { 198 227 remotes = [ "https://rubygems.org" ]; 199 - sha256 = "03qfi9020ynf7hkdiaq01sd2mllvw7fg4qiin3pk028b4wv23j3j"; 228 + sha256 = "01lz929qf3xa90vra1ai1kh059kf2c8xarfy6xbv1f8g457zk1f8"; 200 229 type = "gem"; 201 230 }; 202 - version = "1.0.3"; 231 + version = "1.1.0"; 203 232 }; 204 - faraday-net_http = { 233 + fiber-storage = { 205 234 groups = [ "default" ]; 206 235 platforms = [ ]; 207 236 source = { 208 237 remotes = [ "https://rubygems.org" ]; 209 - sha256 = "1fi8sda5hc54v1w3mqfl5yz09nhx35kglyx72w7b8xxvdr0cwi9j"; 238 + sha256 = "0zxblmxwdpj3587wji5325y53gjdcmzxzm6126dyg58b3qzk42mq"; 210 239 type = "gem"; 211 240 }; 212 - version = "1.0.1"; 241 + version = "1.0.0"; 213 242 }; 214 - faraday-net_http_persistent = { 243 + github_changelog_generator = { 244 + dependencies = [ 245 + "activesupport" 246 + "async" 247 + "async-http-faraday" 248 + "faraday-http-cache" 249 + "multi_json" 250 + "octokit" 251 + "rainbow" 252 + "rake" 253 + ]; 215 254 groups = [ "default" ]; 216 255 platforms = [ ]; 217 256 source = { 218 257 remotes = [ "https://rubygems.org" ]; 219 - sha256 = "0dc36ih95qw3rlccffcb0vgxjhmipsvxhn6cw71l7ffs0f7vq30b"; 258 + sha256 = "04d6z2ysq3gzvpw91lq8mxmdlqcxkmvp8rw9zrzkmksh3pjdzli1"; 220 259 type = "gem"; 221 260 }; 222 - version = "1.2.0"; 261 + version = "1.16.4"; 223 262 }; 224 - faraday-patron = { 263 + i18n = { 264 + dependencies = [ "concurrent-ruby" ]; 225 265 groups = [ "default" ]; 226 266 platforms = [ ]; 227 267 source = { 228 268 remotes = [ "https://rubygems.org" ]; 229 - sha256 = "19wgsgfq0xkski1g7m96snv39la3zxz6x7nbdgiwhg5v82rxfb6w"; 269 + sha256 = "03sx3ahz1v5kbqjwxj48msw3maplpp2iyzs22l4jrzrqh4zmgfnf"; 230 270 type = "gem"; 231 271 }; 232 - version = "1.0.0"; 272 + version = "1.14.7"; 233 273 }; 234 - faraday-rack = { 274 + io-endpoint = { 235 275 groups = [ "default" ]; 236 276 platforms = [ ]; 237 277 source = { 238 278 remotes = [ "https://rubygems.org" ]; 239 - sha256 = "1h184g4vqql5jv9s9im6igy00jp6mrah2h14py6mpf9bkabfqq7g"; 279 + sha256 = "09cghz7i1hpvz2skc0k0h6i60551mc2wafmlfn02hi9rd2xr0zhy"; 240 280 type = "gem"; 241 281 }; 242 - version = "1.0.0"; 282 + version = "0.15.2"; 243 283 }; 244 - faraday-retry = { 284 + io-event = { 245 285 groups = [ "default" ]; 246 286 platforms = [ ]; 247 287 source = { 248 288 remotes = [ "https://rubygems.org" ]; 249 - sha256 = "153i967yrwnswqgvnnajgwp981k9p50ys1h80yz3q94rygs59ldd"; 289 + sha256 = "1hag7zbmsvkbmv0486bxqvnngym4mhsj32aywwmklr5d21k2n9jc"; 250 290 type = "gem"; 251 291 }; 252 - version = "1.0.3"; 292 + version = "1.9.0"; 253 293 }; 254 - fiber-local = { 294 + io-stream = { 255 295 groups = [ "default" ]; 256 296 platforms = [ ]; 257 297 source = { 258 298 remotes = [ "https://rubygems.org" ]; 259 - sha256 = "1vrxxb09fc7aicb9zb0pmn5akggjy21dmxkdl3w949y4q05rldr9"; 299 + sha256 = "0vz9sad4kmgby53hn8jh31a462m9mkln7lxhk972dz9d870z0825"; 260 300 type = "gem"; 261 301 }; 262 - version = "1.0.0"; 302 + version = "0.6.1"; 263 303 }; 264 - github_changelog_generator = { 265 - dependencies = [ 266 - "activesupport" 267 - "async" 268 - "async-http-faraday" 269 - "faraday-http-cache" 270 - "multi_json" 271 - "octokit" 272 - "rainbow" 273 - "rake" 274 - ]; 304 + json = { 275 305 groups = [ "default" ]; 276 306 platforms = [ ]; 277 307 source = { 278 308 remotes = [ "https://rubygems.org" ]; 279 - sha256 = "04d6z2ysq3gzvpw91lq8mxmdlqcxkmvp8rw9zrzkmksh3pjdzli1"; 309 + sha256 = "1p4l5ycdxfsr8b51gnvlvhq6s21vmx9z4x617003zbqv3bcqmj6x"; 280 310 type = "gem"; 281 311 }; 282 - version = "1.16.4"; 312 + version = "2.10.1"; 283 313 }; 284 - i18n = { 285 - dependencies = [ "concurrent-ruby" ]; 314 + logger = { 286 315 groups = [ "default" ]; 287 316 platforms = [ ]; 288 317 source = { 289 318 remotes = [ "https://rubygems.org" ]; 290 - sha256 = "0vdd1kii40qhbr9n8qx71k2gskq6rkl8ygy8hw5hfj8bb5a364xf"; 319 + sha256 = "05s008w9vy7is3njblmavrbdzyrwwc1fsziffdr58w9pwqj8sqfx"; 291 320 type = "gem"; 292 321 }; 293 - version = "1.8.11"; 322 + version = "1.6.6"; 294 323 }; 295 - minitest = { 324 + metrics = { 296 325 groups = [ "default" ]; 297 326 platforms = [ ]; 298 327 source = { 299 328 remotes = [ "https://rubygems.org" ]; 300 - sha256 = "06xf558gid4w8lwx13jwfdafsch9maz8m0g85wnfymqj63x5nbbd"; 329 + sha256 = "0ap1l7ziydzr3kc5aix9rawj6ss2x1j0zq20fjxv7hjx4c4apjkm"; 301 330 type = "gem"; 302 331 }; 303 - version = "5.15.0"; 332 + version = "0.12.2"; 304 333 }; 305 - multi_json = { 334 + minitest = { 306 335 groups = [ "default" ]; 307 336 platforms = [ ]; 308 337 source = { 309 338 remotes = [ "https://rubygems.org" ]; 310 - sha256 = "0pb1g1y3dsiahavspyzkdy39j4q377009f6ix0bh1ag4nqw43l0z"; 339 + sha256 = "0izrg03wn2yj3gd76ck7ifbm9h2kgy8kpg4fk06ckpy4bbicmwlw"; 311 340 type = "gem"; 312 341 }; 313 - version = "1.15.0"; 342 + version = "5.25.4"; 314 343 }; 315 - multipart-post = { 344 + multi_json = { 316 345 groups = [ "default" ]; 317 346 platforms = [ ]; 318 347 source = { 319 348 remotes = [ "https://rubygems.org" ]; 320 - sha256 = "1zgw9zlwh2a6i1yvhhc4a84ry1hv824d6g2iw2chs3k5aylpmpfj"; 349 + sha256 = "0pb1g1y3dsiahavspyzkdy39j4q377009f6ix0bh1ag4nqw43l0z"; 321 350 type = "gem"; 322 351 }; 323 - version = "2.1.1"; 352 + version = "1.15.0"; 324 353 }; 325 - nio4r = { 354 + net-http = { 355 + dependencies = [ "uri" ]; 326 356 groups = [ "default" ]; 327 357 platforms = [ ]; 328 358 source = { 329 359 remotes = [ "https://rubygems.org" ]; 330 - sha256 = "0xk64wghkscs6bv2n22853k2nh39d131c6rfpnlw12mbjnnv9v1v"; 360 + sha256 = "1ysrwaabhf0sn24jrp0nnp51cdv0jf688mh5i6fsz63q2c6b48cn"; 331 361 type = "gem"; 332 362 }; 333 - version = "2.5.8"; 363 + version = "0.6.0"; 334 364 }; 335 365 octokit = { 336 366 dependencies = [ ··· 341 371 platforms = [ ]; 342 372 source = { 343 373 remotes = [ "https://rubygems.org" ]; 344 - sha256 = "1nmdd7klyinvrrv2mggwwmc99ykaq7i379j00i37hvvaqx4giifj"; 374 + sha256 = "15lvy06h276jryxg19258b2yqaykf0567sp0n16yipywhbp94860"; 345 375 type = "gem"; 346 376 }; 347 - version = "4.22.0"; 377 + version = "4.25.1"; 348 378 }; 349 379 protocol-hpack = { 350 380 groups = [ "default" ]; 351 381 platforms = [ ]; 352 382 source = { 353 383 remotes = [ "https://rubygems.org" ]; 354 - sha256 = "0sd85am1hj2w7z5hv19wy1nbisxfr1vqx3wlxjfz9xy7x7s6aczw"; 384 + sha256 = "14ddqg5mcs9ysd1hdzkm5pwil0660vrxcxsn576s3387p0wa5v3g"; 355 385 type = "gem"; 356 386 }; 357 - version = "1.4.2"; 387 + version = "1.5.1"; 358 388 }; 359 389 protocol-http = { 360 390 groups = [ "default" ]; 361 391 platforms = [ ]; 362 392 source = { 363 393 remotes = [ "https://rubygems.org" ]; 364 - sha256 = "0lhg47b3w1d6pdwdkyha8ijzfhjrh90snwydkhwfnl5r10dd9cg5"; 394 + sha256 = "1dvpyl26q3zm2ca1sys9r8lp5qryy8i6glaq4vdi4jd71sk9lhdm"; 365 395 type = "gem"; 366 396 }; 367 - version = "0.22.5"; 397 + version = "0.49.0"; 368 398 }; 369 399 protocol-http1 = { 370 400 dependencies = [ "protocol-http" ]; ··· 372 402 platforms = [ ]; 373 403 source = { 374 404 remotes = [ "https://rubygems.org" ]; 375 - sha256 = "0z56p7zqbyvwlrsbs19knny4v9f7ycsgblhv50ar8wgyifvsddf6"; 405 + sha256 = "0sn3r9rzkwxwix1c8af1njwzxf1nmhn0xmi39pz0jsfa9hd9d4ll"; 376 406 type = "gem"; 377 407 }; 378 - version = "0.14.2"; 408 + version = "0.30.0"; 379 409 }; 380 410 protocol-http2 = { 381 411 dependencies = [ ··· 386 416 platforms = [ ]; 387 417 source = { 388 418 remotes = [ "https://rubygems.org" ]; 389 - sha256 = "1a9klpfmi7w465zq5xz8y8h1qvj42hkm0qd0nlws9d2idd767q5j"; 419 + sha256 = "0s575j0xp1xkb37640fgw7ldyy4hln8ji9nm9ysyk4p7hdq6x5li"; 390 420 type = "gem"; 391 421 }; 392 - version = "0.14.2"; 422 + version = "0.22.1"; 393 423 }; 394 424 public_suffix = { 395 425 groups = [ "default" ]; 396 426 platforms = [ ]; 397 427 source = { 398 428 remotes = [ "https://rubygems.org" ]; 399 - sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9"; 429 + sha256 = "0vqcw3iwby3yc6avs1vb3gfd0vcp2v7q310665dvxfswmcf4xm31"; 400 430 type = "gem"; 401 431 }; 402 - version = "4.0.6"; 432 + version = "6.0.1"; 403 433 }; 404 434 rainbow = { 405 435 groups = [ "default" ]; ··· 416 446 platforms = [ ]; 417 447 source = { 418 448 remotes = [ "https://rubygems.org" ]; 419 - sha256 = "15whn7p9nrkxangbs9hh75q585yfn66lv0v2mhj6q6dl6x8bzr2w"; 449 + sha256 = "17850wcwkgi30p7yqh60960ypn7yibacjjha0av78zaxwvd3ijs6"; 420 450 type = "gem"; 421 451 }; 422 - version = "13.0.6"; 452 + version = "13.2.1"; 423 453 }; 424 - ruby2_keywords = { 454 + sawyer = { 455 + dependencies = [ 456 + "addressable" 457 + "faraday" 458 + ]; 425 459 groups = [ "default" ]; 426 460 platforms = [ ]; 427 461 source = { 428 462 remotes = [ "https://rubygems.org" ]; 429 - sha256 = "1vz322p8n39hz3b4a9gkmz9y7a5jaz41zrm2ywf31dvkqm03glgz"; 463 + sha256 = "1jks1qjbmqm8f9kvwa81vqj39avaj9wdnzc531xm29a55bb74fps"; 430 464 type = "gem"; 431 465 }; 432 - version = "0.0.5"; 466 + version = "0.9.2"; 433 467 }; 434 - sawyer = { 435 - dependencies = [ 436 - "addressable" 437 - "faraday" 438 - ]; 468 + securerandom = { 439 469 groups = [ "default" ]; 440 470 platforms = [ ]; 441 471 source = { 442 472 remotes = [ "https://rubygems.org" ]; 443 - sha256 = "0yrdchs3psh583rjapkv33mljdivggqn99wkydkjdckcjn43j3cz"; 473 + sha256 = "1cd0iriqfsf1z91qg271sm88xjnfd92b832z49p1nd542ka96lfc"; 444 474 type = "gem"; 445 475 }; 446 - version = "0.8.2"; 476 + version = "0.4.1"; 447 477 }; 448 - timers = { 478 + traces = { 449 479 groups = [ "default" ]; 450 480 platforms = [ ]; 451 481 source = { 452 482 remotes = [ "https://rubygems.org" ]; 453 - sha256 = "00xdi97gm01alfqhjgvv5sff9n1n2l6aym69s9jh8l9clg63b0jc"; 483 + sha256 = "109dh1xmsmvkg1pf3306svigh3m8kdmjqlznyk4bi2r4nws7hm6j"; 454 484 type = "gem"; 455 485 }; 456 - version = "4.3.3"; 486 + version = "0.15.2"; 457 487 }; 458 488 tzinfo = { 459 489 dependencies = [ "concurrent-ruby" ]; ··· 461 491 platforms = [ ]; 462 492 source = { 463 493 remotes = [ "https://rubygems.org" ]; 464 - sha256 = "10qp5x7f9hvlc0psv9gsfbxg4a7s0485wsbq1kljkxq94in91l4z"; 494 + sha256 = "16w2g84dzaf3z13gxyzlzbf748kylk5bdgg3n1ipvkvvqy685bwd"; 495 + type = "gem"; 496 + }; 497 + version = "2.0.6"; 498 + }; 499 + uri = { 500 + groups = [ "default" ]; 501 + platforms = [ ]; 502 + source = { 503 + remotes = [ "https://rubygems.org" ]; 504 + sha256 = "04bhfvc25b07jaiaf62yrach7khhr5jlr5bx6nygg8pf11329wp9"; 465 505 type = "gem"; 466 506 }; 467 - version = "2.0.4"; 507 + version = "1.0.3"; 468 508 }; 469 509 }
+27 -9
pkgs/development/tools/scss-lint/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - ffi (1.9.25) 5 - rake (12.3.1) 6 - rb-fsevent (0.10.3) 7 - rb-inotify (0.9.10) 8 - ffi (>= 0.5.0, < 2) 9 - sass (3.7.2) 4 + ffi (1.17.1) 5 + ffi (1.17.1-aarch64-linux-gnu) 6 + ffi (1.17.1-aarch64-linux-musl) 7 + ffi (1.17.1-arm-linux-gnu) 8 + ffi (1.17.1-arm-linux-musl) 9 + ffi (1.17.1-arm64-darwin) 10 + ffi (1.17.1-x86-linux-gnu) 11 + ffi (1.17.1-x86-linux-musl) 12 + ffi (1.17.1-x86_64-darwin) 13 + ffi (1.17.1-x86_64-linux-gnu) 14 + ffi (1.17.1-x86_64-linux-musl) 15 + rb-fsevent (0.11.2) 16 + rb-inotify (0.11.1) 17 + ffi (~> 1.0) 18 + sass (3.7.4) 10 19 sass-listen (~> 4.0.0) 11 20 sass-listen (4.0.0) 12 21 rb-fsevent (~> 0.9, >= 0.9.4) 13 22 rb-inotify (~> 0.9, >= 0.9.7) 14 - scss_lint (0.57.1) 15 - rake (>= 0.9, < 13) 23 + scss_lint (0.60.0) 16 24 sass (~> 3.5, >= 3.5.5) 17 25 18 26 PLATFORMS 27 + aarch64-linux-gnu 28 + aarch64-linux-musl 29 + arm-linux-gnu 30 + arm-linux-musl 31 + arm64-darwin 19 32 ruby 33 + x86-linux-gnu 34 + x86-linux-musl 35 + x86_64-darwin 36 + x86_64-linux-gnu 37 + x86_64-linux-musl 20 38 21 39 DEPENDENCIES 22 40 scss_lint 23 41 24 42 BUNDLED WITH 25 - 2.1.4 43 + 2.6.2
+21 -22
pkgs/development/tools/scss-lint/gemset.nix
··· 1 1 { 2 2 ffi = { 3 + groups = [ "default" ]; 4 + platforms = [ ]; 3 5 source = { 4 6 remotes = [ "https://rubygems.org" ]; 5 - sha256 = "0jpm2dis1j7zvvy3lg7axz9jml316zrn7s0j59vyq3qr127z0m7q"; 6 - type = "gem"; 7 - }; 8 - version = "1.9.25"; 9 - }; 10 - rake = { 11 - source = { 12 - remotes = [ "https://rubygems.org" ]; 13 - sha256 = "1idi53jay34ba9j68c3mfr9wwkg3cd9qh0fn9cg42hv72c6q8dyg"; 7 + sha256 = "0fgwn1grxf4zxmyqmb9i4z2hr111585n9jnk17y6y7hhs7dv1xi6"; 14 8 type = "gem"; 15 9 }; 16 - version = "12.3.1"; 10 + version = "1.17.1"; 17 11 }; 18 12 rb-fsevent = { 13 + groups = [ "default" ]; 14 + platforms = [ ]; 19 15 source = { 20 16 remotes = [ "https://rubygems.org" ]; 21 - sha256 = "1lm1k7wpz69jx7jrc92w3ggczkjyjbfziq5mg62vjnxmzs383xx8"; 17 + sha256 = "1zmf31rnpm8553lqwibvv3kkx0v7majm1f341xbxc0bk5sbhp423"; 22 18 type = "gem"; 23 19 }; 24 - version = "0.10.3"; 20 + version = "0.11.2"; 25 21 }; 26 22 rb-inotify = { 27 23 dependencies = [ "ffi" ]; 24 + groups = [ "default" ]; 25 + platforms = [ ]; 28 26 source = { 29 27 remotes = [ "https://rubygems.org" ]; 30 - sha256 = "0yfsgw5n7pkpyky6a9wkf1g9jafxb0ja7gz0qw0y14fd2jnzfh71"; 28 + sha256 = "0vmy8xgahixcz6hzwy4zdcyn2y6d6ri8dqv5xccgzc1r292019x0"; 31 29 type = "gem"; 32 30 }; 33 - version = "0.9.10"; 31 + version = "0.11.1"; 34 32 }; 35 33 sass = { 36 34 dependencies = [ "sass-listen" ]; 35 + groups = [ "default" ]; 36 + platforms = [ ]; 37 37 source = { 38 38 remotes = [ "https://rubygems.org" ]; 39 - sha256 = "1phs6hnd8b95m7n5wbh5bsclmwaajd1sqlgw9fmj72bfqldbmcqa"; 39 + sha256 = "0p95lhs0jza5l7hqci1isflxakz83xkj97lkvxl919is0lwhv2w0"; 40 40 type = "gem"; 41 41 }; 42 - version = "3.7.2"; 42 + version = "3.7.4"; 43 43 }; 44 44 sass-listen = { 45 45 dependencies = [ ··· 54 54 version = "4.0.0"; 55 55 }; 56 56 scss_lint = { 57 - dependencies = [ 58 - "rake" 59 - "sass" 60 - ]; 57 + dependencies = [ "sass" ]; 58 + groups = [ "default" ]; 59 + platforms = [ ]; 61 60 source = { 62 61 remotes = [ "https://rubygems.org" ]; 63 - sha256 = "0dv4ff1lqbgqdx99nwg059c983dhw67kvvjd21f6vf62cjx09lpn"; 62 + sha256 = "0nrpgwvpmyxzlw0c580kd4dhfqp5185ckdc32nw83kfxrphx1lma"; 64 63 type = "gem"; 65 64 }; 66 - version = "0.57.1"; 65 + version = "0.60.0"; 67 66 }; 68 67 }
+3 -3
pkgs/games/heroic/default.nix
··· 17 17 18 18 stdenv.mkDerivation (finalAttrs: { 19 19 pname = "heroic-unwrapped"; 20 - version = "2.16.0"; 20 + version = "2.16.1"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "Heroic-Games-Launcher"; 24 24 repo = "HeroicGamesLauncher"; 25 25 rev = "v${finalAttrs.version}"; 26 - hash = "sha256-cuaYgoVyfJHop9MQjHMCVvDMHc9iEDK60r3raTk4QyY="; 26 + hash = "sha256-BnBzbbyi9cdO6W59cnY13hnhH+tjrTryTp9XIcERwh4="; 27 27 }; 28 28 29 29 pnpmDeps = pnpm_9.fetchDeps { 30 30 inherit (finalAttrs) pname version src; 31 - hash = "sha256-OeCO3ozt8TS+A6b8tz667d5UavaFWiw9HpAjuyzLti8="; 31 + hash = "sha256-2IQyXULgFoz0rFQ8SwERgMDzzo7pZ3DbqhwrWNYSwRo="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
-79
pkgs/games/openrw/default.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchFromGitHub, 5 - cmake, 6 - ninja, 7 - sfml, 8 - libGLU, 9 - libGL, 10 - bullet, 11 - glm, 12 - libmad, 13 - openal, 14 - SDL2, 15 - boost, 16 - ffmpeg_6, 17 - Cocoa, 18 - OpenAL, 19 - }: 20 - 21 - stdenv.mkDerivation { 22 - version = "0-unstable-2024-04-20"; 23 - pname = "openrw"; 24 - 25 - src = fetchFromGitHub { 26 - owner = "rwengine"; 27 - repo = "openrw"; 28 - rev = "f10a5a8f7abc79a0728847e9a10ee104a1216047"; 29 - hash = "sha256-4ydwPh/pCzuZNNOyZuEEeX4wzI+dqTtAxUyXOXz76zk="; 30 - fetchSubmodules = true; 31 - }; 32 - 33 - patches = [ 34 - # SoundSource.cpp: return AVERROR_EOF when buffer is empty 35 - # https://github.com/rwengine/openrw/pull/747 36 - ./fix-ffmpeg-6.patch 37 - ]; 38 - 39 - postPatch = lib.optional (stdenv.cc.isClang && (lib.versionAtLeast stdenv.cc.version "9")) '' 40 - substituteInPlace cmake_configure.cmake \ 41 - --replace 'target_link_libraries(rw_interface INTERFACE "stdc++fs")' "" 42 - ''; 43 - 44 - nativeBuildInputs = [ 45 - cmake 46 - ninja 47 - ]; 48 - 49 - buildInputs = 50 - [ 51 - sfml 52 - libGLU 53 - libGL 54 - bullet 55 - glm 56 - libmad 57 - openal 58 - SDL2 59 - boost 60 - ffmpeg_6 61 - ] 62 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 63 - OpenAL 64 - Cocoa 65 - ]; 66 - 67 - meta = with lib; { 68 - description = "Unofficial open source recreation of the classic Grand Theft Auto III game executable"; 69 - homepage = "https://github.com/rwengine/openrw"; 70 - license = licenses.gpl3; 71 - longDescription = '' 72 - OpenRW is an open source re-implementation of Rockstar Games' Grand Theft 73 - Auto III, a classic 3D action game first published in 2001. 74 - ''; 75 - maintainers = with maintainers; [ kragniz ]; 76 - platforms = platforms.all; 77 - mainProgram = "rwgame"; 78 - }; 79 - }
-22
pkgs/games/openrw/fix-ffmpeg-6.patch
··· 1 - From ad7be040894661b708f9c861696499640ac7f9dc Mon Sep 17 00:00:00 2001 2 - From: =?UTF-8?q?Tomi=20L=C3=A4hteenm=C3=A4ki?= <lihis@lihis.net> 3 - Date: Fri, 1 Dec 2023 16:01:59 +0200 4 - Subject: [PATCH] SoundSource.cpp: return AVERROR_EOF when buffer is empty 5 - 6 - --- 7 - rwengine/src/audio/SoundSource.cpp | 2 +- 8 - 1 file changed, 1 insertion(+), 1 deletion(-) 9 - 10 - diff --git a/rwengine/src/audio/SoundSource.cpp b/rwengine/src/audio/SoundSource.cpp 11 - index c93376e73..d355cab74 100644 12 - --- a/rwengine/src/audio/SoundSource.cpp 13 - +++ b/rwengine/src/audio/SoundSource.cpp 14 - @@ -55,7 +55,7 @@ int read_packet(void* opaque, uint8_t* buf, int buf_size) { 15 - memcpy(buf, input->ptr, buf_size); 16 - input->ptr += buf_size; 17 - input->size -= buf_size; 18 - - return buf_size; 19 - + return buf_size <= 0 ? AVERROR_EOF : buf_size; 20 - } 21 - } // namespace 22 -
+3 -3
pkgs/os-specific/linux/asus-ec-sensors/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 name = "asus-ec-sensors-${version}-${kernel.version}"; 10 - version = "unstable-2022-07-10"; 10 + version = "0.1.0-unstable-2025-01-10"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "zeule"; 14 14 repo = "asus-ec-sensors"; 15 - rev = "5fbdd1461dc88fc952e02717b8120438ce5558b3"; 16 - sha256 = "sha256-kBGl8i7HzdItMoM7L91OfX6y+bqDfd22WICRg0n25pI="; 15 + rev = "619d505b7055be618e9ba9d5e146fd641dbf3015"; 16 + sha256 = "sha256-vS8wNS53m495hmsI267R5Kq/j8Mo5491PJkUKRUpqPQ="; 17 17 }; 18 18 19 19 hardeningDisable = [ "pic" ];
+6 -3
pkgs/os-specific/linux/liquidtux/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 name = "liquidtux-${version}-${kernel.version}"; 10 - version = "unstable-2021-12-16"; 10 + version = "0.1.0-unstable-2025-01-16"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "liquidctl"; 14 14 repo = "liquidtux"; 15 - rev = "342defc0e22ea58f8ab2ab0f191ad3fd302c44cb"; 16 - sha256 = "12rc3vzfq8vnq9x9ca6swk5ag0xkpgkzmga8ga7q80mah9kxbaax"; 15 + rev = "4613127ac6a7f1f0a98009045ea8c16f6b960533"; 16 + sha256 = "sha256-68W7n3QWoAO07FDW45ualpOo5Cty6vcQt/9cLtlnDX0="; 17 17 }; 18 18 19 19 hardeningDisable = [ "pic" ]; ··· 25 25 ]; 26 26 27 27 installPhase = '' 28 + runHook preInstall 29 + cd drivers/hwmon 28 30 install nzxt-grid3.ko nzxt-kraken2.ko nzxt-kraken3.ko nzxt-smart2.ko -Dm444 -t ${placeholder "out"}/lib/modules/${kernel.modDirVersion}/kernel/drivers/hwmon 31 + runHook postInstall 29 32 ''; 30 33 31 34 meta = with lib; {
+75 -45
pkgs/servers/http/showoff/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - addressable (2.6.0) 5 - public_suffix (>= 2.0.2, < 4.0) 6 - commonmarker (0.18.2) 7 - ruby-enum (~> 0.5) 8 - concurrent-ruby (1.1.5) 9 - daemons (1.3.1) 4 + addressable (2.8.7) 5 + public_suffix (>= 2.0.2, < 7.0) 6 + commonmarker (0.23.11) 7 + concurrent-ruby (1.3.5) 8 + csv (3.3.2) 9 + daemons (1.4.1) 10 10 em-websocket (0.3.8) 11 11 addressable (>= 2.1.1) 12 12 eventmachine (>= 0.12.9) 13 13 eventmachine (1.2.7) 14 14 fidget (0.0.6) 15 15 ruby-dbus (< 0.15.0) 16 - gli (2.18.0) 16 + gli (2.22.2) 17 + ostruct 17 18 htmlentities (4.3.4) 18 - i18n (1.6.0) 19 + i18n (1.14.7) 19 20 concurrent-ruby (~> 1.0) 20 - iso-639 (0.2.8) 21 - json (2.2.0) 22 - mini_portile2 (2.4.0) 23 - nokogiri (1.10.1) 24 - mini_portile2 (~> 2.4.0) 25 - parslet (1.8.2) 26 - public_suffix (3.0.3) 27 - rack (1.6.11) 28 - rack-contrib (1.8.0) 29 - rack (~> 1.4) 30 - rack-protection (1.5.5) 21 + iso-639 (0.3.8) 22 + csv 23 + json (2.10.1) 24 + mini_portile2 (2.8.8) 25 + mustermann (2.0.2) 26 + ruby2_keywords (~> 0.0.1) 27 + nokogiri (1.18.3) 28 + mini_portile2 (~> 2.8.2) 29 + racc (~> 1.4) 30 + nokogiri (1.18.3-aarch64-linux-gnu) 31 + racc (~> 1.4) 32 + nokogiri (1.18.3-aarch64-linux-musl) 33 + racc (~> 1.4) 34 + nokogiri (1.18.3-arm-linux-gnu) 35 + racc (~> 1.4) 36 + nokogiri (1.18.3-arm-linux-musl) 37 + racc (~> 1.4) 38 + nokogiri (1.18.3-arm64-darwin) 39 + racc (~> 1.4) 40 + nokogiri (1.18.3-x86_64-darwin) 41 + racc (~> 1.4) 42 + nokogiri (1.18.3-x86_64-linux-gnu) 43 + racc (~> 1.4) 44 + nokogiri (1.18.3-x86_64-linux-musl) 45 + racc (~> 1.4) 46 + ostruct (0.6.1) 47 + parslet (2.0.0) 48 + public_suffix (6.0.1) 49 + racc (1.8.1) 50 + rack (2.2.13) 51 + rack-contrib (2.5.0) 52 + rack (< 4) 53 + rack-protection (2.2.4) 31 54 rack 32 - redcarpet (3.4.0) 55 + redcarpet (3.6.1) 33 56 ruby-dbus (0.14.1) 34 - ruby-enum (0.7.2) 35 - i18n 36 - showoff (0.20.1) 37 - commonmarker 38 - fidget (>= 0.0.3) 39 - gli (>= 2.0) 40 - htmlentities 41 - i18n 42 - iso-639 43 - json 44 - nokogiri 45 - parslet 46 - rack-contrib 47 - redcarpet 48 - sinatra (~> 1.3) 49 - sinatra-websocket 50 - thin (~> 1.3) 51 - tilt (>= 2.0.3) 52 - sinatra (1.4.8) 53 - rack (~> 1.5) 54 - rack-protection (~> 1.4) 55 - tilt (>= 1.3, < 3) 57 + ruby2_keywords (0.0.5) 58 + showoff (0.20.4) 59 + commonmarker (~> 0.21) 60 + fidget (~> 0.0) 61 + gli (~> 2.20) 62 + htmlentities (~> 4.3) 63 + i18n (~> 1.8) 64 + iso-639 (~> 0.3) 65 + json (~> 2.5) 66 + nokogiri (~> 1.11) 67 + parslet (~> 2.0) 68 + rack-contrib (~> 2.3) 69 + redcarpet (~> 3.5) 70 + sinatra (~> 2.1) 71 + sinatra-websocket (~> 0.3) 72 + tilt (~> 2.0) 73 + sinatra (2.2.4) 74 + mustermann (~> 2.0) 75 + rack (~> 2.2) 76 + rack-protection (= 2.2.4) 77 + tilt (~> 2.0) 56 78 sinatra-websocket (0.3.1) 57 79 em-websocket (~> 0.3.6) 58 80 eventmachine 59 81 thin (>= 1.3.1, < 2.0.0) 60 - thin (1.7.2) 82 + thin (1.8.2) 61 83 daemons (~> 1.0, >= 1.0.9) 62 84 eventmachine (~> 1.0, >= 1.0.4) 63 85 rack (>= 1, < 3) 64 - tilt (2.0.9) 86 + tilt (2.6.0) 65 87 66 88 PLATFORMS 89 + aarch64-linux-gnu 90 + aarch64-linux-musl 91 + arm-linux-gnu 92 + arm-linux-musl 93 + arm64-darwin 67 94 ruby 95 + x86_64-darwin 96 + x86_64-linux-gnu 97 + x86_64-linux-musl 68 98 69 99 DEPENDENCIES 70 100 showoff 71 101 72 102 BUNDLED WITH 73 - 2.1.4 103 + 2.6.2
+133 -47
pkgs/servers/http/showoff/gemset.nix
··· 1 1 { 2 2 addressable = { 3 3 dependencies = [ "public_suffix" ]; 4 + groups = [ "default" ]; 5 + platforms = [ ]; 4 6 source = { 5 7 remotes = [ "https://rubygems.org" ]; 6 - sha256 = "0bcm2hchn897xjhqj9zzsxf3n9xhddymj4lsclz508f4vw3av46l"; 8 + sha256 = "0cl2qpvwiffym62z991ynks7imsm87qmgxf0yfsmlwzkgi9qcaa6"; 7 9 type = "gem"; 8 10 }; 9 - version = "2.6.0"; 11 + version = "2.8.7"; 10 12 }; 11 13 commonmarker = { 12 - dependencies = [ "ruby-enum" ]; 14 + groups = [ "default" ]; 15 + platforms = [ ]; 13 16 source = { 14 17 remotes = [ "https://rubygems.org" ]; 15 - sha256 = "122dy5mzx4p86flpzyg3raf742zp5ab9bjr7zk29p3ixpncf0rdk"; 18 + sha256 = "1gyjwd7in1nlf8zai2fxazxi8cy6xjzswdcjway520blb39ka7cx"; 16 19 type = "gem"; 17 20 }; 18 - version = "0.18.2"; 21 + version = "0.23.11"; 19 22 }; 20 23 concurrent-ruby = { 24 + groups = [ "default" ]; 25 + platforms = [ ]; 21 26 source = { 22 27 remotes = [ "https://rubygems.org" ]; 23 - sha256 = "1x07r23s7836cpp5z9yrlbpljcxpax14yw4fy4bnp6crhr6x24an"; 28 + sha256 = "1ipbrgvf0pp6zxdk5ascp6i29aybz2bx9wdrlchjmpx6mhvkwfw1"; 29 + type = "gem"; 30 + }; 31 + version = "1.3.5"; 32 + }; 33 + csv = { 34 + groups = [ "default" ]; 35 + platforms = [ ]; 36 + source = { 37 + remotes = [ "https://rubygems.org" ]; 38 + sha256 = "0kmx36jjh2sahd989vcvw74lrlv07dqc3rnxchc5sj2ywqsw3w3g"; 24 39 type = "gem"; 25 40 }; 26 - version = "1.1.5"; 41 + version = "3.3.2"; 27 42 }; 28 43 daemons = { 44 + groups = [ "default" ]; 45 + platforms = [ ]; 29 46 source = { 30 47 remotes = [ "https://rubygems.org" ]; 31 - sha256 = "0l5gai3vd4g7aqff0k1mp41j9zcsvm2rbwmqn115a325k9r7pf4w"; 48 + sha256 = "07cszb0zl8mqmwhc8a2yfg36vi6lbgrp4pa5bvmryrpcz9v6viwg"; 32 49 type = "gem"; 33 50 }; 34 - version = "1.3.1"; 51 + version = "1.4.1"; 35 52 }; 36 53 em-websocket = { 37 54 dependencies = [ ··· 63 80 version = "0.0.6"; 64 81 }; 65 82 gli = { 83 + dependencies = [ "ostruct" ]; 84 + groups = [ "default" ]; 85 + platforms = [ ]; 66 86 source = { 67 87 remotes = [ "https://rubygems.org" ]; 68 - sha256 = "133glfzsq67ykmdsgp251s9kddg9x4qki2jpbjv25h3hawlql4hs"; 88 + sha256 = "1c2x5wh3d3mz8vg5bs7c5is0zvc56j6a2b4biv5z1w5hi1n8s3jq"; 69 89 type = "gem"; 70 90 }; 71 - version = "2.18.0"; 91 + version = "2.22.2"; 72 92 }; 73 93 htmlentities = { 74 94 source = { ··· 80 100 }; 81 101 i18n = { 82 102 dependencies = [ "concurrent-ruby" ]; 103 + groups = [ "default" ]; 104 + platforms = [ ]; 83 105 source = { 84 106 remotes = [ "https://rubygems.org" ]; 85 - sha256 = "1hfxnlyr618s25xpafw9mypa82qppjccbh292c4l3bj36az7f6wl"; 107 + sha256 = "03sx3ahz1v5kbqjwxj48msw3maplpp2iyzs22l4jrzrqh4zmgfnf"; 86 108 type = "gem"; 87 109 }; 88 - version = "1.6.0"; 110 + version = "1.14.7"; 89 111 }; 90 112 iso-639 = { 113 + dependencies = [ "csv" ]; 114 + groups = [ "default" ]; 115 + platforms = [ ]; 91 116 source = { 92 117 remotes = [ "https://rubygems.org" ]; 93 - sha256 = "10k1gpkkbxbasgjzh4hd32ygxzjb5312rphipm46ryxkpx556zzz"; 118 + sha256 = "0dbmprc4j9qw6xjn7cs8s2sa1czfz1pf62bn6kd7ydjm9d511f28"; 94 119 type = "gem"; 95 120 }; 96 - version = "0.2.8"; 121 + version = "0.3.8"; 97 122 }; 98 123 json = { 124 + groups = [ "default" ]; 125 + platforms = [ ]; 99 126 source = { 100 127 remotes = [ "https://rubygems.org" ]; 101 - sha256 = "0sx97bm9by389rbzv8r1f43h06xcz8vwi3h5jv074gvparql7lcx"; 128 + sha256 = "1p4l5ycdxfsr8b51gnvlvhq6s21vmx9z4x617003zbqv3bcqmj6x"; 102 129 type = "gem"; 103 130 }; 104 - version = "2.2.0"; 131 + version = "2.10.1"; 105 132 }; 106 133 mini_portile2 = { 134 + groups = [ "default" ]; 135 + platforms = [ ]; 107 136 source = { 108 137 remotes = [ "https://rubygems.org" ]; 109 - sha256 = "15zplpfw3knqifj9bpf604rb3wc1vhq6363pd6lvhayng8wql5vy"; 138 + sha256 = "0x8asxl83msn815lwmb2d7q5p29p7drhjv5va0byhk60v9n16iwf"; 139 + type = "gem"; 140 + }; 141 + version = "2.8.8"; 142 + }; 143 + mustermann = { 144 + dependencies = [ "ruby2_keywords" ]; 145 + groups = [ "default" ]; 146 + platforms = [ ]; 147 + source = { 148 + remotes = [ "https://rubygems.org" ]; 149 + sha256 = "0m70qz27mlv2rhk4j1li6pw797gmiwwqg02vcgxcxr1rq2v53rnb"; 110 150 type = "gem"; 111 151 }; 112 - version = "2.4.0"; 152 + version = "2.0.2"; 113 153 }; 114 154 nokogiri = { 115 - dependencies = [ "mini_portile2" ]; 155 + dependencies = [ 156 + "mini_portile2" 157 + "racc" 158 + ]; 159 + groups = [ "default" ]; 160 + platforms = [ ]; 116 161 source = { 117 162 remotes = [ "https://rubygems.org" ]; 118 - sha256 = "09zll7c6j7xr6wyvh5mm5ncj6pkryp70ybcsxdbw1nyphx5dh184"; 163 + sha256 = "0npx535cs8qc33n0lpbbwl0p9fi3a5bczn6ayqhxvknh9yqw77vb"; 119 164 type = "gem"; 120 165 }; 121 - version = "1.10.1"; 166 + version = "1.18.3"; 167 + }; 168 + ostruct = { 169 + groups = [ "default" ]; 170 + platforms = [ ]; 171 + source = { 172 + remotes = [ "https://rubygems.org" ]; 173 + sha256 = "05xqijcf80sza5pnlp1c8whdaay8x5dc13214ngh790zrizgp8q9"; 174 + type = "gem"; 175 + }; 176 + version = "0.6.1"; 122 177 }; 123 178 parslet = { 179 + groups = [ "default" ]; 180 + platforms = [ ]; 124 181 source = { 125 182 remotes = [ "https://rubygems.org" ]; 126 - sha256 = "12nrzfwjphjlakb9pmpj70hgjwgzvnr8i1zfzddifgyd44vspl88"; 183 + sha256 = "01pnw6ymz6nynklqvqxs4bcai25kcvnd5x4id9z3vd1rbmlk0lfl"; 127 184 type = "gem"; 128 185 }; 129 - version = "1.8.2"; 186 + version = "2.0.0"; 130 187 }; 131 188 public_suffix = { 189 + groups = [ "default" ]; 190 + platforms = [ ]; 132 191 source = { 133 192 remotes = [ "https://rubygems.org" ]; 134 - sha256 = "08q64b5br692dd3v0a9wq9q5dvycc6kmiqmjbdxkxbfizggsvx6l"; 193 + sha256 = "0vqcw3iwby3yc6avs1vb3gfd0vcp2v7q310665dvxfswmcf4xm31"; 194 + type = "gem"; 195 + }; 196 + version = "6.0.1"; 197 + }; 198 + racc = { 199 + groups = [ "default" ]; 200 + platforms = [ ]; 201 + source = { 202 + remotes = [ "https://rubygems.org" ]; 203 + sha256 = "0byn0c9nkahsl93y9ln5bysq4j31q8xkf2ws42swighxd4lnjzsa"; 135 204 type = "gem"; 136 205 }; 137 - version = "3.0.3"; 206 + version = "1.8.1"; 138 207 }; 139 208 rack = { 209 + groups = [ "default" ]; 210 + platforms = [ ]; 140 211 source = { 141 212 remotes = [ "https://rubygems.org" ]; 142 - sha256 = "1g9926ln2lw12lfxm4ylq1h6nl0rafl10za3xvjzc87qvnqic87f"; 213 + sha256 = "1yzhcwvfkrlb8l79w24yjclv636jn6rnznp95shmssk934bi1vnc"; 143 214 type = "gem"; 144 215 }; 145 - version = "1.6.11"; 216 + version = "2.2.13"; 146 217 }; 147 218 rack-contrib = { 148 219 dependencies = [ "rack" ]; 220 + groups = [ "default" ]; 221 + platforms = [ ]; 149 222 source = { 150 223 remotes = [ "https://rubygems.org" ]; 151 - sha256 = "1l7m0av4pjl5p64l8j7pkip1jwhkp80a8kc2j7b9lrwh04fgx5wx"; 224 + sha256 = "00idlf24sd64y5mcvs6w0f5snam7mv6w8c1i2zwp0cla5gl2rgai"; 152 225 type = "gem"; 153 226 }; 154 - version = "1.8.0"; 227 + version = "2.5.0"; 155 228 }; 156 229 rack-protection = { 157 230 dependencies = [ "rack" ]; 231 + groups = [ "default" ]; 232 + platforms = [ ]; 158 233 source = { 159 234 remotes = [ "https://rubygems.org" ]; 160 - sha256 = "0my0wlw4a5l3hs79jkx2xzv7djhajgf8d28k8ai1ddlnxxb0v7ss"; 235 + sha256 = "1d6irsigm0i4ig1m47c94kixi3wb8jnxwvwkl8qxvyngmb73srl2"; 161 236 type = "gem"; 162 237 }; 163 - version = "1.5.5"; 238 + version = "2.2.4"; 164 239 }; 165 240 redcarpet = { 241 + groups = [ "default" ]; 242 + platforms = [ ]; 166 243 source = { 167 244 remotes = [ "https://rubygems.org" ]; 168 - sha256 = "0h9qz2hik4s9knpmbwrzb3jcp3vc5vygp9ya8lcpl7f1l9khmcd7"; 245 + sha256 = "0iglapqs4av4za9yfaac0lna7s16fq2xn36wpk380m55d8792i6l"; 169 246 type = "gem"; 170 247 }; 171 - version = "3.4.0"; 248 + version = "3.6.1"; 172 249 }; 173 250 ruby-dbus = { 174 251 source = { ··· 178 255 }; 179 256 version = "0.14.1"; 180 257 }; 181 - ruby-enum = { 182 - dependencies = [ "i18n" ]; 258 + ruby2_keywords = { 259 + groups = [ "default" ]; 260 + platforms = [ ]; 183 261 source = { 184 262 remotes = [ "https://rubygems.org" ]; 185 - sha256 = "0h62avini866kxpjzqxlqnajma3yvj0y25l6hn9h2mv5pp6fcrhx"; 263 + sha256 = "1vz322p8n39hz3b4a9gkmz9y7a5jaz41zrm2ywf31dvkqm03glgz"; 186 264 type = "gem"; 187 265 }; 188 - version = "0.7.2"; 266 + version = "0.0.5"; 189 267 }; 190 268 showoff = { 191 269 dependencies = [ ··· 202 280 "redcarpet" 203 281 "sinatra" 204 282 "sinatra-websocket" 205 - "thin" 206 283 "tilt" 207 284 ]; 285 + groups = [ "default" ]; 286 + platforms = [ ]; 208 287 source = { 209 288 remotes = [ "https://rubygems.org" ]; 210 - sha256 = "14884kh7vrp5b72dpn7q26h49y7igxqza72girkv1h28qx4kqw4r"; 289 + sha256 = "109v234fwjkawf8axm5mgn22jag3cql7p09hlkclpn77p35gwjqc"; 211 290 type = "gem"; 212 291 }; 213 - version = "0.20.1"; 292 + version = "0.20.4"; 214 293 }; 215 294 sinatra = { 216 295 dependencies = [ 296 + "mustermann" 217 297 "rack" 218 298 "rack-protection" 219 299 "tilt" 220 300 ]; 301 + groups = [ "default" ]; 302 + platforms = [ ]; 221 303 source = { 222 304 remotes = [ "https://rubygems.org" ]; 223 - sha256 = "0byxzl7rx3ki0xd7aiv1x8mbah7hzd8f81l65nq8857kmgzj1jqq"; 305 + sha256 = "0wkc079h6hzq737j4wycpnv7c38mhd0rl33pszyy7768zzvyjc9y"; 224 306 type = "gem"; 225 307 }; 226 - version = "1.4.8"; 308 + version = "2.2.4"; 227 309 }; 228 310 sinatra-websocket = { 229 311 dependencies = [ ··· 244 326 "eventmachine" 245 327 "rack" 246 328 ]; 329 + groups = [ "default" ]; 330 + platforms = [ ]; 247 331 source = { 248 332 remotes = [ "https://rubygems.org" ]; 249 - sha256 = "0nagbf9pwy1vg09k6j4xqhbjjzrg5dwzvkn4ffvlj76fsn6vv61f"; 333 + sha256 = "08g1yq6zzvgndj8fd98ah7pp8g2diw28p8bfjgv7rvjvp8d2am8w"; 250 334 type = "gem"; 251 335 }; 252 - version = "1.7.2"; 336 + version = "1.8.2"; 253 337 }; 254 338 tilt = { 339 + groups = [ "default" ]; 340 + platforms = [ ]; 255 341 source = { 256 342 remotes = [ "https://rubygems.org" ]; 257 - sha256 = "0ca4k0clwf0rkvy7726x4nxpjxkpv67w043i39saxgldxd97zmwz"; 343 + sha256 = "0szpapi229v3scrvw1pgy0vpjm7z3qlf58m1198kxn70cs278g96"; 258 344 type = "gem"; 259 345 }; 260 - version = "2.0.9"; 346 + version = "2.6.0"; 261 347 }; 262 348 }
+26 -6
pkgs/servers/monitoring/riemann-dash/Gemfile.lock
··· 2 2 remote: https://rubygems.org/ 3 3 specs: 4 4 erubis (2.7.0) 5 - ffi (1.10.0) 5 + ffi (1.17.1) 6 + ffi (1.17.1-aarch64-linux-gnu) 7 + ffi (1.17.1-aarch64-linux-musl) 8 + ffi (1.17.1-arm-linux-gnu) 9 + ffi (1.17.1-arm-linux-musl) 10 + ffi (1.17.1-arm64-darwin) 11 + ffi (1.17.1-x86-linux-gnu) 12 + ffi (1.17.1-x86-linux-musl) 13 + ffi (1.17.1-x86_64-darwin) 14 + ffi (1.17.1-x86_64-linux-gnu) 15 + ffi (1.17.1-x86_64-linux-musl) 6 16 multi_json (1.3.6) 7 - rack (1.6.11) 17 + rack (1.6.13) 8 18 rack-protection (1.5.5) 9 19 rack 10 - rb-fsevent (0.10.3) 11 - rb-inotify (0.10.0) 20 + rb-fsevent (0.11.2) 21 + rb-inotify (0.11.1) 12 22 ffi (~> 1.0) 13 23 riemann-dash (0.2.14) 14 24 erubis (>= 2.7.0) ··· 25 35 rack (~> 1.5) 26 36 rack-protection (~> 1.4) 27 37 tilt (>= 1.3, < 3) 28 - tilt (2.0.9) 38 + tilt (2.6.0) 29 39 webrick (1.3.1) 30 40 31 41 PLATFORMS 42 + aarch64-linux-gnu 43 + aarch64-linux-musl 44 + arm-linux-gnu 45 + arm-linux-musl 46 + arm64-darwin 32 47 ruby 48 + x86-linux-gnu 49 + x86-linux-musl 50 + x86_64-darwin 51 + x86_64-linux-gnu 52 + x86_64-linux-musl 33 53 34 54 DEPENDENCIES 35 55 riemann-dash (= 0.2.14) 36 56 37 57 BUNDLED WITH 38 - 2.1.4 58 + 2.6.2
+10 -10
pkgs/servers/monitoring/riemann-dash/gemset.nix
··· 14 14 platforms = [ ]; 15 15 source = { 16 16 remotes = [ "https://rubygems.org" ]; 17 - sha256 = "0j8pzj8raxbir5w5k6s7a042sb5k02pg0f8s4na1r5lan901j00p"; 17 + sha256 = "0fgwn1grxf4zxmyqmb9i4z2hr111585n9jnk17y6y7hhs7dv1xi6"; 18 18 type = "gem"; 19 19 }; 20 - version = "1.10.0"; 20 + version = "1.17.1"; 21 21 }; 22 22 multi_json = { 23 23 groups = [ "default" ]; ··· 34 34 platforms = [ ]; 35 35 source = { 36 36 remotes = [ "https://rubygems.org" ]; 37 - sha256 = "1g9926ln2lw12lfxm4ylq1h6nl0rafl10za3xvjzc87qvnqic87f"; 37 + sha256 = "0wr1f3g9rc9i8svfxa9cijajl1661d817s56b2w7rd572zwn0zi0"; 38 38 type = "gem"; 39 39 }; 40 - version = "1.6.11"; 40 + version = "1.6.13"; 41 41 }; 42 42 rack-protection = { 43 43 dependencies = [ "rack" ]; ··· 55 55 platforms = [ ]; 56 56 source = { 57 57 remotes = [ "https://rubygems.org" ]; 58 - sha256 = "1lm1k7wpz69jx7jrc92w3ggczkjyjbfziq5mg62vjnxmzs383xx8"; 58 + sha256 = "1zmf31rnpm8553lqwibvv3kkx0v7majm1f341xbxc0bk5sbhp423"; 59 59 type = "gem"; 60 60 }; 61 - version = "0.10.3"; 61 + version = "0.11.2"; 62 62 }; 63 63 rb-inotify = { 64 64 dependencies = [ "ffi" ]; ··· 66 66 platforms = [ ]; 67 67 source = { 68 68 remotes = [ "https://rubygems.org" ]; 69 - sha256 = "1fs7hxm9g6ywv2yih83b879klhc4fs8i0p9166z795qmd77dk0a4"; 69 + sha256 = "0vmy8xgahixcz6hzwy4zdcyn2y6d6ri8dqv5xccgzc1r292019x0"; 70 70 type = "gem"; 71 71 }; 72 - version = "0.10.0"; 72 + version = "0.11.1"; 73 73 }; 74 74 riemann-dash = { 75 75 dependencies = [ ··· 133 133 platforms = [ ]; 134 134 source = { 135 135 remotes = [ "https://rubygems.org" ]; 136 - sha256 = "0ca4k0clwf0rkvy7726x4nxpjxkpv67w043i39saxgldxd97zmwz"; 136 + sha256 = "0szpapi229v3scrvw1pgy0vpjm7z3qlf58m1198kxn70cs278g96"; 137 137 type = "gem"; 138 138 }; 139 - version = "2.0.9"; 139 + version = "2.6.0"; 140 140 }; 141 141 webrick = { 142 142 groups = [ "default" ];
+11 -8
pkgs/servers/web-apps/discourse/default.nix
··· 438 438 runHook postInstall 439 439 ''; 440 440 441 - meta = with lib; { 442 - homepage = "https://www.discourse.org/"; 443 - platforms = platforms.linux; 444 - maintainers = with maintainers; [ talyz ]; 445 - license = licenses.gpl2Plus; 446 - description = "Discourse is an open source discussion platform"; 447 - }; 448 - 449 441 passthru = { 450 442 inherit 451 443 rubyEnv ··· 466 458 inherit pkgs; 467 459 package = pkgs.discourse.override args; 468 460 }; 461 + }; 462 + 463 + meta = with lib; { 464 + homepage = "https://www.discourse.org/"; 465 + platforms = platforms.linux; 466 + maintainers = with maintainers; [ talyz ]; 467 + license = licenses.gpl2Plus; 468 + description = "Discourse is an open source discussion platform"; 469 + # fails to compile mini_racer: 470 + # mini_racer_v8.cc:316:45: error: no matching function for call to 'v8::ScriptOrigin::ScriptOrigin(v8::Local<v8::String>&)' 471 + broken = true; 469 472 }; 470 473 }; 471 474 in
+2
pkgs/tools/misc/anystyle-cli/default.nix
··· 41 41 maintainers = with maintainers; [ shamilton ]; 42 42 mainProgram = "anystyle"; 43 43 platforms = platforms.unix; 44 + # error: passing argument 2 of 'rb_hash_foreach' from incompatible pointer type [-Wincompatible-pointer-types] 45 + broken = true; 44 46 }; 45 47 }
+93 -90
pkgs/tools/misc/fluentd/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - addressable (2.8.1) 5 - public_suffix (>= 2.0.2, < 6.0) 6 - aws-eventstream (1.2.0) 7 - aws-partitions (1.677.0) 8 - aws-sdk-cloudwatchlogs (1.58.0) 9 - aws-sdk-core (~> 3, >= 3.165.0) 10 - aws-sigv4 (~> 1.1) 11 - aws-sdk-core (3.168.4) 12 - aws-eventstream (~> 1, >= 1.0.2) 13 - aws-partitions (~> 1, >= 1.651.0) 4 + addressable (2.8.7) 5 + public_suffix (>= 2.0.2, < 7.0) 6 + aws-eventstream (1.3.2) 7 + aws-partitions (1.1064.0) 8 + aws-sdk-cloudwatchlogs (1.109.0) 9 + aws-sdk-core (~> 3, >= 3.216.0) 14 10 aws-sigv4 (~> 1.5) 11 + aws-sdk-core (3.220.1) 12 + aws-eventstream (~> 1, >= 1.3.0) 13 + aws-partitions (~> 1, >= 1.992.0) 14 + aws-sigv4 (~> 1.9) 15 + base64 15 16 jmespath (~> 1, >= 1.6.1) 16 - nokogiri (~> 1.0) 17 - aws-sdk-firehose (1.50.0) 18 - aws-sdk-core (~> 3, >= 3.165.0) 19 - aws-sigv4 (~> 1.1) 20 - aws-sdk-kinesis (1.42.0) 21 - aws-sdk-core (~> 3, >= 3.165.0) 22 - aws-sigv4 (~> 1.1) 23 - aws-sdk-kms (1.61.0) 24 - aws-sdk-core (~> 3, >= 3.165.0) 25 - aws-sigv4 (~> 1.1) 26 - aws-sdk-s3 (1.117.2) 27 - aws-sdk-core (~> 3, >= 3.165.0) 17 + aws-sdk-firehose (1.89.0) 18 + aws-sdk-core (~> 3, >= 3.216.0) 19 + aws-sigv4 (~> 1.5) 20 + aws-sdk-kinesis (1.74.0) 21 + aws-sdk-core (~> 3, >= 3.216.0) 22 + aws-sigv4 (~> 1.5) 23 + aws-sdk-kms (1.99.0) 24 + aws-sdk-core (~> 3, >= 3.216.0) 25 + aws-sigv4 (~> 1.5) 26 + aws-sdk-s3 (1.182.0) 27 + aws-sdk-core (~> 3, >= 3.216.0) 28 28 aws-sdk-kms (~> 1) 29 - aws-sigv4 (~> 1.4) 30 - aws-sdk-sqs (1.52.1) 31 - aws-sdk-core (~> 3, >= 3.165.0) 32 - aws-sigv4 (~> 1.1) 33 - aws-sigv4 (1.5.2) 29 + aws-sigv4 (~> 1.5) 30 + aws-sdk-sqs (1.93.0) 31 + aws-sdk-core (~> 3, >= 3.216.0) 32 + aws-sigv4 (~> 1.5) 33 + aws-sigv4 (1.11.0) 34 34 aws-eventstream (~> 1, >= 1.0.2) 35 + base64 (0.2.0) 35 36 bson (4.15.0) 36 - concurrent-ruby (1.1.10) 37 - cool.io (1.7.1) 38 - digest-crc (0.6.4) 37 + concurrent-ruby (1.3.5) 38 + cool.io (1.9.0) 39 + csv (3.3.2) 40 + digest-crc (0.7.0) 39 41 rake (>= 12.0.0, < 14.0.0) 40 - elastic-transport (8.1.0) 42 + drb (2.2.1) 43 + elastic-transport (8.4.0) 41 44 faraday (< 3) 42 45 multi_json 43 - elasticsearch (8.5.2) 44 - elastic-transport (~> 8) 45 - elasticsearch-api (= 8.5.2) 46 - elasticsearch-api (8.5.2) 46 + elasticsearch (8.17.1) 47 + elastic-transport (~> 8.3) 48 + elasticsearch-api (= 8.17.1) 49 + elasticsearch-api (8.17.1) 47 50 multi_json 48 - excon (0.95.0) 49 - faraday (1.10.2) 50 - faraday-em_http (~> 1.0) 51 - faraday-em_synchrony (~> 1.0) 52 - faraday-excon (~> 1.1) 53 - faraday-httpclient (~> 1.0) 54 - faraday-multipart (~> 1.0) 55 - faraday-net_http (~> 1.0) 56 - faraday-net_http_persistent (~> 1.0) 57 - faraday-patron (~> 1.0) 58 - faraday-rack (~> 1.0) 59 - faraday-retry (~> 1.0) 60 - ruby2_keywords (>= 0.0.4) 61 - faraday-em_http (1.0.0) 62 - faraday-em_synchrony (1.0.0) 63 - faraday-excon (1.1.0) 64 - faraday-httpclient (1.0.1) 65 - faraday-multipart (1.0.4) 66 - multipart-post (~> 2) 67 - faraday-net_http (1.0.1) 68 - faraday-net_http_persistent (1.2.0) 69 - faraday-patron (1.0.0) 70 - faraday-rack (1.0.0) 71 - faraday-retry (1.0.3) 51 + excon (1.2.5) 52 + logger 53 + faraday (2.12.2) 54 + faraday-net_http (>= 2.0, < 3.5) 55 + json 56 + logger 57 + faraday-excon (2.3.0) 58 + excon (>= 1.0.0) 59 + faraday (>= 2.11.0, < 3) 60 + faraday-net_http (3.4.0) 61 + net-http (>= 0.5.0) 72 62 fluent-config-regexp-type (1.0.0) 73 63 fluentd (> 1.0.0, < 2) 74 64 fluent-plugin-cloudwatch-logs (0.14.3) ··· 76 66 fluentd (>= 1.8.0) 77 67 fluent-plugin-concat (2.5.0) 78 68 fluentd (>= 0.14.0, < 2) 79 - fluent-plugin-elasticsearch (5.2.4) 69 + fluent-plugin-elasticsearch (5.4.3) 80 70 elasticsearch 81 71 excon 82 - faraday (~> 1.10) 72 + faraday (>= 2.0.0) 73 + faraday-excon (>= 2.0.0) 83 74 fluentd (>= 0.14.22) 84 - fluent-plugin-kafka (0.18.1) 75 + fluent-plugin-kafka (0.19.3) 85 76 fluentd (>= 0.10.58, < 2) 86 77 ltsv 87 - ruby-kafka (>= 1.4.0, < 2) 88 - fluent-plugin-kinesis (3.4.2) 78 + ruby-kafka (>= 1.5.0, < 2) 79 + fluent-plugin-kinesis (3.5.0) 89 80 aws-sdk-firehose (~> 1, != 1.9, != 1.5, != 1.15) 90 81 aws-sdk-kinesis (~> 1, != 1.5, != 1.4, != 1.14) 91 82 fluentd (>= 0.14.22, < 2) ··· 98 89 fluent-plugin-rewrite-tag-filter (2.4.0) 99 90 fluent-config-regexp-type 100 91 fluentd (>= 0.14.2, < 2) 101 - fluent-plugin-s3 (1.7.2) 92 + fluent-plugin-s3 (1.8.3) 102 93 aws-sdk-s3 (~> 1.60) 103 94 aws-sdk-sqs (~> 1.23) 104 95 fluentd (>= 0.14.22, < 2) 105 - fluent-plugin-webhdfs (1.5.0) 96 + fluent-plugin-webhdfs (1.6.0) 106 97 fluentd (>= 0.14.22) 107 - webhdfs (>= 0.10.0) 108 - fluentd (1.15.3) 98 + webhdfs (>= 0.11.0) 99 + fluentd (1.18.0) 100 + base64 (~> 0.2) 109 101 bundler 110 102 cool.io (>= 1.4.5, < 2.0.0) 103 + csv (~> 3.2) 104 + drb (~> 2.2) 111 105 http_parser.rb (>= 0.5.1, < 0.9.0) 106 + logger (~> 1.6) 112 107 msgpack (>= 1.3.1, < 2.0.0) 113 - serverengine (>= 2.3.0, < 3.0.0) 114 - sigdump (~> 0.2.2) 108 + serverengine (>= 2.3.2, < 3.0.0) 109 + sigdump (~> 0.2.5) 115 110 strptime (>= 0.2.4, < 1.0.0) 116 111 tzinfo (>= 1.0, < 3.0) 117 112 tzinfo-data (~> 1.0) 118 - webrick (>= 1.4.2, < 1.8.0) 113 + webrick (~> 1.4) 119 114 yajl-ruby (~> 1.0) 120 - google-protobuf (3.21.12) 115 + google-protobuf (3.25.6) 116 + google-protobuf (3.25.6-aarch64-linux) 117 + google-protobuf (3.25.6-arm64-darwin) 118 + google-protobuf (3.25.6-x86-linux) 119 + google-protobuf (3.25.6-x86_64-darwin) 121 120 http_parser.rb (0.8.0) 122 121 jmespath (1.6.2) 122 + json (2.10.1) 123 + logger (1.6.6) 123 124 ltsv (0.1.2) 124 - mini_portile2 (2.8.2) 125 - mongo (2.18.2) 125 + mongo (2.18.3) 126 126 bson (>= 4.14.1, < 5.0.0) 127 - msgpack (1.6.0) 127 + msgpack (1.8.0) 128 128 multi_json (1.15.0) 129 - multipart-post (2.2.3) 130 - nokogiri (1.15.2) 131 - mini_portile2 (2.8.2) 132 - racc (1.6.2) 133 - public_suffix (5.0.1) 134 - racc (1.6.2) 135 - rake (13.0.6) 129 + net-http (0.6.0) 130 + uri 131 + public_suffix (6.0.1) 132 + rake (13.2.1) 136 133 ruby-kafka (1.5.0) 137 134 digest-crc 138 - ruby2_keywords (0.0.5) 139 - serverengine (2.3.0) 135 + serverengine (2.4.0) 136 + base64 (~> 0.1) 137 + logger (~> 1.4) 140 138 sigdump (~> 0.2.2) 141 - sigdump (0.2.4) 139 + sigdump (0.2.5) 142 140 strptime (0.2.5) 143 - tzinfo (2.0.5) 141 + tzinfo (2.0.6) 144 142 concurrent-ruby (~> 1.0) 145 - tzinfo-data (1.2022.7) 143 + tzinfo-data (1.2025.1) 146 144 tzinfo (>= 1.0.0) 147 - webhdfs (0.10.2) 145 + uri (1.0.3) 146 + webhdfs (0.11.0) 148 147 addressable 149 - webrick (1.7.0) 148 + webrick (1.9.1) 150 149 yajl-ruby (1.4.3) 151 150 152 151 PLATFORMS 152 + aarch64-linux 153 + arm64-darwin 153 154 ruby 155 + x86-linux 156 + x86_64-darwin 154 157 155 158 DEPENDENCIES 156 159 fluent-plugin-cloudwatch-logs ··· 166 169 fluentd 167 170 168 171 BUNDLED WITH 169 - 2.3.26 172 + 2.6.2
+159 -228
pkgs/tools/misc/fluentd/gemset.nix
··· 1 1 { 2 - mini_portile2 = { 3 - groups = [ 4 - "default" 5 - "development" 6 - "test" 7 - ]; 8 - platforms = [ ]; 9 - source = { 10 - remotes = [ "https://rubygems.org" ]; 11 - sha256 = "0z7f38iq37h376n9xbl4gajdrnwzq284c9v1py4imw3gri2d5cj6"; 12 - type = "gem"; 13 - }; 14 - version = "2.8.2"; 15 - }; 16 - racc = { 17 - groups = [ 18 - "default" 19 - "development" 20 - "test" 21 - ]; 22 - platforms = [ ]; 23 - source = { 24 - remotes = [ "https://rubygems.org" ]; 25 - sha256 = "09jgz6r0f7v84a7jz9an85q8vvmp743dqcsdm3z9c8rqcqv6pljq"; 26 - type = "gem"; 27 - }; 28 - version = "1.6.2"; 29 - }; 30 - nokogiri = { 31 - dependencies = [ 32 - "mini_portile2" 33 - "racc" 34 - ]; 35 - groups = [ 36 - "default" 37 - "development" 38 - "test" 39 - ]; 40 - platforms = [ ]; 41 - source = { 42 - remotes = [ "https://rubygems.org" ]; 43 - sha256 = "1mr2ibfk874ncv0qbdkynay738w2mfinlkhnbd5lyk5yiw5q1p10"; 44 - type = "gem"; 45 - }; 46 - version = "1.15.2"; 47 - }; 48 2 addressable = { 49 3 dependencies = [ "public_suffix" ]; 50 4 groups = [ "default" ]; 51 5 platforms = [ ]; 52 6 source = { 53 7 remotes = [ "https://rubygems.org" ]; 54 - sha256 = "1ypdmpdn20hxp5vwxz3zc04r5xcwqc25qszdlg41h8ghdqbllwmw"; 8 + sha256 = "0cl2qpvwiffym62z991ynks7imsm87qmgxf0yfsmlwzkgi9qcaa6"; 55 9 type = "gem"; 56 10 }; 57 - version = "2.8.1"; 11 + version = "2.8.7"; 58 12 }; 59 13 aws-eventstream = { 60 14 groups = [ "default" ]; 61 15 platforms = [ ]; 62 16 source = { 63 17 remotes = [ "https://rubygems.org" ]; 64 - sha256 = "1pyis1nvnbjxk12a43xvgj2gv0mvp4cnkc1gzw0v1018r61399gz"; 18 + sha256 = "1mvjjn8vh1c3nhibmjj9qcwxagj6m9yy961wblfqdmvhr9aklb3y"; 65 19 type = "gem"; 66 20 }; 67 - version = "1.2.0"; 21 + version = "1.3.2"; 68 22 }; 69 23 aws-partitions = { 70 24 groups = [ "default" ]; 71 25 platforms = [ ]; 72 26 source = { 73 27 remotes = [ "https://rubygems.org" ]; 74 - sha256 = "1c6w07lm5ssn0v06sh90g3swqb42ma65pfz0qlk3hqlj1fs5zd9b"; 28 + sha256 = "0jdajznsdc0niv68xqp9sv29l9piyn32grq1y367l14hbm17mnf2"; 75 29 type = "gem"; 76 30 }; 77 - version = "1.677.0"; 31 + version = "1.1064.0"; 78 32 }; 79 33 aws-sdk-cloudwatchlogs = { 80 34 dependencies = [ ··· 85 39 platforms = [ ]; 86 40 source = { 87 41 remotes = [ "https://rubygems.org" ]; 88 - sha256 = "0yhwbr3g9brh7g8vjxygfvhlc9sa04g5bzyhkdcdkl7faqpy93z3"; 42 + sha256 = "1izd0al8i8wmi0cx18w4y8nriw623c21rb7c8vwpgk4mzd2kqxhw"; 89 43 type = "gem"; 90 44 }; 91 - version = "1.58.0"; 45 + version = "1.109.0"; 92 46 }; 93 47 aws-sdk-core = { 94 48 dependencies = [ 95 49 "aws-eventstream" 96 50 "aws-partitions" 97 51 "aws-sigv4" 52 + "base64" 98 53 "jmespath" 99 - "nokogiri" 100 54 ]; 101 55 groups = [ "default" ]; 102 56 platforms = [ ]; 103 57 source = { 104 58 remotes = [ "https://rubygems.org" ]; 105 - sha256 = "131acgw2hi893n0dfbczs42bkc41afhyrmd9w8zx5y8r1k5zd6rc"; 59 + sha256 = "0cjdqmy5hjbgzc0iac1i143va76qgp7jc7hg1aviy1n8cgywq44y"; 106 60 type = "gem"; 107 61 }; 108 - version = "3.168.4"; 62 + version = "3.220.1"; 109 63 }; 110 64 aws-sdk-firehose = { 111 65 dependencies = [ ··· 116 70 platforms = [ ]; 117 71 source = { 118 72 remotes = [ "https://rubygems.org" ]; 119 - sha256 = "02lznpqdmla1i5ilxn6kkbdwasl2w4m9ml09whig9wwrlwjfkdnm"; 73 + sha256 = "1sryh7fjg525ddwlbd37mi3ygjcc6qn9r0md64d6ssrvk2ah0v1i"; 120 74 type = "gem"; 121 75 }; 122 - version = "1.50.0"; 76 + version = "1.89.0"; 123 77 }; 124 78 aws-sdk-kinesis = { 125 79 dependencies = [ ··· 130 84 platforms = [ ]; 131 85 source = { 132 86 remotes = [ "https://rubygems.org" ]; 133 - sha256 = "0n6jdkcyh9cm4f15zmmgpzwxbal5dg2w17xcm65d1gf9dwajsjda"; 87 + sha256 = "1qfwsc373a674y8xcy8g1ykc84d21vbz0dqpbh1f1k2mny2cxz7s"; 134 88 type = "gem"; 135 89 }; 136 - version = "1.42.0"; 90 + version = "1.74.0"; 137 91 }; 138 92 aws-sdk-kms = { 139 93 dependencies = [ ··· 144 98 platforms = [ ]; 145 99 source = { 146 100 remotes = [ "https://rubygems.org" ]; 147 - sha256 = "0ajp7yvnf95d60xmg618xznfwsy8h1vrkzj33r1bsf2gsfp50vzy"; 101 + sha256 = "1a3mh89kfh6flqxw48wfv9wfwkj2zxazw096mqm56wnnzz1jyads"; 148 102 type = "gem"; 149 103 }; 150 - version = "1.61.0"; 104 + version = "1.99.0"; 151 105 }; 152 106 aws-sdk-s3 = { 153 107 dependencies = [ ··· 159 113 platforms = [ ]; 160 114 source = { 161 115 remotes = [ "https://rubygems.org" ]; 162 - sha256 = "1xpb8c8zw1c0grbw1rcc0ynlys1301vm9kkqy4ls3i2zqk5v6n91"; 116 + sha256 = "03a55dbihv6xvgfwhx0f35rwc7q3rr0555vfpxlwpdjw75wkbz6h"; 163 117 type = "gem"; 164 118 }; 165 - version = "1.117.2"; 119 + version = "1.182.0"; 166 120 }; 167 121 aws-sdk-sqs = { 168 122 dependencies = [ ··· 173 127 platforms = [ ]; 174 128 source = { 175 129 remotes = [ "https://rubygems.org" ]; 176 - sha256 = "1hirj20g7nnyf0xhxwvgfl12nypm1r5id16ccc8y1rbasclxs897"; 130 + sha256 = "16b5jdnmk93l86nnqpij4zac7srx8c2yvx07xxbazmkawcnrd27g"; 177 131 type = "gem"; 178 132 }; 179 - version = "1.52.1"; 133 + version = "1.93.0"; 180 134 }; 181 135 aws-sigv4 = { 182 136 dependencies = [ "aws-eventstream" ]; ··· 184 138 platforms = [ ]; 185 139 source = { 186 140 remotes = [ "https://rubygems.org" ]; 187 - sha256 = "11hkna2av47bl0yprgp8k4ya70rc3m2ib5w10fn0piplgkkmhz7m"; 141 + sha256 = "1nx1il781qg58nwjkkdn9fw741cjjnixfsh389234qm8j5lpka2h"; 188 142 type = "gem"; 189 143 }; 190 - version = "1.5.2"; 144 + version = "1.11.0"; 145 + }; 146 + base64 = { 147 + groups = [ "default" ]; 148 + platforms = [ ]; 149 + source = { 150 + remotes = [ "https://rubygems.org" ]; 151 + sha256 = "01qml0yilb9basf7is2614skjp8384h2pycfx86cr8023arfj98g"; 152 + type = "gem"; 153 + }; 154 + version = "0.2.0"; 191 155 }; 192 156 bson = { 193 157 groups = [ "default" ]; ··· 204 168 platforms = [ ]; 205 169 source = { 206 170 remotes = [ "https://rubygems.org" ]; 207 - sha256 = "0s4fpn3mqiizpmpy2a24k4v365pv75y50292r8ajrv4i1p5b2k14"; 171 + sha256 = "1ipbrgvf0pp6zxdk5ascp6i29aybz2bx9wdrlchjmpx6mhvkwfw1"; 208 172 type = "gem"; 209 173 }; 210 - version = "1.1.10"; 174 + version = "1.3.5"; 211 175 }; 212 176 "cool.io" = { 213 177 groups = [ "default" ]; 214 178 platforms = [ ]; 215 179 source = { 216 180 remotes = [ "https://rubygems.org" ]; 217 - sha256 = "0dfq4h168wzvs9cvn2mm8648ynkl936pgjva2p8ik34p6d620537"; 181 + sha256 = "0cl3ri6zsnpm3hixmlkrmyjir1w7m9szjfizwvccn05qb40a4apa"; 182 + type = "gem"; 183 + }; 184 + version = "1.9.0"; 185 + }; 186 + csv = { 187 + groups = [ "default" ]; 188 + platforms = [ ]; 189 + source = { 190 + remotes = [ "https://rubygems.org" ]; 191 + sha256 = "0kmx36jjh2sahd989vcvw74lrlv07dqc3rnxchc5sj2ywqsw3w3g"; 218 192 type = "gem"; 219 193 }; 220 - version = "1.7.1"; 194 + version = "3.3.2"; 221 195 }; 222 196 digest-crc = { 223 197 dependencies = [ "rake" ]; ··· 225 199 platforms = [ ]; 226 200 source = { 227 201 remotes = [ "https://rubygems.org" ]; 228 - sha256 = "1czaak53w8n13y1fr0q23gp0fhklvxjac5n562qj3xk6sh5ad0x2"; 202 + sha256 = "01wcsyhaadss4zzvqh12kvbq3hmkl5y4fck7pr608hd24qxc5bb4"; 203 + type = "gem"; 204 + }; 205 + version = "0.7.0"; 206 + }; 207 + drb = { 208 + groups = [ "default" ]; 209 + platforms = [ ]; 210 + source = { 211 + remotes = [ "https://rubygems.org" ]; 212 + sha256 = "0h5kbj9hvg5hb3c7l425zpds0vb42phvln2knab8nmazg2zp5m79"; 229 213 type = "gem"; 230 214 }; 231 - version = "0.6.4"; 215 + version = "2.2.1"; 232 216 }; 233 217 elastic-transport = { 234 218 dependencies = [ ··· 239 223 platforms = [ ]; 240 224 source = { 241 225 remotes = [ "https://rubygems.org" ]; 242 - sha256 = "0w5l26fwyby8pjcyyap015q5lxc619j8ig6af5slbp9l2x7kjaby"; 226 + sha256 = "0xz5q3zlbkwdb9zipallvqxdw6gnz8ljyz4w7b3pv1lar43f9sdm"; 243 227 type = "gem"; 244 228 }; 245 - version = "8.1.0"; 229 + version = "8.4.0"; 246 230 }; 247 231 elasticsearch = { 248 232 dependencies = [ ··· 253 237 platforms = [ ]; 254 238 source = { 255 239 remotes = [ "https://rubygems.org" ]; 256 - sha256 = "0mwrf667p3n0xdashlk3m66a7vcqsg4vnr5icm7jgdd71qr4yvds"; 240 + sha256 = "1nbwd1f5s060hiqcs2bmwzvsli3l3vcyyd3khxcxzzxvysqq0zb9"; 257 241 type = "gem"; 258 242 }; 259 - version = "8.5.2"; 243 + version = "8.17.1"; 260 244 }; 261 245 elasticsearch-api = { 262 246 dependencies = [ "multi_json" ]; ··· 264 248 platforms = [ ]; 265 249 source = { 266 250 remotes = [ "https://rubygems.org" ]; 267 - sha256 = "138s5rcy5j63sjf6k8av8gaxn46nh8nf1bwxyxfygyy3q2q9m4vs"; 251 + sha256 = "1iwl70xid303nyhfv5342yj5kk37rjbgdzkjdi83fnvyhisi5166"; 268 252 type = "gem"; 269 253 }; 270 - version = "8.5.2"; 254 + version = "8.17.1"; 271 255 }; 272 256 excon = { 257 + dependencies = [ "logger" ]; 273 258 groups = [ "default" ]; 274 259 platforms = [ ]; 275 260 source = { 276 261 remotes = [ "https://rubygems.org" ]; 277 - sha256 = "08idrrnpwzr87wc5yhyv6id1f6zigr3nfn45mff01605b0zghdby"; 262 + sha256 = "17asr18vawi08g3wbif0wdi8bnyj01d125saydl9j1f03fv0n16a"; 278 263 type = "gem"; 279 264 }; 280 - version = "0.95.0"; 265 + version = "1.2.5"; 281 266 }; 282 267 faraday = { 283 268 dependencies = [ 284 - "faraday-em_http" 285 - "faraday-em_synchrony" 286 - "faraday-excon" 287 - "faraday-httpclient" 288 - "faraday-multipart" 289 269 "faraday-net_http" 290 - "faraday-net_http_persistent" 291 - "faraday-patron" 292 - "faraday-rack" 293 - "faraday-retry" 294 - "ruby2_keywords" 270 + "json" 271 + "logger" 295 272 ]; 296 273 groups = [ "default" ]; 297 274 platforms = [ ]; 298 275 source = { 299 276 remotes = [ "https://rubygems.org" ]; 300 - sha256 = "1d5ipsv069dhgv9zhxgj8pz4j52yhgvfm01aq881yz7qgjd7ilxp"; 301 - type = "gem"; 302 - }; 303 - version = "1.10.2"; 304 - }; 305 - faraday-em_http = { 306 - groups = [ "default" ]; 307 - platforms = [ ]; 308 - source = { 309 - remotes = [ "https://rubygems.org" ]; 310 - sha256 = "12cnqpbak4vhikrh2cdn94assh3yxza8rq2p9w2j34bqg5q4qgbs"; 311 - type = "gem"; 312 - }; 313 - version = "1.0.0"; 314 - }; 315 - faraday-em_synchrony = { 316 - groups = [ "default" ]; 317 - platforms = [ ]; 318 - source = { 319 - remotes = [ "https://rubygems.org" ]; 320 - sha256 = "1vgrbhkp83sngv6k4mii9f2s9v5lmp693hylfxp2ssfc60fas3a6"; 277 + sha256 = "1mls9g490k63rdmjc9shqshqzznfn1y21wawkxrwp2vvbk13jwqm"; 321 278 type = "gem"; 322 279 }; 323 - version = "1.0.0"; 280 + version = "2.12.2"; 324 281 }; 325 282 faraday-excon = { 283 + dependencies = [ 284 + "excon" 285 + "faraday" 286 + ]; 326 287 groups = [ "default" ]; 327 288 platforms = [ ]; 328 289 source = { 329 290 remotes = [ "https://rubygems.org" ]; 330 - sha256 = "0h09wkb0k0bhm6dqsd47ac601qiaah8qdzjh8gvxfd376x1chmdh"; 291 + sha256 = "0xdmwnkkms7bnx0bpkdk52qcazjqa3skb7jmjr21cjr8mdsp3z65"; 331 292 type = "gem"; 332 293 }; 333 - version = "1.1.0"; 334 - }; 335 - faraday-httpclient = { 336 - groups = [ "default" ]; 337 - platforms = [ ]; 338 - source = { 339 - remotes = [ "https://rubygems.org" ]; 340 - sha256 = "0fyk0jd3ks7fdn8nv3spnwjpzx2lmxmg2gh4inz3by1zjzqg33sc"; 341 - type = "gem"; 342 - }; 343 - version = "1.0.1"; 344 - }; 345 - faraday-multipart = { 346 - dependencies = [ "multipart-post" ]; 347 - groups = [ "default" ]; 348 - platforms = [ ]; 349 - source = { 350 - remotes = [ "https://rubygems.org" ]; 351 - sha256 = "09871c4hd7s5ws1wl4gs7js1k2wlby6v947m2bbzg43pnld044lh"; 352 - type = "gem"; 353 - }; 354 - version = "1.0.4"; 294 + version = "2.3.0"; 355 295 }; 356 296 faraday-net_http = { 297 + dependencies = [ "net-http" ]; 357 298 groups = [ "default" ]; 358 299 platforms = [ ]; 359 300 source = { 360 301 remotes = [ "https://rubygems.org" ]; 361 - sha256 = "1fi8sda5hc54v1w3mqfl5yz09nhx35kglyx72w7b8xxvdr0cwi9j"; 302 + sha256 = "0jp5ci6g40d6i50bsywp35l97nc2fpi9a592r2cibwicdb6y9wd1"; 362 303 type = "gem"; 363 304 }; 364 - version = "1.0.1"; 365 - }; 366 - faraday-net_http_persistent = { 367 - groups = [ "default" ]; 368 - platforms = [ ]; 369 - source = { 370 - remotes = [ "https://rubygems.org" ]; 371 - sha256 = "0dc36ih95qw3rlccffcb0vgxjhmipsvxhn6cw71l7ffs0f7vq30b"; 372 - type = "gem"; 373 - }; 374 - version = "1.2.0"; 375 - }; 376 - faraday-patron = { 377 - groups = [ "default" ]; 378 - platforms = [ ]; 379 - source = { 380 - remotes = [ "https://rubygems.org" ]; 381 - sha256 = "19wgsgfq0xkski1g7m96snv39la3zxz6x7nbdgiwhg5v82rxfb6w"; 382 - type = "gem"; 383 - }; 384 - version = "1.0.0"; 385 - }; 386 - faraday-rack = { 387 - groups = [ "default" ]; 388 - platforms = [ ]; 389 - source = { 390 - remotes = [ "https://rubygems.org" ]; 391 - sha256 = "1h184g4vqql5jv9s9im6igy00jp6mrah2h14py6mpf9bkabfqq7g"; 392 - type = "gem"; 393 - }; 394 - version = "1.0.0"; 395 - }; 396 - faraday-retry = { 397 - groups = [ "default" ]; 398 - platforms = [ ]; 399 - source = { 400 - remotes = [ "https://rubygems.org" ]; 401 - sha256 = "153i967yrwnswqgvnnajgwp981k9p50ys1h80yz3q94rygs59ldd"; 402 - type = "gem"; 403 - }; 404 - version = "1.0.3"; 305 + version = "3.4.0"; 405 306 }; 406 307 fluent-config-regexp-type = { 407 308 dependencies = [ "fluentd" ]; ··· 444 345 "elasticsearch" 445 346 "excon" 446 347 "faraday" 348 + "faraday-excon" 447 349 "fluentd" 448 350 ]; 449 351 groups = [ "default" ]; 450 352 platforms = [ ]; 451 353 source = { 452 354 remotes = [ "https://rubygems.org" ]; 453 - sha256 = "136nsmi15vcn0var59j1vqkysvmcp7y8fva25gkcx3hx1l92bxwh"; 355 + sha256 = "19psa92z4zsmbwz8n4rizkwws58qlgb30325rhmqpnsp9h8b0cbb"; 454 356 type = "gem"; 455 357 }; 456 - version = "5.2.4"; 358 + version = "5.4.3"; 457 359 }; 458 360 fluent-plugin-kafka = { 459 361 dependencies = [ ··· 465 367 platforms = [ ]; 466 368 source = { 467 369 remotes = [ "https://rubygems.org" ]; 468 - sha256 = "1ggiq89brahyamnw4sn4pmfqsw8xjz2k9k9hajsjlzkm9djppdwf"; 370 + sha256 = "0p3z1z22ir442rrxv8f8ki50iv6hmx7q5zm0lglyfh6nmkpf6vv1"; 469 371 type = "gem"; 470 372 }; 471 - version = "0.18.1"; 373 + version = "0.19.3"; 472 374 }; 473 375 fluent-plugin-kinesis = { 474 376 dependencies = [ ··· 481 383 platforms = [ ]; 482 384 source = { 483 385 remotes = [ "https://rubygems.org" ]; 484 - sha256 = "07n5pzfz143hlvbzbx5rczb33ai9kdp48vhdak100m6xpaqkvc2p"; 386 + sha256 = "12wx84a9h1xjldxa3yxxsmkyn620m2knw47dmfnr9rvgw2s4dlrz"; 485 387 type = "gem"; 486 388 }; 487 - version = "3.4.2"; 389 + version = "3.5.0"; 488 390 }; 489 391 fluent-plugin-mongo = { 490 392 dependencies = [ ··· 535 437 platforms = [ ]; 536 438 source = { 537 439 remotes = [ "https://rubygems.org" ]; 538 - sha256 = "04yvxhynjqm35dycrxqwfw9r7mv6ycyda1wvki27z5hpsdy57b1m"; 440 + sha256 = "0c7l7y51j5fz99086ghj99rjv16frj5kl4wcclvfws1jc5c38mj9"; 539 441 type = "gem"; 540 442 }; 541 - version = "1.7.2"; 443 + version = "1.8.3"; 542 444 }; 543 445 fluent-plugin-webhdfs = { 544 446 dependencies = [ ··· 549 451 platforms = [ ]; 550 452 source = { 551 453 remotes = [ "https://rubygems.org" ]; 552 - sha256 = "1llpsbd5n2lgxbq16px5hbp3zfw65bdp46b08v87b6rmn3h47aiv"; 454 + sha256 = "1mqj7fk1ylydkrjrph2n15n6bcn1vpgnjh4z2svxi2qsc5rnaki3"; 553 455 type = "gem"; 554 456 }; 555 - version = "1.5.0"; 457 + version = "1.6.0"; 556 458 }; 557 459 fluentd = { 558 460 dependencies = [ 461 + "base64" 559 462 "cool.io" 463 + "csv" 464 + "drb" 560 465 "http_parser.rb" 466 + "logger" 561 467 "msgpack" 562 468 "serverengine" 563 469 "sigdump" ··· 571 477 platforms = [ ]; 572 478 source = { 573 479 remotes = [ "https://rubygems.org" ]; 574 - sha256 = "1jn1i14zaw2pf4j6i7g7cj0h8j94wrcbn0an8w44h7g5mazl98nn"; 480 + sha256 = "100fd0ihgpqddkdqmbvlp51v09rnr4xb25l5lq776ai21hc4gj8d"; 575 481 type = "gem"; 576 482 }; 577 - version = "1.15.3"; 483 + version = "1.18.0"; 578 484 }; 579 485 google-protobuf = { 580 486 groups = [ "default" ]; 581 487 platforms = [ ]; 582 488 source = { 583 489 remotes = [ "https://rubygems.org" ]; 584 - sha256 = "1dcgkhjiaxha3yznyxxzm8a4n4jf61rk7kgbxy4sdkb865zbn2ab"; 490 + sha256 = "0g0h7rwiivx93jddfws5pdkcpnhma3694k2jfv2i1k80qkrqnrmv"; 585 491 type = "gem"; 586 492 }; 587 - version = "3.21.12"; 493 + version = "3.25.6"; 588 494 }; 589 495 "http_parser.rb" = { 590 496 groups = [ "default" ]; ··· 606 512 }; 607 513 version = "1.6.2"; 608 514 }; 515 + json = { 516 + groups = [ "default" ]; 517 + platforms = [ ]; 518 + source = { 519 + remotes = [ "https://rubygems.org" ]; 520 + sha256 = "1p4l5ycdxfsr8b51gnvlvhq6s21vmx9z4x617003zbqv3bcqmj6x"; 521 + type = "gem"; 522 + }; 523 + version = "2.10.1"; 524 + }; 525 + logger = { 526 + groups = [ "default" ]; 527 + platforms = [ ]; 528 + source = { 529 + remotes = [ "https://rubygems.org" ]; 530 + sha256 = "05s008w9vy7is3njblmavrbdzyrwwc1fsziffdr58w9pwqj8sqfx"; 531 + type = "gem"; 532 + }; 533 + version = "1.6.6"; 534 + }; 609 535 ltsv = { 610 536 groups = [ "default" ]; 611 537 platforms = [ ]; ··· 622 548 platforms = [ ]; 623 549 source = { 624 550 remotes = [ "https://rubygems.org" ]; 625 - sha256 = "1ldpcyqhgvdn7rd1vdbv2n3xnr6ajw7964yb9gr44nv7z35fd7kn"; 551 + sha256 = "0xinxrx25q9hzl78bhm404vlfgm04csbgkr7kkrw47s53l9mghhf"; 626 552 type = "gem"; 627 553 }; 628 - version = "2.18.2"; 554 + version = "2.18.3"; 629 555 }; 630 556 msgpack = { 631 557 groups = [ "default" ]; 632 558 platforms = [ ]; 633 559 source = { 634 560 remotes = [ "https://rubygems.org" ]; 635 - sha256 = "1q03pb0vq8388s431nbxabsfxnch6p304c8vnjlk0zzpcv713yr3"; 561 + sha256 = "0cnpnbn2yivj9gxkh8mjklbgnpx6nf7b8j2hky01dl0040hy0k76"; 636 562 type = "gem"; 637 563 }; 638 - version = "1.6.0"; 564 + version = "1.8.0"; 639 565 }; 640 566 multi_json = { 641 567 groups = [ "default" ]; ··· 647 573 }; 648 574 version = "1.15.0"; 649 575 }; 650 - multipart-post = { 576 + net-http = { 577 + dependencies = [ "uri" ]; 651 578 groups = [ "default" ]; 652 579 platforms = [ ]; 653 580 source = { 654 581 remotes = [ "https://rubygems.org" ]; 655 - sha256 = "1n0kvnrcrjn31jb97kcx3wj1f5kkjza7yygfq8rxzf3i57g7jaa6"; 582 + sha256 = "1ysrwaabhf0sn24jrp0nnp51cdv0jf688mh5i6fsz63q2c6b48cn"; 656 583 type = "gem"; 657 584 }; 658 - version = "2.2.3"; 585 + version = "0.6.0"; 659 586 }; 660 587 public_suffix = { 661 588 groups = [ "default" ]; 662 589 platforms = [ ]; 663 590 source = { 664 591 remotes = [ "https://rubygems.org" ]; 665 - sha256 = "0hz0bx2qs2pwb0bwazzsah03ilpf3aai8b7lk7s35jsfzwbkjq35"; 592 + sha256 = "0vqcw3iwby3yc6avs1vb3gfd0vcp2v7q310665dvxfswmcf4xm31"; 666 593 type = "gem"; 667 594 }; 668 - version = "5.0.1"; 595 + version = "6.0.1"; 669 596 }; 670 597 rake = { 671 598 groups = [ "default" ]; 672 599 platforms = [ ]; 673 600 source = { 674 601 remotes = [ "https://rubygems.org" ]; 675 - sha256 = "15whn7p9nrkxangbs9hh75q585yfn66lv0v2mhj6q6dl6x8bzr2w"; 602 + sha256 = "17850wcwkgi30p7yqh60960ypn7yibacjjha0av78zaxwvd3ijs6"; 676 603 type = "gem"; 677 604 }; 678 - version = "13.0.6"; 605 + version = "13.2.1"; 679 606 }; 680 607 ruby-kafka = { 681 608 dependencies = [ "digest-crc" ]; ··· 688 615 }; 689 616 version = "1.5.0"; 690 617 }; 691 - ruby2_keywords = { 692 - groups = [ "default" ]; 693 - platforms = [ ]; 694 - source = { 695 - remotes = [ "https://rubygems.org" ]; 696 - sha256 = "1vz322p8n39hz3b4a9gkmz9y7a5jaz41zrm2ywf31dvkqm03glgz"; 697 - type = "gem"; 698 - }; 699 - version = "0.0.5"; 700 - }; 701 618 serverengine = { 702 - dependencies = [ "sigdump" ]; 619 + dependencies = [ 620 + "base64" 621 + "logger" 622 + "sigdump" 623 + ]; 703 624 groups = [ "default" ]; 704 625 platforms = [ ]; 705 626 source = { 706 627 remotes = [ "https://rubygems.org" ]; 707 - sha256 = "1snxfmkmmxpdica8629gdl6qj3xradcx787ccvhfa90gh8wyfqqj"; 628 + sha256 = "1g26sbxwidgryn57nzxw25dq67ij037vml9ld28ckyl7y4qs8hja"; 708 629 type = "gem"; 709 630 }; 710 - version = "2.3.0"; 631 + version = "2.4.0"; 711 632 }; 712 633 sigdump = { 713 634 groups = [ "default" ]; 714 635 platforms = [ ]; 715 636 source = { 716 637 remotes = [ "https://rubygems.org" ]; 717 - sha256 = "1mqf06iw7rymv54y7rgbmfi6ppddgjjmxzi3hrw658n1amp1gwhb"; 638 + sha256 = "0hkj8fsl1swjfqvzgrwbyrwwn7403q95fficbll8nibhrqf6qw5v"; 718 639 type = "gem"; 719 640 }; 720 - version = "0.2.4"; 641 + version = "0.2.5"; 721 642 }; 722 643 strptime = { 723 644 groups = [ "default" ]; ··· 735 656 platforms = [ ]; 736 657 source = { 737 658 remotes = [ "https://rubygems.org" ]; 738 - sha256 = "0rx114mpqnw2k4h98vc0rs0x0bmf0img84yh8mkkjkal07cjydf5"; 659 + sha256 = "16w2g84dzaf3z13gxyzlzbf748kylk5bdgg3n1ipvkvvqy685bwd"; 739 660 type = "gem"; 740 661 }; 741 - version = "2.0.5"; 662 + version = "2.0.6"; 742 663 }; 743 664 tzinfo-data = { 744 665 dependencies = [ "tzinfo" ]; ··· 746 667 platforms = [ ]; 747 668 source = { 748 669 remotes = [ "https://rubygems.org" ]; 749 - sha256 = "0drm9pygji01pyimxq65ngdvgpn228g7fhffmrqw0xn7l2rdhclp"; 670 + sha256 = "02yz3x0qxnnwbf7k18yck5pggbnyy43rq0d5w2r6rwlk3981m31d"; 750 671 type = "gem"; 751 672 }; 752 - version = "1.2022.7"; 673 + version = "1.2025.1"; 674 + }; 675 + uri = { 676 + groups = [ "default" ]; 677 + platforms = [ ]; 678 + source = { 679 + remotes = [ "https://rubygems.org" ]; 680 + sha256 = "04bhfvc25b07jaiaf62yrach7khhr5jlr5bx6nygg8pf11329wp9"; 681 + type = "gem"; 682 + }; 683 + version = "1.0.3"; 753 684 }; 754 685 webhdfs = { 755 686 dependencies = [ "addressable" ]; ··· 757 688 platforms = [ ]; 758 689 source = { 759 690 remotes = [ "https://rubygems.org" ]; 760 - sha256 = "0pkdsj8ybjfp1sr7gzdxd7van5fpmhc9v2c5g3hifdx4s4yzhcq7"; 691 + sha256 = "157b725w4795i4bk2318fbj4bg1r83kvnmnbjykgzypi94mfhc6i"; 761 692 type = "gem"; 762 693 }; 763 - version = "0.10.2"; 694 + version = "0.11.0"; 764 695 }; 765 696 webrick = { 766 697 groups = [ "default" ]; 767 698 platforms = [ ]; 768 699 source = { 769 700 remotes = [ "https://rubygems.org" ]; 770 - sha256 = "1d4cvgmxhfczxiq5fr534lmizkhigd15bsx5719r5ds7k7ivisc7"; 701 + sha256 = "12d9n8hll67j737ym2zw4v23cn4vxyfkb6vyv1rzpwv6y6a3qbdl"; 771 702 type = "gem"; 772 703 }; 773 - version = "1.7.0"; 704 + version = "1.9.1"; 774 705 }; 775 706 yajl-ruby = { 776 707 groups = [ "default" ];
+65 -8
pkgs/tools/misc/polar/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - ffi (1.15.0) 5 - google-protobuf (3.15.6) 6 - libusb (0.6.4) 4 + bigdecimal (3.1.9) 5 + ffi (1.17.1) 6 + ffi (1.17.1-aarch64-linux-gnu) 7 + ffi (1.17.1-aarch64-linux-musl) 8 + ffi (1.17.1-arm-linux-gnu) 9 + ffi (1.17.1-arm-linux-musl) 10 + ffi (1.17.1-arm64-darwin) 11 + ffi (1.17.1-x86-linux-gnu) 12 + ffi (1.17.1-x86-linux-musl) 13 + ffi (1.17.1-x86_64-darwin) 14 + ffi (1.17.1-x86_64-linux-gnu) 15 + ffi (1.17.1-x86_64-linux-musl) 16 + google-protobuf (4.30.0) 17 + bigdecimal 18 + rake (>= 13) 19 + google-protobuf (4.30.0-aarch64-linux) 20 + bigdecimal 21 + rake (>= 13) 22 + google-protobuf (4.30.0-arm64-darwin) 23 + bigdecimal 24 + rake (>= 13) 25 + google-protobuf (4.30.0-x86-linux) 26 + bigdecimal 27 + rake (>= 13) 28 + google-protobuf (4.30.0-x86_64-darwin) 29 + bigdecimal 30 + rake (>= 13) 31 + google-protobuf (4.30.0-x86_64-linux) 32 + bigdecimal 33 + rake (>= 13) 34 + libusb (0.7.2) 7 35 ffi (~> 1.0) 8 36 mini_portile2 (~> 2.1) 9 - mini_portile2 (2.5.0) 10 - nokogiri (1.11.2) 11 - mini_portile2 (~> 2.5.0) 37 + mini_portile2 (2.8.8) 38 + nokogiri (1.18.3) 39 + mini_portile2 (~> 2.8.2) 40 + racc (~> 1.4) 41 + nokogiri (1.18.3-aarch64-linux-gnu) 42 + racc (~> 1.4) 43 + nokogiri (1.18.3-aarch64-linux-musl) 12 44 racc (~> 1.4) 13 - racc (1.5.2) 45 + nokogiri (1.18.3-arm-linux-gnu) 46 + racc (~> 1.4) 47 + nokogiri (1.18.3-arm-linux-musl) 48 + racc (~> 1.4) 49 + nokogiri (1.18.3-arm64-darwin) 50 + racc (~> 1.4) 51 + nokogiri (1.18.3-x86_64-darwin) 52 + racc (~> 1.4) 53 + nokogiri (1.18.3-x86_64-linux-gnu) 54 + racc (~> 1.4) 55 + nokogiri (1.18.3-x86_64-linux-musl) 56 + racc (~> 1.4) 57 + racc (1.8.1) 58 + rake (13.2.1) 14 59 rubyserial (0.6.0) 15 60 ffi (~> 1.9, >= 1.9.3) 16 61 17 62 PLATFORMS 63 + aarch64-linux 64 + aarch64-linux-gnu 65 + aarch64-linux-musl 66 + arm-linux-gnu 67 + arm-linux-musl 68 + arm64-darwin 18 69 ruby 70 + x86-linux 71 + x86-linux-gnu 72 + x86-linux-musl 73 + x86_64-darwin 74 + x86_64-linux-gnu 75 + x86_64-linux-musl 19 76 20 77 DEPENDENCIES 21 78 google-protobuf ··· 24 81 rubyserial 25 82 26 83 BUNDLED WITH 27 - 2.1.4 84 + 2.6.2
+36 -12
pkgs/tools/misc/polar/gemset.nix
··· 1 1 { 2 + bigdecimal = { 3 + groups = [ "default" ]; 4 + platforms = [ ]; 5 + source = { 6 + remotes = [ "https://rubygems.org" ]; 7 + sha256 = "1k6qzammv9r6b2cw3siasaik18i6wjc5m0gw5nfdc6jj64h79z1g"; 8 + type = "gem"; 9 + }; 10 + version = "3.1.9"; 11 + }; 2 12 ffi = { 3 13 groups = [ "default" ]; 4 14 platforms = [ ]; 5 15 source = { 6 16 remotes = [ "https://rubygems.org" ]; 7 - sha256 = "0nq1fb3vbfylccwba64zblxy96qznxbys5900wd7gm9bpplmf432"; 17 + sha256 = "0fgwn1grxf4zxmyqmb9i4z2hr111585n9jnk17y6y7hhs7dv1xi6"; 8 18 type = "gem"; 9 19 }; 10 - version = "1.15.0"; 20 + version = "1.17.1"; 11 21 }; 12 22 google-protobuf = { 23 + dependencies = [ 24 + "bigdecimal" 25 + "rake" 26 + ]; 13 27 groups = [ "default" ]; 14 28 platforms = [ ]; 15 29 source = { 16 30 remotes = [ "https://rubygems.org" ]; 17 - sha256 = "1ak5yqqhr04b4x0axzvpw1xzwmxmfcw0gf4r1ijixv15kidhsj3z"; 31 + sha256 = "1sa2v1fffc0yc3alpqz4a35gjc0n3mavskdwci6yrc6crad289s4"; 18 32 type = "gem"; 19 33 }; 20 - version = "3.15.6"; 34 + version = "4.30.0"; 21 35 }; 22 36 libusb = { 23 37 dependencies = [ ··· 28 42 platforms = [ ]; 29 43 source = { 30 44 remotes = [ "https://rubygems.org" ]; 31 - sha256 = "005q4f3bi68yapza1vxamgwz2gpix2akci52s4yvr03hsxi137a6"; 45 + sha256 = "0zxgbwqsipkia02lmxyq7a6c3hplw1ih0dsrlgqf15ff0z6qpj2r"; 32 46 type = "gem"; 33 47 }; 34 - version = "0.6.4"; 48 + version = "0.7.2"; 35 49 }; 36 50 mini_portile2 = { 37 51 groups = [ "default" ]; 38 52 platforms = [ ]; 39 53 source = { 40 54 remotes = [ "https://rubygems.org" ]; 41 - sha256 = "1hdbpmamx8js53yk3h8cqy12kgv6ca06k0c9n3pxh6b6cjfs19x7"; 55 + sha256 = "0x8asxl83msn815lwmb2d7q5p29p7drhjv5va0byhk60v9n16iwf"; 42 56 type = "gem"; 43 57 }; 44 - version = "2.5.0"; 58 + version = "2.8.8"; 45 59 }; 46 60 nokogiri = { 47 61 dependencies = [ ··· 52 66 platforms = [ ]; 53 67 source = { 54 68 remotes = [ "https://rubygems.org" ]; 55 - sha256 = "0b51df8fwadak075cvi17w0nch6qz1r66564qp29qwfj67j9qp0p"; 69 + sha256 = "0npx535cs8qc33n0lpbbwl0p9fi3a5bczn6ayqhxvknh9yqw77vb"; 56 70 type = "gem"; 57 71 }; 58 - version = "1.11.2"; 72 + version = "1.18.3"; 59 73 }; 60 74 racc = { 61 75 groups = [ "default" ]; 62 76 platforms = [ ]; 63 77 source = { 64 78 remotes = [ "https://rubygems.org" ]; 65 - sha256 = "178k7r0xn689spviqzhvazzvxfq6fyjldxb3ywjbgipbfi4s8j1g"; 79 + sha256 = "0byn0c9nkahsl93y9ln5bysq4j31q8xkf2ws42swighxd4lnjzsa"; 66 80 type = "gem"; 67 81 }; 68 - version = "1.5.2"; 82 + version = "1.8.1"; 83 + }; 84 + rake = { 85 + groups = [ "default" ]; 86 + platforms = [ ]; 87 + source = { 88 + remotes = [ "https://rubygems.org" ]; 89 + sha256 = "17850wcwkgi30p7yqh60960ypn7yibacjjha0av78zaxwvd3ijs6"; 90 + type = "gem"; 91 + }; 92 + version = "13.2.1"; 69 93 }; 70 94 rubyserial = { 71 95 dependencies = [ "ffi" ];
+19 -15
pkgs/tools/misc/td/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - fluent-logger (0.8.0) 4 + fluent-logger (0.9.1) 5 5 msgpack (>= 1.0.0, < 2) 6 6 hirb (0.7.3) 7 - httpclient (2.8.3) 8 - msgpack (1.2.6) 9 - parallel (1.13.0) 10 - ruby-progressbar (1.10.0) 11 - rubyzip (1.2.2) 12 - td (0.16.4) 7 + httpclient (2.9.0) 8 + mutex_m 9 + msgpack (1.8.0) 10 + mutex_m (0.3.0) 11 + parallel (1.20.1) 12 + rexml (3.4.1) 13 + ruby-progressbar (1.13.0) 14 + rubyzip (1.3.0) 15 + td (0.17.1) 13 16 hirb (>= 0.4.5) 14 17 msgpack 15 - parallel (~> 1.8) 18 + parallel (~> 1.20.0) 19 + rexml 16 20 ruby-progressbar (~> 1.7) 17 - rubyzip (>= 1.2.1) 18 - td-client (>= 1.0.6, < 2) 21 + rubyzip (~> 1.3.0) 22 + td-client (>= 1.0.8, < 2) 19 23 td-logger (>= 0.3.21, < 2) 20 - yajl-ruby (~> 1.1) 24 + yajl-ruby (>= 1.3.1, < 2.0) 21 25 zip-zip (~> 0.3) 22 - td-client (1.0.6) 26 + td-client (1.0.8) 23 27 httpclient (>= 2.7) 24 28 msgpack (>= 0.5.6, < 2) 25 - td-logger (0.3.27) 29 + td-logger (0.3.28) 26 30 fluent-logger (>= 0.5.0, < 2.0) 27 31 msgpack (>= 0.5.6, < 2.0) 28 32 td-client (>= 0.8.66, < 2.0) 29 - yajl-ruby (1.4.1) 33 + yajl-ruby (1.4.3) 30 34 zip-zip (0.3) 31 35 rubyzip (>= 1.0.0) 32 36 ··· 37 41 td 38 42 39 43 BUNDLED WITH 40 - 2.1.4 44 + 2.6.2
+62 -20
pkgs/tools/misc/td/gemset.nix
··· 1 1 { 2 2 fluent-logger = { 3 3 dependencies = [ "msgpack" ]; 4 + groups = [ "default" ]; 5 + platforms = [ ]; 4 6 source = { 5 7 remotes = [ "https://rubygems.org" ]; 6 - sha256 = "1yr6vrai4fqajpzybmdlajf8wzsgy29kr1318amn21y9nhjlnys5"; 8 + sha256 = "1qlc1gw0jnb86mc43cxhh0iflqwj5dds0v3k75g5my2h7wi4vzib"; 7 9 type = "gem"; 8 10 }; 9 - version = "0.8.0"; 11 + version = "0.9.1"; 10 12 }; 11 13 hirb = { 12 14 source = { ··· 17 19 version = "0.7.3"; 18 20 }; 19 21 httpclient = { 22 + dependencies = [ "mutex_m" ]; 23 + groups = [ "default" ]; 24 + platforms = [ ]; 20 25 source = { 21 26 remotes = [ "https://rubygems.org" ]; 22 - sha256 = "19mxmvghp7ki3klsxwrlwr431li7hm1lczhhj8z4qihl2acy8l99"; 27 + sha256 = "1j4qwj1nv66v3n9s4xqf64x2galvjm630bwa5xngicllwic5jr2b"; 23 28 type = "gem"; 24 29 }; 25 - version = "2.8.3"; 30 + version = "2.9.0"; 26 31 }; 27 32 msgpack = { 33 + groups = [ "default" ]; 34 + platforms = [ ]; 28 35 source = { 29 36 remotes = [ "https://rubygems.org" ]; 30 - sha256 = "0031gd2mjyba6jb7m97sqa149zjkr0vzn2s2gpb3m9nb67gqkm13"; 37 + sha256 = "0cnpnbn2yivj9gxkh8mjklbgnpx6nf7b8j2hky01dl0040hy0k76"; 38 + type = "gem"; 39 + }; 40 + version = "1.8.0"; 41 + }; 42 + mutex_m = { 43 + groups = [ "default" ]; 44 + platforms = [ ]; 45 + source = { 46 + remotes = [ "https://rubygems.org" ]; 47 + sha256 = "0l875dw0lk7b2ywa54l0wjcggs94vb7gs8khfw9li75n2sn09jyg"; 31 48 type = "gem"; 32 49 }; 33 - version = "1.2.6"; 50 + version = "0.3.0"; 34 51 }; 35 52 parallel = { 53 + groups = [ "default" ]; 54 + platforms = [ ]; 36 55 source = { 37 56 remotes = [ "https://rubygems.org" ]; 38 - sha256 = "005shcy8dabc7lwydpkbhd3fx8bfqzvsj6g04r90mx0wky10lz84"; 57 + sha256 = "0055br0mibnqz0j8wvy20zry548dhkakws681bhj3ycb972awkzd"; 39 58 type = "gem"; 40 59 }; 41 - version = "1.13.0"; 60 + version = "1.20.1"; 61 + }; 62 + rexml = { 63 + groups = [ "default" ]; 64 + platforms = [ ]; 65 + source = { 66 + remotes = [ "https://rubygems.org" ]; 67 + sha256 = "1jmbf6lf7pcyacpb939xjjpn1f84c3nw83dy3p1lwjx0l2ljfif7"; 68 + type = "gem"; 69 + }; 70 + version = "3.4.1"; 42 71 }; 43 72 ruby-progressbar = { 73 + groups = [ "default" ]; 74 + platforms = [ ]; 44 75 source = { 45 76 remotes = [ "https://rubygems.org" ]; 46 - sha256 = "1cv2ym3rl09svw8940ny67bav7b2db4ms39i4raaqzkf59jmhglk"; 77 + sha256 = "0cwvyb7j47m7wihpfaq7rc47zwwx9k4v7iqd9s1xch5nm53rrz40"; 47 78 type = "gem"; 48 79 }; 49 - version = "1.10.0"; 80 + version = "1.13.0"; 50 81 }; 51 82 rubyzip = { 83 + groups = [ "default" ]; 84 + platforms = [ ]; 52 85 source = { 53 86 remotes = [ "https://rubygems.org" ]; 54 - sha256 = "1n1lb2sdwh9h27y244hxzg1lrxxg2m53pk1vq7p33bna003qkyrj"; 87 + sha256 = "1qxc2zxwwipm6kviiar4gfhcakpx1jdcs89v6lvzivn5hq1xk78l"; 55 88 type = "gem"; 56 89 }; 57 - version = "1.2.2"; 90 + version = "1.3.0"; 58 91 }; 59 92 td = { 60 93 dependencies = [ 61 94 "hirb" 62 95 "msgpack" 63 96 "parallel" 97 + "rexml" 64 98 "ruby-progressbar" 65 99 "rubyzip" 66 100 "td-client" ··· 68 102 "yajl-ruby" 69 103 "zip-zip" 70 104 ]; 105 + groups = [ "default" ]; 106 + platforms = [ ]; 71 107 source = { 72 108 remotes = [ "https://rubygems.org" ]; 73 - sha256 = "0nlxpc4nasgmv6mqanb6ag1q3wmryja2c174dzgwxngxa0y2j1yn"; 109 + sha256 = "1lg192z9yn0svqi57wqr5yh73b1my5jq6i1x548qd4mb5adgis72"; 74 110 type = "gem"; 75 111 }; 76 - version = "0.16.4"; 112 + version = "0.17.1"; 77 113 }; 78 114 td-client = { 79 115 dependencies = [ 80 116 "httpclient" 81 117 "msgpack" 82 118 ]; 119 + groups = [ "default" ]; 120 + platforms = [ ]; 83 121 source = { 84 122 remotes = [ "https://rubygems.org" ]; 85 - sha256 = "0j5jcsgg020cm8xarbbw67mca4k8cx5pfyd2mm3wcqrnc1cl2bgp"; 123 + sha256 = "080dvxd66jaxprdlqcb24c5bk13shvvvk96glxf4ia5jnl5igz07"; 86 124 type = "gem"; 87 125 }; 88 - version = "1.0.6"; 126 + version = "1.0.8"; 89 127 }; 90 128 td-logger = { 91 129 dependencies = [ ··· 93 131 "msgpack" 94 132 "td-client" 95 133 ]; 134 + groups = [ "default" ]; 135 + platforms = [ ]; 96 136 source = { 97 137 remotes = [ "https://rubygems.org" ]; 98 - sha256 = "1y56gilaqk9a4lfhzb777ysmsq77pi1aqkr4q485a7f5dwnpwl1p"; 138 + sha256 = "12mpw8qcghbvzvhmfwq6l0ny1h9n5w2p450mcimfgk2z32a3g43v"; 99 139 type = "gem"; 100 140 }; 101 - version = "0.3.27"; 141 + version = "0.3.28"; 102 142 }; 103 143 yajl-ruby = { 144 + groups = [ "default" ]; 145 + platforms = [ ]; 104 146 source = { 105 147 remotes = [ "https://rubygems.org" ]; 106 - sha256 = "16v0w5749qjp13xhjgr2gcsvjv6mf35br7iqwycix1n2h7kfcckf"; 148 + sha256 = "1lni4jbyrlph7sz8y49q84pb0sbj82lgwvnjnsiv01xf26f4v5wc"; 107 149 type = "gem"; 108 150 }; 109 - version = "1.4.1"; 151 + version = "1.4.3"; 110 152 }; 111 153 zip-zip = { 112 154 dependencies = [ "rubyzip" ];
+6 -6
pkgs/tools/misc/tmux-sessionizer/default.nix
··· 13 13 let 14 14 15 15 name = "tmux-sessionizer"; 16 - version = "0.4.4"; 16 + version = "0.4.5"; 17 17 18 18 in 19 19 rustPlatform.buildRustPackage { ··· 24 24 owner = "jrmoulton"; 25 25 repo = name; 26 26 rev = "v${version}"; 27 - hash = "sha256-4xwpenoAVGKdVO3eSS4BhaEcwpNPGA5Ozie53focDlA="; 27 + hash = "sha256-uoSm9oWZSiqwsg7dVVMay9COL5MEK3a5Pd+D66RzzPM="; 28 28 }; 29 29 30 30 useFetchCargoVendor = true; 31 - cargoHash = "sha256-NFM9tZQIR9Rw9uSlqxhbNnmwe3xqK+dv/qyJBHfEmi4="; 31 + cargoHash = "sha256-fd0IEORqnqxKN9zisXTT0G8CwRNVsGd3HZmCVY5DKsM="; 32 32 33 33 passthru.tests.version = testers.testVersion { 34 34 package = tmux-sessionizer; ··· 46 46 47 47 postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 48 48 installShellCompletion --cmd tms \ 49 - --bash <($out/bin/tms --generate bash) \ 50 - --fish <($out/bin/tms --generate fish) \ 51 - --zsh <($out/bin/tms --generate zsh) 49 + --bash <(COMPLETE=bash $out/bin/tms) \ 50 + --fish <(COMPLETE=fish $out/bin/tms) \ 51 + --zsh <(COMPLETE=zsh $out/bin/tms) 52 52 ''; 53 53 54 54 meta = with lib; {
+1
pkgs/top-level/aliases.nix
··· 641 641 ### H ### 642 642 643 643 hacksaw = throw "'hacksaw' has been removed due to lack of upstream maintenance"; # Added 2025-01-25 644 + haka = throw "haka has been removed because it failed to build and was unmaintained for 9 years"; # Added 2025-03-11 644 645 haven-cli = throw "'haven-cli' has been removed due to the official announcement of the project closure. Read more at https://havenprotocol.org/2024/12/12/project-closure-announcement"; # Added 2025-02-25 645 646 HentaiAtHome = hentai-at-home; # Added 2024-06-12 646 647 hll2390dw-cups = throw "The hll2390dw-cups package was dropped since it was unmaintained."; # Added 2024-06-21
-4
pkgs/top-level/all-packages.nix
··· 16322 16322 16323 16323 openra = openraPackages.engines.release; 16324 16324 16325 - openrw = callPackage ../games/openrw { 16326 - inherit (darwin.apple_sdk.frameworks) Cocoa OpenAL; 16327 - }; 16328 - 16329 16325 openspades = callPackage ../games/openspades { 16330 16326 inherit (darwin.apple_sdk.frameworks) Cocoa; 16331 16327 };