eggress 1.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- eggress-1.0.4/Cargo.lock +4565 -0
- eggress-1.0.4/Cargo.toml +109 -0
- eggress-1.0.4/PKG-INFO +240 -0
- eggress-1.0.4/crates/eggress-admin/Cargo.toml +36 -0
- eggress-1.0.4/crates/eggress-admin/README.md +20 -0
- eggress-1.0.4/crates/eggress-admin/src/lib.rs +470 -0
- eggress-1.0.4/crates/eggress-admin/src/pac.rs +87 -0
- eggress-1.0.4/crates/eggress-admin/src/reverse.rs +178 -0
- eggress-1.0.4/crates/eggress-admin/src/routes.rs +413 -0
- eggress-1.0.4/crates/eggress-admin/src/server.rs +396 -0
- eggress-1.0.4/crates/eggress-admin/src/static_content.rs +6 -0
- eggress-1.0.4/crates/eggress-cli/Cargo.toml +89 -0
- eggress-1.0.4/crates/eggress-cli/README.md +42 -0
- eggress-1.0.4/crates/eggress-cli/src/lib.rs +442 -0
- eggress-1.0.4/crates/eggress-cli/src/main.rs +1706 -0
- eggress-1.0.4/crates/eggress-cli/src/pproxy_main.rs +361 -0
- eggress-1.0.4/crates/eggress-cli/tests/advanced_transport_interop.rs +95 -0
- eggress-1.0.4/crates/eggress-cli/tests/cli_exit_codes.rs +119 -0
- eggress-1.0.4/crates/eggress-cli/tests/cli_tests.rs +11 -0
- eggress-1.0.4/crates/eggress-cli/tests/differential_pproxy.rs +5692 -0
- eggress-1.0.4/crates/eggress-cli/tests/feature_boundary_negative.rs +154 -0
- eggress-1.0.4/crates/eggress-cli/tests/integration.rs +873 -0
- eggress-1.0.4/crates/eggress-cli/tests/interoperability_curl.rs +229 -0
- eggress-1.0.4/crates/eggress-cli/tests/interoperability_pproxy.rs +872 -0
- eggress-1.0.4/crates/eggress-cli/tests/interoperability_shadowsocks.rs +1620 -0
- eggress-1.0.4/crates/eggress-cli/tests/interoperability_trojan.rs +1003 -0
- eggress-1.0.4/crates/eggress-cli/tests/oracle.rs +816 -0
- eggress-1.0.4/crates/eggress-cli/tests/pproxy_binary.rs +562 -0
- eggress-1.0.4/crates/eggress-cli/tests/pproxy_cli.rs +228 -0
- eggress-1.0.4/crates/eggress-cli/tests/pproxy_differential.rs +1666 -0
- eggress-1.0.4/crates/eggress-cli/tests/pproxy_run_process.rs +451 -0
- eggress-1.0.4/crates/eggress-cli/tests/pproxy_translation_golden.rs +191 -0
- eggress-1.0.4/crates/eggress-cli/tests/reply_order.rs +551 -0
- eggress-1.0.4/crates/eggress-config/Cargo.toml +35 -0
- eggress-1.0.4/crates/eggress-config/README.md +23 -0
- eggress-1.0.4/crates/eggress-config/composition_matrix.toml +536 -0
- eggress-1.0.4/crates/eggress-config/src/compile.rs +1924 -0
- eggress-1.0.4/crates/eggress-config/src/error.rs +36 -0
- eggress-1.0.4/crates/eggress-config/src/file.rs +45 -0
- eggress-1.0.4/crates/eggress-config/src/lib.rs +2264 -0
- eggress-1.0.4/crates/eggress-config/src/model.rs +537 -0
- eggress-1.0.4/crates/eggress-config/src/validate.rs +2182 -0
- eggress-1.0.4/crates/eggress-config/tests/fuzz_smoke.rs +20 -0
- eggress-1.0.4/crates/eggress-core/Cargo.toml +30 -0
- eggress-1.0.4/crates/eggress-core/README.md +28 -0
- eggress-1.0.4/crates/eggress-core/src/capability.rs +379 -0
- eggress-1.0.4/crates/eggress-core/src/chain.rs +1701 -0
- eggress-1.0.4/crates/eggress-core/src/connector.rs +488 -0
- eggress-1.0.4/crates/eggress-core/src/detect.rs +124 -0
- eggress-1.0.4/crates/eggress-core/src/dispatch.rs +336 -0
- eggress-1.0.4/crates/eggress-core/src/lib.rs +359 -0
- eggress-1.0.4/crates/eggress-core/src/listener.rs +305 -0
- eggress-1.0.4/crates/eggress-core/src/relay.rs +366 -0
- eggress-1.0.4/crates/eggress-core/src/replay.rs +371 -0
- eggress-1.0.4/crates/eggress-embed/Cargo.toml +48 -0
- eggress-1.0.4/crates/eggress-embed/README.md +72 -0
- eggress-1.0.4/crates/eggress-embed/src/error.rs +54 -0
- eggress-1.0.4/crates/eggress-embed/src/lib.rs +975 -0
- eggress-1.0.4/crates/eggress-embed/src/outbound.rs +803 -0
- eggress-1.0.4/crates/eggress-embed/tests/error_redaction.rs +240 -0
- eggress-1.0.4/crates/eggress-embed/tests/metrics_status.rs +197 -0
- eggress-1.0.4/crates/eggress-embed/tests/proxy_traffic.rs +192 -0
- eggress-1.0.4/crates/eggress-embed/tests/reload.rs +227 -0
- eggress-1.0.4/crates/eggress-embed/tests/start_stop.rs +202 -0
- eggress-1.0.4/crates/eggress-metrics/Cargo.toml +31 -0
- eggress-1.0.4/crates/eggress-metrics/README.md +25 -0
- eggress-1.0.4/crates/eggress-metrics/src/lib.rs +2871 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/Cargo.toml +37 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/README.md +27 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/args.rs +1174 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/diagnose.rs +237 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/diagnostics.rs +952 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/error.rs +57 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/exit_codes.rs +26 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/gate.rs +166 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/lib.rs +27 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/regex_compat.rs +737 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/tests.rs +1005 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/tier.rs +331 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/translate.rs +2949 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/uri.rs +1481 -0
- eggress-1.0.4/crates/eggress-pproxy-compat/src/warnings.rs +93 -0
- eggress-1.0.4/crates/eggress-protocol-h3/Cargo.toml +35 -0
- eggress-1.0.4/crates/eggress-protocol-h3/README.md +19 -0
- eggress-1.0.4/crates/eggress-protocol-h3/src/lib.rs +449 -0
- eggress-1.0.4/crates/eggress-protocol-http/Cargo.toml +33 -0
- eggress-1.0.4/crates/eggress-protocol-http/README.md +20 -0
- eggress-1.0.4/crates/eggress-protocol-http/src/connect/client.rs +479 -0
- eggress-1.0.4/crates/eggress-protocol-http/src/connect/mod.rs +8 -0
- eggress-1.0.4/crates/eggress-protocol-http/src/connect/server.rs +469 -0
- eggress-1.0.4/crates/eggress-protocol-http/src/connect/test_server.rs +108 -0
- eggress-1.0.4/crates/eggress-protocol-http/src/detect.rs +155 -0
- eggress-1.0.4/crates/eggress-protocol-http/src/error.rs +104 -0
- eggress-1.0.4/crates/eggress-protocol-http/src/forward/mod.rs +8 -0
- eggress-1.0.4/crates/eggress-protocol-http/src/forward/server.rs +2069 -0
- eggress-1.0.4/crates/eggress-protocol-http/src/h2_connect.rs +1285 -0
- eggress-1.0.4/crates/eggress-protocol-http/src/lib.rs +465 -0
- eggress-1.0.4/crates/eggress-protocol-http/tests/connect_properties.rs +113 -0
- eggress-1.0.4/crates/eggress-protocol-http/tests/fuzz_smoke.rs +72 -0
- eggress-1.0.4/crates/eggress-protocol-reverse/Cargo.toml +26 -0
- eggress-1.0.4/crates/eggress-protocol-reverse/README.md +20 -0
- eggress-1.0.4/crates/eggress-protocol-reverse/src/client.rs +388 -0
- eggress-1.0.4/crates/eggress-protocol-reverse/src/compat_pproxy.rs +1075 -0
- eggress-1.0.4/crates/eggress-protocol-reverse/src/lib.rs +468 -0
- eggress-1.0.4/crates/eggress-protocol-reverse/src/metrics.rs +613 -0
- eggress-1.0.4/crates/eggress-protocol-reverse/src/server.rs +816 -0
- eggress-1.0.4/crates/eggress-protocol-reverse/tests/integration.rs +918 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/Cargo.toml +55 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/README.md +25 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/address.rs +179 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/aead.rs +781 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/compat/mod.rs +8 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/compat/plugin.rs +419 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/compat/ssr.rs +324 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/error.rs +42 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/legacy.rs +1270 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/lib.rs +18 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/method.rs +311 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/metrics.rs +214 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/nonce.rs +88 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/server.rs +58 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/tcp.rs +497 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/tcp_stream.rs +966 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/src/udp.rs +739 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/tests/fuzz_smoke.rs +26 -0
- eggress-1.0.4/crates/eggress-protocol-shadowsocks/tests/zz_debug_ssserver_interaction.rs +124 -0
- eggress-1.0.4/crates/eggress-protocol-socks/Cargo.toml +26 -0
- eggress-1.0.4/crates/eggress-protocol-socks/README.md +19 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/detector.rs +69 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/error.rs +164 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/lib.rs +395 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/socks4/client.rs +252 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/socks4/error.rs +39 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/socks4/mod.rs +15 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/socks4/server.rs +242 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/socks4/test_server.rs +127 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/socks5/client.rs +385 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/socks5/mod.rs +3 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/socks5/server.rs +1201 -0
- eggress-1.0.4/crates/eggress-protocol-socks/src/socks5/udp_codec.rs +358 -0
- eggress-1.0.4/crates/eggress-protocol-socks/tests/codec_properties.rs +202 -0
- eggress-1.0.4/crates/eggress-protocol-socks/tests/fuzz_smoke.rs +77 -0
- eggress-1.0.4/crates/eggress-protocol-trojan/Cargo.toml +31 -0
- eggress-1.0.4/crates/eggress-protocol-trojan/README.md +19 -0
- eggress-1.0.4/crates/eggress-protocol-trojan/src/error.rs +132 -0
- eggress-1.0.4/crates/eggress-protocol-trojan/src/hash.rs +120 -0
- eggress-1.0.4/crates/eggress-protocol-trojan/src/lib.rs +7 -0
- eggress-1.0.4/crates/eggress-protocol-trojan/src/tcp.rs +1104 -0
- eggress-1.0.4/crates/eggress-protocol-trojan/tests/fuzz_smoke.rs +78 -0
- eggress-1.0.4/crates/eggress-protocol-trojan/tests/request_properties.rs +92 -0
- eggress-1.0.4/crates/eggress-protocol-websocket/Cargo.toml +29 -0
- eggress-1.0.4/crates/eggress-protocol-websocket/README.md +19 -0
- eggress-1.0.4/crates/eggress-protocol-websocket/src/error.rs +13 -0
- eggress-1.0.4/crates/eggress-protocol-websocket/src/lib.rs +785 -0
- eggress-1.0.4/crates/eggress-protocol-websocket/tests/fuzz_smoke.rs +34 -0
- eggress-1.0.4/crates/eggress-python/Cargo.toml +47 -0
- eggress-1.0.4/crates/eggress-python/README.md +26 -0
- eggress-1.0.4/crates/eggress-python/src/lib.rs +2068 -0
- eggress-1.0.4/crates/eggress-routing/Cargo.toml +32 -0
- eggress-1.0.4/crates/eggress-routing/README.md +20 -0
- eggress-1.0.4/crates/eggress-routing/src/health.rs +630 -0
- eggress-1.0.4/crates/eggress-routing/src/lease.rs +68 -0
- eggress-1.0.4/crates/eggress-routing/src/lib.rs +2677 -0
- eggress-1.0.4/crates/eggress-routing/src/scheduler.rs +428 -0
- eggress-1.0.4/crates/eggress-routing/src/upstream.rs +145 -0
- eggress-1.0.4/crates/eggress-routing/tests/properties.rs +427 -0
- eggress-1.0.4/crates/eggress-routing/tests/scheduler_parity.rs +395 -0
- eggress-1.0.4/crates/eggress-runtime/Cargo.toml +83 -0
- eggress-1.0.4/crates/eggress-runtime/README.md +32 -0
- eggress-1.0.4/crates/eggress-runtime/src/error.rs +25 -0
- eggress-1.0.4/crates/eggress-runtime/src/lib.rs +12 -0
- eggress-1.0.4/crates/eggress-runtime/src/platform.rs +597 -0
- eggress-1.0.4/crates/eggress-runtime/src/reverse.rs +202 -0
- eggress-1.0.4/crates/eggress-runtime/src/snapshot.rs +525 -0
- eggress-1.0.4/crates/eggress-runtime/src/supervisor.rs +3682 -0
- eggress-1.0.4/crates/eggress-runtime/tests/admin.rs +845 -0
- eggress-1.0.4/crates/eggress-runtime/tests/health.rs +644 -0
- eggress-1.0.4/crates/eggress-runtime/tests/lifecycle_invariants.rs +1555 -0
- eggress-1.0.4/crates/eggress-runtime/tests/load.rs +628 -0
- eggress-1.0.4/crates/eggress-runtime/tests/multihop_tcp.rs +1133 -0
- eggress-1.0.4/crates/eggress-runtime/tests/observability.rs +2192 -0
- eggress-1.0.4/crates/eggress-runtime/tests/pac_static.rs +476 -0
- eggress-1.0.4/crates/eggress-runtime/tests/performance_smoke.rs +459 -0
- eggress-1.0.4/crates/eggress-runtime/tests/reload.rs +311 -0
- eggress-1.0.4/crates/eggress-runtime/tests/retry_fallback.rs +1213 -0
- eggress-1.0.4/crates/eggress-runtime/tests/reverse_interop.rs +997 -0
- eggress-1.0.4/crates/eggress-runtime/tests/reverse_runtime.rs +465 -0
- eggress-1.0.4/crates/eggress-runtime/tests/reverse_soak.rs +298 -0
- eggress-1.0.4/crates/eggress-runtime/tests/routing.rs +262 -0
- eggress-1.0.4/crates/eggress-runtime/tests/scheduler_runtime.rs +782 -0
- eggress-1.0.4/crates/eggress-runtime/tests/security_invariants.rs +528 -0
- eggress-1.0.4/crates/eggress-runtime/tests/shadowsocks_tcp.rs +843 -0
- eggress-1.0.4/crates/eggress-runtime/tests/shadowsocks_udp.rs +628 -0
- eggress-1.0.4/crates/eggress-runtime/tests/shutdown.rs +713 -0
- eggress-1.0.4/crates/eggress-runtime/tests/startup.rs +145 -0
- eggress-1.0.4/crates/eggress-runtime/tests/tls.rs +329 -0
- eggress-1.0.4/crates/eggress-runtime/tests/transparent.rs +252 -0
- eggress-1.0.4/crates/eggress-runtime/tests/trojan.rs +520 -0
- eggress-1.0.4/crates/eggress-runtime/tests/udp.rs +1591 -0
- eggress-1.0.4/crates/eggress-runtime/tests/udp_upstream.rs +857 -0
- eggress-1.0.4/crates/eggress-runtime/tests/unix_socket.rs +228 -0
- eggress-1.0.4/crates/eggress-runtime/tests/upstream_protocols.rs +3413 -0
- eggress-1.0.4/crates/eggress-server/Cargo.toml +66 -0
- eggress-1.0.4/crates/eggress-server/README.md +29 -0
- eggress-1.0.4/crates/eggress-server/src/accept.rs +2826 -0
- eggress-1.0.4/crates/eggress-server/src/advanced.rs +374 -0
- eggress-1.0.4/crates/eggress-server/src/auth.rs +26 -0
- eggress-1.0.4/crates/eggress-server/src/error.rs +94 -0
- eggress-1.0.4/crates/eggress-server/src/execute.rs +2021 -0
- eggress-1.0.4/crates/eggress-server/src/lib.rs +1720 -0
- eggress-1.0.4/crates/eggress-server/src/listener/mod.rs +3 -0
- eggress-1.0.4/crates/eggress-server/src/listener/transparent.rs +393 -0
- eggress-1.0.4/crates/eggress-server/src/listener/unix.rs +386 -0
- eggress-1.0.4/crates/eggress-server/src/reply.rs +260 -0
- eggress-1.0.4/crates/eggress-system-proxy/Cargo.toml +24 -0
- eggress-1.0.4/crates/eggress-system-proxy/README.md +19 -0
- eggress-1.0.4/crates/eggress-system-proxy/src/apply.rs +646 -0
- eggress-1.0.4/crates/eggress-system-proxy/src/backends/env.rs +113 -0
- eggress-1.0.4/crates/eggress-system-proxy/src/backends/linux.rs +464 -0
- eggress-1.0.4/crates/eggress-system-proxy/src/backends/macos.rs +271 -0
- eggress-1.0.4/crates/eggress-system-proxy/src/backends/mod.rs +4 -0
- eggress-1.0.4/crates/eggress-system-proxy/src/backends/windows.rs +263 -0
- eggress-1.0.4/crates/eggress-system-proxy/src/capability.rs +316 -0
- eggress-1.0.4/crates/eggress-system-proxy/src/command_runner.rs +157 -0
- eggress-1.0.4/crates/eggress-system-proxy/src/inspection.rs +302 -0
- eggress-1.0.4/crates/eggress-system-proxy/src/lib.rs +17 -0
- eggress-1.0.4/crates/eggress-system-proxy/src/redaction.rs +118 -0
- eggress-1.0.4/crates/eggress-testkit/Cargo.toml +41 -0
- eggress-1.0.4/crates/eggress-testkit/README.md +20 -0
- eggress-1.0.4/crates/eggress-testkit/src/bin/strict_report.rs +965 -0
- eggress-1.0.4/crates/eggress-testkit/src/canonical_manifest.rs +1845 -0
- eggress-1.0.4/crates/eggress-testkit/src/case_model.rs +133 -0
- eggress-1.0.4/crates/eggress-testkit/src/composition.rs +1230 -0
- eggress-1.0.4/crates/eggress-testkit/src/corpus.rs +587 -0
- eggress-1.0.4/crates/eggress-testkit/src/differential.rs +647 -0
- eggress-1.0.4/crates/eggress-testkit/src/eggress_runner.rs +353 -0
- eggress-1.0.4/crates/eggress-testkit/src/fixtures.rs +613 -0
- eggress-1.0.4/crates/eggress-testkit/src/lib.rs +399 -0
- eggress-1.0.4/crates/eggress-testkit/src/manifest.rs +1481 -0
- eggress-1.0.4/crates/eggress-testkit/src/oracle/mod.rs +68 -0
- eggress-1.0.4/crates/eggress-testkit/src/oracle/observations.rs +286 -0
- eggress-1.0.4/crates/eggress-testkit/src/oracle/probes.rs +551 -0
- eggress-1.0.4/crates/eggress-testkit/src/oracle/profile.rs +195 -0
- eggress-1.0.4/crates/eggress-testkit/src/oracle/report.rs +715 -0
- eggress-1.0.4/crates/eggress-testkit/src/oracle/scenario.rs +1141 -0
- eggress-1.0.4/crates/eggress-testkit/src/oracle/schema.rs +484 -0
- eggress-1.0.4/crates/eggress-testkit/src/oracle/supervisor.rs +333 -0
- eggress-1.0.4/crates/eggress-testkit/src/pproxy_oracle.rs +572 -0
- eggress-1.0.4/crates/eggress-testkit/src/report.rs +445 -0
- eggress-1.0.4/crates/eggress-testkit/src/strict_comparators.rs +1176 -0
- eggress-1.0.4/crates/eggress-testkit/src/strict_manifest.rs +2044 -0
- eggress-1.0.4/crates/eggress-testkit/src/strict_observations.rs +427 -0
- eggress-1.0.4/crates/eggress-testkit/tests/oracle/scenarios/chains_routing.toml +275 -0
- eggress-1.0.4/crates/eggress-testkit/tests/oracle/scenarios/cli_defaults.toml +180 -0
- eggress-1.0.4/crates/eggress-testkit/tests/oracle/scenarios/extended.toml +133 -0
- eggress-1.0.4/crates/eggress-testkit/tests/oracle/scenarios/http_tcp.toml +132 -0
- eggress-1.0.4/crates/eggress-testkit/tests/oracle/scenarios/socks_tcp.toml +192 -0
- eggress-1.0.4/crates/eggress-testkit/tests/oracle_scenario_files.rs +77 -0
- eggress-1.0.4/crates/eggress-transport-quic/Cargo.toml +34 -0
- eggress-1.0.4/crates/eggress-transport-quic/README.md +19 -0
- eggress-1.0.4/crates/eggress-transport-quic/src/lib.rs +560 -0
- eggress-1.0.4/crates/eggress-transport-ssh/Cargo.toml +24 -0
- eggress-1.0.4/crates/eggress-transport-ssh/README.md +24 -0
- eggress-1.0.4/crates/eggress-transport-ssh/src/lib.rs +463 -0
- eggress-1.0.4/crates/eggress-transport-ssh/tests/openssh.rs +406 -0
- eggress-1.0.4/crates/eggress-transport-tls/Cargo.toml +33 -0
- eggress-1.0.4/crates/eggress-transport-tls/README.md +20 -0
- eggress-1.0.4/crates/eggress-transport-tls/src/client.rs +284 -0
- eggress-1.0.4/crates/eggress-transport-tls/src/error.rs +36 -0
- eggress-1.0.4/crates/eggress-transport-tls/src/lib.rs +30 -0
- eggress-1.0.4/crates/eggress-transport-tls/src/roots.rs +93 -0
- eggress-1.0.4/crates/eggress-transport-tls/src/server.rs +148 -0
- eggress-1.0.4/crates/eggress-transport-tls/src/transport.rs +172 -0
- eggress-1.0.4/crates/eggress-udp/Cargo.toml +36 -0
- eggress-1.0.4/crates/eggress-udp/README.md +23 -0
- eggress-1.0.4/crates/eggress-udp/src/assoc.rs +258 -0
- eggress-1.0.4/crates/eggress-udp/src/codec.rs +96 -0
- eggress-1.0.4/crates/eggress-udp/src/composed.rs +175 -0
- eggress-1.0.4/crates/eggress-udp/src/direct.rs +203 -0
- eggress-1.0.4/crates/eggress-udp/src/error.rs +33 -0
- eggress-1.0.4/crates/eggress-udp/src/flow.rs +462 -0
- eggress-1.0.4/crates/eggress-udp/src/hop.rs +325 -0
- eggress-1.0.4/crates/eggress-udp/src/lib.rs +31 -0
- eggress-1.0.4/crates/eggress-udp/src/limits.rs +82 -0
- eggress-1.0.4/crates/eggress-udp/src/metrics.rs +487 -0
- eggress-1.0.4/crates/eggress-udp/src/registry.rs +406 -0
- eggress-1.0.4/crates/eggress-udp/src/relay.rs +1931 -0
- eggress-1.0.4/crates/eggress-udp/src/security.rs +378 -0
- eggress-1.0.4/crates/eggress-udp/src/standalone.rs +1332 -0
- eggress-1.0.4/crates/eggress-udp/src/standalone_shadowsocks.rs +1293 -0
- eggress-1.0.4/crates/eggress-udp/src/testkit.rs +350 -0
- eggress-1.0.4/crates/eggress-udp/src/udp_capability.rs +368 -0
- eggress-1.0.4/crates/eggress-udp/src/upstream_socks5.rs +806 -0
- eggress-1.0.4/crates/eggress-udp/tests/socks5_upstream.rs +661 -0
- eggress-1.0.4/crates/eggress-udp/tests/standalone_udp.rs +664 -0
- eggress-1.0.4/crates/eggress-udp/tests/udp_integration.rs +407 -0
- eggress-1.0.4/crates/eggress-uri/Cargo.toml +22 -0
- eggress-1.0.4/crates/eggress-uri/README.md +29 -0
- eggress-1.0.4/crates/eggress-uri/proptest-regressions/lib.txt +10 -0
- eggress-1.0.4/crates/eggress-uri/src/lib.rs +1311 -0
- eggress-1.0.4/crates/eggress-uri/tests/fuzz_smoke.rs +20 -0
- eggress-1.0.4/pyproject.toml +45 -0
- eggress-1.0.4/python/README.md +207 -0
- eggress-1.0.4/python/eggress/__init__.py +519 -0
- eggress-1.0.4/python/eggress/__init__.pyi +168 -0
- eggress-1.0.4/python/eggress/_asyncio.py +439 -0
- eggress-1.0.4/python/eggress/_asyncio_adapter.py +384 -0
- eggress-1.0.4/python/eggress/_compat.py +65 -0
- eggress-1.0.4/python/eggress/_eggress.pyi +192 -0
- eggress-1.0.4/python/eggress/_pproxy_proxy.py +1204 -0
- eggress-1.0.4/python/eggress/async_connection.py +160 -0
- eggress-1.0.4/python/eggress/cipher.py +1666 -0
- eggress-1.0.4/python/eggress/cipher.pyi +213 -0
- eggress-1.0.4/python/eggress/config.py +32 -0
- eggress-1.0.4/python/eggress/config.pyi +14 -0
- eggress-1.0.4/python/eggress/connection.py +225 -0
- eggress-1.0.4/python/eggress/exceptions.py +47 -0
- eggress-1.0.4/python/eggress/exceptions.pyi +23 -0
- eggress-1.0.4/python/eggress/outbound.py +318 -0
- eggress-1.0.4/python/eggress/plugin.py +767 -0
- eggress-1.0.4/python/eggress/plugin.pyi +84 -0
- eggress-1.0.4/python/eggress/pproxy.py +1010 -0
- eggress-1.0.4/python/eggress/pproxy.pyi +188 -0
- eggress-1.0.4/python/eggress/pproxy_connection.py +142 -0
- eggress-1.0.4/python/eggress/protocol.py +1328 -0
- eggress-1.0.4/python/eggress/protocol.pyi +156 -0
- eggress-1.0.4/python/eggress/py.typed +0 -0
- eggress-1.0.4/python/eggress/service.py +208 -0
- eggress-1.0.4/python/eggress/service.pyi +40 -0
- eggress-1.0.4/python/eggress/wrapper.py +467 -0
- eggress-1.0.4/python/eggress/wrapper.pyi +95 -0
eggress-1.0.4/Cargo.lock
ADDED
|
@@ -0,0 +1,4565 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aead"
|
|
13
|
+
version = "0.5.2"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"crypto-common 0.1.7",
|
|
18
|
+
"generic-array 0.14.7",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[[package]]
|
|
22
|
+
name = "aead"
|
|
23
|
+
version = "0.6.1"
|
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
+
checksum = "1973cfbc1a2daf9cf550e74e1f088c28e7f7d8c1e1418fb6c9dc5184b7e84c99"
|
|
26
|
+
dependencies = [
|
|
27
|
+
"crypto-common 0.2.2",
|
|
28
|
+
"inout 0.2.2",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "aes"
|
|
33
|
+
version = "0.8.4"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"cfg-if",
|
|
38
|
+
"cipher 0.4.4",
|
|
39
|
+
"cpufeatures 0.2.17",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "aes"
|
|
44
|
+
version = "0.9.2"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "f8eb277bec05f56a0e0591f155a484cbd0f4f07ff2905051a48c72f004f7ed58"
|
|
47
|
+
dependencies = [
|
|
48
|
+
"cipher 0.5.2",
|
|
49
|
+
"cpubits",
|
|
50
|
+
"cpufeatures 0.3.0",
|
|
51
|
+
"zeroize",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "aes-gcm"
|
|
56
|
+
version = "0.10.3"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
|
|
59
|
+
dependencies = [
|
|
60
|
+
"aead 0.5.2",
|
|
61
|
+
"aes 0.8.4",
|
|
62
|
+
"cipher 0.4.4",
|
|
63
|
+
"ctr 0.9.2",
|
|
64
|
+
"ghash 0.5.1",
|
|
65
|
+
"subtle",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "aes-gcm"
|
|
70
|
+
version = "0.11.0"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "fdf011db2e21ce0d575593d749db5554b47fed37aff429e4dc50bc91ac93a028"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"aead 0.6.1",
|
|
75
|
+
"aes 0.9.2",
|
|
76
|
+
"cipher 0.5.2",
|
|
77
|
+
"ctr 0.10.1",
|
|
78
|
+
"ghash 0.6.0",
|
|
79
|
+
"subtle",
|
|
80
|
+
"zeroize",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "aho-corasick"
|
|
85
|
+
version = "1.1.4"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"memchr",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "android_system_properties"
|
|
94
|
+
version = "0.1.6"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
|
|
97
|
+
dependencies = [
|
|
98
|
+
"libc",
|
|
99
|
+
]
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "anes"
|
|
103
|
+
version = "0.1.6"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "anstream"
|
|
109
|
+
version = "1.0.0"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
112
|
+
dependencies = [
|
|
113
|
+
"anstyle",
|
|
114
|
+
"anstyle-parse",
|
|
115
|
+
"anstyle-query",
|
|
116
|
+
"anstyle-wincon",
|
|
117
|
+
"colorchoice",
|
|
118
|
+
"is_terminal_polyfill",
|
|
119
|
+
"utf8parse",
|
|
120
|
+
]
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "anstyle"
|
|
124
|
+
version = "1.0.14"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "anstyle-parse"
|
|
130
|
+
version = "1.0.0"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"utf8parse",
|
|
135
|
+
]
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "anstyle-query"
|
|
139
|
+
version = "1.1.5"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
142
|
+
dependencies = [
|
|
143
|
+
"windows-sys 0.61.2",
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "anstyle-wincon"
|
|
148
|
+
version = "3.0.11"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"anstyle",
|
|
153
|
+
"once_cell_polyfill",
|
|
154
|
+
"windows-sys 0.61.2",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "arc-swap"
|
|
159
|
+
version = "1.9.1"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
|
|
162
|
+
dependencies = [
|
|
163
|
+
"rustversion",
|
|
164
|
+
]
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "argon2"
|
|
168
|
+
version = "0.6.0-rc.8"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "7af50940b73bf4e16c15c448a2b121c63f2d68e3e54b6a8731673cb4aa0cdff5"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"base64ct",
|
|
173
|
+
"blake2",
|
|
174
|
+
"cpufeatures 0.3.0",
|
|
175
|
+
"password-hash",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "assert_cmd"
|
|
180
|
+
version = "2.2.2"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"anstyle",
|
|
185
|
+
"bstr",
|
|
186
|
+
"libc",
|
|
187
|
+
"predicates",
|
|
188
|
+
"predicates-core",
|
|
189
|
+
"predicates-tree",
|
|
190
|
+
"wait-timeout",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "atomic-waker"
|
|
195
|
+
version = "1.1.2"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "autocfg"
|
|
201
|
+
version = "1.5.1"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "base16ct"
|
|
207
|
+
version = "1.0.0"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6"
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "base64"
|
|
213
|
+
version = "0.22.1"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "base64ct"
|
|
219
|
+
version = "1.8.3"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "bcrypt-pbkdf"
|
|
225
|
+
version = "0.11.0"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "144e573728da132683b9488acd528274c790e07fc06ff81ee29f9d8f8b1041e0"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"blowfish",
|
|
230
|
+
"pbkdf2",
|
|
231
|
+
"sha2 0.11.0",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "bit-set"
|
|
236
|
+
version = "0.8.0"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"bit-vec",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "bit-vec"
|
|
245
|
+
version = "0.8.0"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "bitflags"
|
|
251
|
+
version = "2.13.0"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "blake2"
|
|
257
|
+
version = "0.11.0-rc.6"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "061f1a09225e328e1ffbb378d2d49923c0ca5fee19fb5ac1cc9c1e9d52b93690"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"digest 0.11.3",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "block-buffer"
|
|
266
|
+
version = "0.10.4"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"generic-array 0.14.7",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "block-buffer"
|
|
275
|
+
version = "0.12.1"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
278
|
+
dependencies = [
|
|
279
|
+
"hybrid-array",
|
|
280
|
+
"zeroize",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "block-padding"
|
|
285
|
+
version = "0.4.2"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "710f1dd022ef4e93f8a438b4ba958de7f64308434fa6a87104481645cc30068b"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"hybrid-array",
|
|
290
|
+
]
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "blowfish"
|
|
294
|
+
version = "0.10.0"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "62ce3946557b35e71d1bbe07ec385073ce9eda05043f95de134eb578fcf1a298"
|
|
297
|
+
dependencies = [
|
|
298
|
+
"byteorder",
|
|
299
|
+
"cipher 0.5.2",
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "bstr"
|
|
304
|
+
version = "1.12.1"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"memchr",
|
|
309
|
+
"regex-automata",
|
|
310
|
+
"serde",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "bumpalo"
|
|
315
|
+
version = "3.20.3"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "byteorder"
|
|
321
|
+
version = "1.5.0"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "bytes"
|
|
327
|
+
version = "1.12.0"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "camellia"
|
|
333
|
+
version = "0.1.0"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "3264e2574e9ef2b53ce6f536dea83a69ac0bc600b762d1523ff83fe07230ce30"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"byteorder",
|
|
338
|
+
"cipher 0.4.4",
|
|
339
|
+
]
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "cast"
|
|
343
|
+
version = "0.3.0"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "cbc"
|
|
349
|
+
version = "0.2.1"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "ce2dc9ee5f88d11e0beb842c88b33c8a5cf0d1329c4b19494af42b07dbfe8896"
|
|
352
|
+
dependencies = [
|
|
353
|
+
"cipher 0.5.2",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "cc"
|
|
358
|
+
version = "1.2.65"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
|
|
361
|
+
dependencies = [
|
|
362
|
+
"find-msvc-tools",
|
|
363
|
+
"shlex",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "cfg-if"
|
|
368
|
+
version = "1.0.4"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "cfg_aliases"
|
|
374
|
+
version = "0.2.2"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "chacha20"
|
|
380
|
+
version = "0.9.1"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"cfg-if",
|
|
385
|
+
"cipher 0.4.4",
|
|
386
|
+
"cpufeatures 0.2.17",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "chacha20"
|
|
391
|
+
version = "0.10.2"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"cfg-if",
|
|
396
|
+
"cipher 0.5.2",
|
|
397
|
+
"cpufeatures 0.3.0",
|
|
398
|
+
"rand_core 0.10.1",
|
|
399
|
+
"zeroize",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "chacha20poly1305"
|
|
404
|
+
version = "0.10.1"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
|
|
407
|
+
dependencies = [
|
|
408
|
+
"aead 0.5.2",
|
|
409
|
+
"chacha20 0.9.1",
|
|
410
|
+
"cipher 0.4.4",
|
|
411
|
+
"poly1305 0.8.0",
|
|
412
|
+
"zeroize",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "chrono"
|
|
417
|
+
version = "0.4.45"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"iana-time-zone",
|
|
422
|
+
"js-sys",
|
|
423
|
+
"num-traits",
|
|
424
|
+
"wasm-bindgen",
|
|
425
|
+
"windows-link",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "ciborium"
|
|
430
|
+
version = "0.2.2"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"ciborium-io",
|
|
435
|
+
"ciborium-ll",
|
|
436
|
+
"serde",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "ciborium-io"
|
|
441
|
+
version = "0.2.2"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "ciborium-ll"
|
|
447
|
+
version = "0.2.2"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"ciborium-io",
|
|
452
|
+
"half",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "cipher"
|
|
457
|
+
version = "0.4.4"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"crypto-common 0.1.7",
|
|
462
|
+
"inout 0.1.4",
|
|
463
|
+
"zeroize",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "cipher"
|
|
468
|
+
version = "0.5.2"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "e8cf2a2c93cd704877c0858356ed03480ff301ee950b43f1cbe4573b088bfa6c"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"block-buffer 0.12.1",
|
|
473
|
+
"crypto-common 0.2.2",
|
|
474
|
+
"inout 0.2.2",
|
|
475
|
+
"zeroize",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "clap"
|
|
480
|
+
version = "4.6.1"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"clap_builder",
|
|
485
|
+
"clap_derive",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "clap_builder"
|
|
490
|
+
version = "4.6.0"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"anstream",
|
|
495
|
+
"anstyle",
|
|
496
|
+
"clap_lex",
|
|
497
|
+
"strsim",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "clap_derive"
|
|
502
|
+
version = "4.6.1"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"heck",
|
|
507
|
+
"proc-macro2",
|
|
508
|
+
"quote",
|
|
509
|
+
"syn",
|
|
510
|
+
]
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "clap_lex"
|
|
514
|
+
version = "1.1.0"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "cmov"
|
|
520
|
+
version = "0.5.4"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "colorchoice"
|
|
526
|
+
version = "1.0.5"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "combine"
|
|
532
|
+
version = "4.6.7"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"bytes",
|
|
537
|
+
"memchr",
|
|
538
|
+
]
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "const-oid"
|
|
542
|
+
version = "0.10.2"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "core-foundation"
|
|
548
|
+
version = "0.10.1"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"core-foundation-sys",
|
|
553
|
+
"libc",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "core-foundation-sys"
|
|
558
|
+
version = "0.8.7"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "cpubits"
|
|
564
|
+
version = "0.1.1"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "15b85f9c39137c3a891689859392b1bd49812121d0d61c9caf00d46ed5ce06ae"
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "cpufeatures"
|
|
570
|
+
version = "0.2.17"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
573
|
+
dependencies = [
|
|
574
|
+
"libc",
|
|
575
|
+
]
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "cpufeatures"
|
|
579
|
+
version = "0.3.0"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"libc",
|
|
584
|
+
]
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "crc32fast"
|
|
588
|
+
version = "1.5.0"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"cfg-if",
|
|
593
|
+
]
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "criterion"
|
|
597
|
+
version = "0.5.1"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
600
|
+
dependencies = [
|
|
601
|
+
"anes",
|
|
602
|
+
"cast",
|
|
603
|
+
"ciborium",
|
|
604
|
+
"clap",
|
|
605
|
+
"criterion-plot",
|
|
606
|
+
"is-terminal",
|
|
607
|
+
"itertools",
|
|
608
|
+
"num-traits",
|
|
609
|
+
"once_cell",
|
|
610
|
+
"oorandom",
|
|
611
|
+
"plotters",
|
|
612
|
+
"rayon",
|
|
613
|
+
"regex",
|
|
614
|
+
"serde",
|
|
615
|
+
"serde_derive",
|
|
616
|
+
"serde_json",
|
|
617
|
+
"tinytemplate",
|
|
618
|
+
"walkdir",
|
|
619
|
+
]
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "criterion-plot"
|
|
623
|
+
version = "0.5.0"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
626
|
+
dependencies = [
|
|
627
|
+
"cast",
|
|
628
|
+
"itertools",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "crossbeam-deque"
|
|
633
|
+
version = "0.8.6"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
636
|
+
dependencies = [
|
|
637
|
+
"crossbeam-epoch",
|
|
638
|
+
"crossbeam-utils",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "crossbeam-epoch"
|
|
643
|
+
version = "0.9.20"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
646
|
+
dependencies = [
|
|
647
|
+
"crossbeam-utils",
|
|
648
|
+
]
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "crossbeam-utils"
|
|
652
|
+
version = "0.8.21"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "crunchy"
|
|
658
|
+
version = "0.2.4"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "crypto-bigint"
|
|
664
|
+
version = "0.7.5"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "1a52aa3fcda4e6302a9f48734f234d35d4721b96f8fe07d073f07ce9df4f0271"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"cpubits",
|
|
669
|
+
"ctutils",
|
|
670
|
+
"getrandom 0.4.3",
|
|
671
|
+
"hybrid-array",
|
|
672
|
+
"num-traits",
|
|
673
|
+
"rand_core 0.10.1",
|
|
674
|
+
"serdect",
|
|
675
|
+
"subtle",
|
|
676
|
+
"zeroize",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "crypto-common"
|
|
681
|
+
version = "0.1.7"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"generic-array 0.14.7",
|
|
686
|
+
"rand_core 0.6.4",
|
|
687
|
+
"typenum",
|
|
688
|
+
]
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "crypto-common"
|
|
692
|
+
version = "0.2.2"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"getrandom 0.4.3",
|
|
697
|
+
"hybrid-array",
|
|
698
|
+
"rand_core 0.10.1",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "crypto-primes"
|
|
703
|
+
version = "0.7.2"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "3633a51a39c69ebbaa4feaa694bd83d241e4093901c84a0963b19d9bb3f0cf8f"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"crypto-bigint",
|
|
708
|
+
"rand_core 0.10.1",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "ctr"
|
|
713
|
+
version = "0.9.2"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"cipher 0.4.4",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "ctr"
|
|
722
|
+
version = "0.10.1"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "baaca1c4b237092596f64d571e9db6ce4109c4ef9742e27590f1709594461f21"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"cipher 0.5.2",
|
|
727
|
+
]
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "ctutils"
|
|
731
|
+
version = "0.4.2"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"cmov",
|
|
736
|
+
"subtle",
|
|
737
|
+
]
|
|
738
|
+
|
|
739
|
+
[[package]]
|
|
740
|
+
name = "curve25519-dalek"
|
|
741
|
+
version = "5.0.0"
|
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
+
checksum = "b5eed333089e2e1c1ac8c6c0398e5e2497b4c9926ca6d0365ed1e099afa5bc23"
|
|
744
|
+
dependencies = [
|
|
745
|
+
"cfg-if",
|
|
746
|
+
"cpufeatures 0.3.0",
|
|
747
|
+
"curve25519-dalek-derive",
|
|
748
|
+
"digest 0.11.3",
|
|
749
|
+
"fiat-crypto",
|
|
750
|
+
"rand_core 0.10.1",
|
|
751
|
+
"rustc_version",
|
|
752
|
+
"subtle",
|
|
753
|
+
"zeroize",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "curve25519-dalek-derive"
|
|
758
|
+
version = "0.1.1"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"proc-macro2",
|
|
763
|
+
"quote",
|
|
764
|
+
"syn",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "data-encoding"
|
|
769
|
+
version = "2.11.0"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "delegate"
|
|
775
|
+
version = "0.13.5"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"proc-macro2",
|
|
780
|
+
"quote",
|
|
781
|
+
"syn",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "der"
|
|
786
|
+
version = "0.8.0"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"const-oid",
|
|
791
|
+
"pem-rfc7468",
|
|
792
|
+
"zeroize",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "deranged"
|
|
797
|
+
version = "0.5.8"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"powerfmt",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "des"
|
|
806
|
+
version = "0.8.1"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"cipher 0.4.4",
|
|
811
|
+
]
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "des"
|
|
815
|
+
version = "0.9.0"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "916a94e407b54f9034d71dd748234cd1e516ced6284009906ae246f177eafe5a"
|
|
818
|
+
dependencies = [
|
|
819
|
+
"cipher 0.5.2",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "difflib"
|
|
824
|
+
version = "0.4.0"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "digest"
|
|
830
|
+
version = "0.10.7"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
833
|
+
dependencies = [
|
|
834
|
+
"block-buffer 0.10.4",
|
|
835
|
+
"crypto-common 0.1.7",
|
|
836
|
+
"subtle",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "digest"
|
|
841
|
+
version = "0.11.3"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"block-buffer 0.12.1",
|
|
846
|
+
"const-oid",
|
|
847
|
+
"crypto-common 0.2.2",
|
|
848
|
+
"ctutils",
|
|
849
|
+
]
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "dtoa"
|
|
853
|
+
version = "1.0.11"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "ecdsa"
|
|
859
|
+
version = "0.17.0"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "c0681a4fc24c767085329728d8dfba959af91228aa4610cca4f8ce317ba46ae0"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"der",
|
|
864
|
+
"digest 0.11.3",
|
|
865
|
+
"elliptic-curve",
|
|
866
|
+
"rfc6979",
|
|
867
|
+
"signature",
|
|
868
|
+
"spki",
|
|
869
|
+
"zeroize",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "ed25519"
|
|
874
|
+
version = "3.0.0"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"pkcs8",
|
|
879
|
+
"signature",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "ed25519-dalek"
|
|
884
|
+
version = "3.0.0"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "6ebaa1a2bf1290ab3bfe5a7b771d050ebffab2711c19a81691c683a5144a25de"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"curve25519-dalek",
|
|
889
|
+
"ed25519",
|
|
890
|
+
"rand_core 0.10.1",
|
|
891
|
+
"serde",
|
|
892
|
+
"sha2 0.11.0",
|
|
893
|
+
"signature",
|
|
894
|
+
"subtle",
|
|
895
|
+
"zeroize",
|
|
896
|
+
]
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "eggress-admin"
|
|
900
|
+
version = "1.0.4"
|
|
901
|
+
dependencies = [
|
|
902
|
+
"base64",
|
|
903
|
+
"bytes",
|
|
904
|
+
"eggress-config",
|
|
905
|
+
"eggress-core",
|
|
906
|
+
"eggress-metrics",
|
|
907
|
+
"eggress-protocol-reverse",
|
|
908
|
+
"eggress-routing",
|
|
909
|
+
"eggress-udp",
|
|
910
|
+
"http",
|
|
911
|
+
"http-body-util",
|
|
912
|
+
"hyper",
|
|
913
|
+
"hyper-util",
|
|
914
|
+
"serde",
|
|
915
|
+
"serde_json",
|
|
916
|
+
"subtle",
|
|
917
|
+
"thiserror",
|
|
918
|
+
"tokio",
|
|
919
|
+
"tokio-util",
|
|
920
|
+
"tracing",
|
|
921
|
+
"zeroize",
|
|
922
|
+
]
|
|
923
|
+
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "eggress-bench"
|
|
926
|
+
version = "1.0.4"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"criterion",
|
|
929
|
+
"eggress-core",
|
|
930
|
+
"eggress-protocol-http",
|
|
931
|
+
"eggress-protocol-socks",
|
|
932
|
+
"eggress-routing",
|
|
933
|
+
"ipnet",
|
|
934
|
+
"regex",
|
|
935
|
+
"tokio",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "eggress-cli"
|
|
940
|
+
version = "1.0.4"
|
|
941
|
+
dependencies = [
|
|
942
|
+
"assert_cmd",
|
|
943
|
+
"base64",
|
|
944
|
+
"clap",
|
|
945
|
+
"eggress-config",
|
|
946
|
+
"eggress-core",
|
|
947
|
+
"eggress-metrics",
|
|
948
|
+
"eggress-pproxy-compat",
|
|
949
|
+
"eggress-protocol-h3",
|
|
950
|
+
"eggress-protocol-http",
|
|
951
|
+
"eggress-protocol-shadowsocks",
|
|
952
|
+
"eggress-protocol-socks",
|
|
953
|
+
"eggress-protocol-trojan",
|
|
954
|
+
"eggress-routing",
|
|
955
|
+
"eggress-runtime",
|
|
956
|
+
"eggress-server",
|
|
957
|
+
"eggress-system-proxy",
|
|
958
|
+
"eggress-testkit",
|
|
959
|
+
"eggress-transport-quic",
|
|
960
|
+
"eggress-transport-tls",
|
|
961
|
+
"eggress-udp",
|
|
962
|
+
"eggress-uri",
|
|
963
|
+
"http",
|
|
964
|
+
"predicates",
|
|
965
|
+
"rand 0.8.6",
|
|
966
|
+
"rcgen",
|
|
967
|
+
"rustls",
|
|
968
|
+
"serde",
|
|
969
|
+
"serde_json",
|
|
970
|
+
"tempfile",
|
|
971
|
+
"tokio",
|
|
972
|
+
"tokio-rustls",
|
|
973
|
+
"tokio-util",
|
|
974
|
+
"toml",
|
|
975
|
+
"tracing",
|
|
976
|
+
"tracing-subscriber",
|
|
977
|
+
]
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "eggress-config"
|
|
981
|
+
version = "1.0.4"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"eggress-core",
|
|
984
|
+
"eggress-routing",
|
|
985
|
+
"eggress-transport-tls",
|
|
986
|
+
"eggress-udp",
|
|
987
|
+
"eggress-uri",
|
|
988
|
+
"ipnet",
|
|
989
|
+
"rcgen",
|
|
990
|
+
"regex",
|
|
991
|
+
"serde",
|
|
992
|
+
"tempfile",
|
|
993
|
+
"thiserror",
|
|
994
|
+
"toml",
|
|
995
|
+
"zeroize",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "eggress-core"
|
|
1000
|
+
version = "1.0.4"
|
|
1001
|
+
dependencies = [
|
|
1002
|
+
"bytes",
|
|
1003
|
+
"eggress-uri",
|
|
1004
|
+
"pin-project-lite",
|
|
1005
|
+
"rustls",
|
|
1006
|
+
"serde",
|
|
1007
|
+
"socket2 0.5.10",
|
|
1008
|
+
"thiserror",
|
|
1009
|
+
"tokio",
|
|
1010
|
+
"tokio-util",
|
|
1011
|
+
"tracing",
|
|
1012
|
+
"trait-variant",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "eggress-embed"
|
|
1017
|
+
version = "1.0.4"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"eggress-config",
|
|
1020
|
+
"eggress-core",
|
|
1021
|
+
"eggress-metrics",
|
|
1022
|
+
"eggress-pproxy-compat",
|
|
1023
|
+
"eggress-protocol-socks",
|
|
1024
|
+
"eggress-runtime",
|
|
1025
|
+
"eggress-server",
|
|
1026
|
+
"eggress-uri",
|
|
1027
|
+
"tempfile",
|
|
1028
|
+
"thiserror",
|
|
1029
|
+
"tokio",
|
|
1030
|
+
"tokio-test",
|
|
1031
|
+
"tokio-util",
|
|
1032
|
+
"toml",
|
|
1033
|
+
"tracing",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "eggress-metrics"
|
|
1038
|
+
version = "1.0.4"
|
|
1039
|
+
dependencies = [
|
|
1040
|
+
"eggress-protocol-http",
|
|
1041
|
+
"eggress-protocol-shadowsocks",
|
|
1042
|
+
"eggress-server",
|
|
1043
|
+
"eggress-udp",
|
|
1044
|
+
"prometheus-client",
|
|
1045
|
+
"serde_json",
|
|
1046
|
+
"thiserror",
|
|
1047
|
+
]
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "eggress-pproxy-compat"
|
|
1051
|
+
version = "1.0.4"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"assert_cmd",
|
|
1054
|
+
"eggress-config",
|
|
1055
|
+
"eggress-uri",
|
|
1056
|
+
"fancy-regex",
|
|
1057
|
+
"predicates",
|
|
1058
|
+
"regex",
|
|
1059
|
+
"serde",
|
|
1060
|
+
"serde_json",
|
|
1061
|
+
"tempfile",
|
|
1062
|
+
"thiserror",
|
|
1063
|
+
"toml",
|
|
1064
|
+
"tracing",
|
|
1065
|
+
]
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "eggress-protocol-h3"
|
|
1069
|
+
version = "1.0.4"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"base64",
|
|
1072
|
+
"bytes",
|
|
1073
|
+
"eggress-core",
|
|
1074
|
+
"eggress-transport-quic",
|
|
1075
|
+
"h3",
|
|
1076
|
+
"h3-quinn",
|
|
1077
|
+
"http",
|
|
1078
|
+
"rcgen",
|
|
1079
|
+
"subtle",
|
|
1080
|
+
"thiserror",
|
|
1081
|
+
"tokio",
|
|
1082
|
+
"tokio-util",
|
|
1083
|
+
"tracing",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "eggress-protocol-http"
|
|
1088
|
+
version = "1.0.4"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"base64",
|
|
1091
|
+
"bytes",
|
|
1092
|
+
"eggress-core",
|
|
1093
|
+
"eggress-testkit",
|
|
1094
|
+
"h2",
|
|
1095
|
+
"http",
|
|
1096
|
+
"httparse",
|
|
1097
|
+
"once_cell",
|
|
1098
|
+
"proptest",
|
|
1099
|
+
"sha2 0.10.9",
|
|
1100
|
+
"subtle",
|
|
1101
|
+
"thiserror",
|
|
1102
|
+
"tokio",
|
|
1103
|
+
"tokio-util",
|
|
1104
|
+
"tracing",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "eggress-protocol-raw"
|
|
1109
|
+
version = "1.0.4"
|
|
1110
|
+
dependencies = [
|
|
1111
|
+
"eggress-core",
|
|
1112
|
+
"thiserror",
|
|
1113
|
+
"tokio",
|
|
1114
|
+
"tracing",
|
|
1115
|
+
]
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "eggress-protocol-reverse"
|
|
1119
|
+
version = "1.0.4"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"bytes",
|
|
1122
|
+
"eggress-core",
|
|
1123
|
+
"eggress-uri",
|
|
1124
|
+
"serde",
|
|
1125
|
+
"serde_json",
|
|
1126
|
+
"subtle",
|
|
1127
|
+
"thiserror",
|
|
1128
|
+
"tokio",
|
|
1129
|
+
"tokio-util",
|
|
1130
|
+
"tracing",
|
|
1131
|
+
]
|
|
1132
|
+
|
|
1133
|
+
[[package]]
|
|
1134
|
+
name = "eggress-protocol-shadowsocks"
|
|
1135
|
+
version = "1.0.4"
|
|
1136
|
+
dependencies = [
|
|
1137
|
+
"aes 0.8.4",
|
|
1138
|
+
"aes-gcm 0.10.3",
|
|
1139
|
+
"blowfish",
|
|
1140
|
+
"bytes",
|
|
1141
|
+
"camellia",
|
|
1142
|
+
"chacha20 0.9.1",
|
|
1143
|
+
"chacha20poly1305",
|
|
1144
|
+
"des 0.8.1",
|
|
1145
|
+
"eggress-core",
|
|
1146
|
+
"eggress-testkit",
|
|
1147
|
+
"eggress-uri",
|
|
1148
|
+
"flate2",
|
|
1149
|
+
"hkdf 0.12.4",
|
|
1150
|
+
"hmac 0.12.1",
|
|
1151
|
+
"md-5",
|
|
1152
|
+
"rand 0.8.6",
|
|
1153
|
+
"salsa20",
|
|
1154
|
+
"sha1 0.10.6",
|
|
1155
|
+
"sha2 0.10.9",
|
|
1156
|
+
"thiserror",
|
|
1157
|
+
"tokio",
|
|
1158
|
+
"tracing",
|
|
1159
|
+
"zeroize",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "eggress-protocol-socks"
|
|
1164
|
+
version = "1.0.4"
|
|
1165
|
+
dependencies = [
|
|
1166
|
+
"bytes",
|
|
1167
|
+
"eggress-core",
|
|
1168
|
+
"eggress-testkit",
|
|
1169
|
+
"proptest",
|
|
1170
|
+
"subtle",
|
|
1171
|
+
"thiserror",
|
|
1172
|
+
"tokio",
|
|
1173
|
+
"zeroize",
|
|
1174
|
+
]
|
|
1175
|
+
|
|
1176
|
+
[[package]]
|
|
1177
|
+
name = "eggress-protocol-trojan"
|
|
1178
|
+
version = "1.0.4"
|
|
1179
|
+
dependencies = [
|
|
1180
|
+
"bytes",
|
|
1181
|
+
"eggress-core",
|
|
1182
|
+
"eggress-transport-tls",
|
|
1183
|
+
"eggress-uri",
|
|
1184
|
+
"proptest",
|
|
1185
|
+
"rcgen",
|
|
1186
|
+
"rustls",
|
|
1187
|
+
"sha2 0.10.9",
|
|
1188
|
+
"subtle",
|
|
1189
|
+
"thiserror",
|
|
1190
|
+
"tokio",
|
|
1191
|
+
"tokio-rustls",
|
|
1192
|
+
]
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "eggress-protocol-websocket"
|
|
1196
|
+
version = "1.0.4"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"base64",
|
|
1199
|
+
"bytes",
|
|
1200
|
+
"eggress-core",
|
|
1201
|
+
"futures-util",
|
|
1202
|
+
"subtle",
|
|
1203
|
+
"thiserror",
|
|
1204
|
+
"tokio",
|
|
1205
|
+
"tokio-tungstenite",
|
|
1206
|
+
"tracing",
|
|
1207
|
+
"zeroize",
|
|
1208
|
+
]
|
|
1209
|
+
|
|
1210
|
+
[[package]]
|
|
1211
|
+
name = "eggress-python"
|
|
1212
|
+
version = "1.0.4"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"eggress-cli",
|
|
1215
|
+
"eggress-config",
|
|
1216
|
+
"eggress-core",
|
|
1217
|
+
"eggress-embed",
|
|
1218
|
+
"eggress-pproxy-compat",
|
|
1219
|
+
"eggress-routing",
|
|
1220
|
+
"eggress-runtime",
|
|
1221
|
+
"eggress-system-proxy",
|
|
1222
|
+
"eggress-uri",
|
|
1223
|
+
"pyo3",
|
|
1224
|
+
"serde_json",
|
|
1225
|
+
"tokio",
|
|
1226
|
+
"toml",
|
|
1227
|
+
"tracing-subscriber",
|
|
1228
|
+
"url",
|
|
1229
|
+
]
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "eggress-routing"
|
|
1233
|
+
version = "1.0.4"
|
|
1234
|
+
dependencies = [
|
|
1235
|
+
"arc-swap",
|
|
1236
|
+
"eggress-core",
|
|
1237
|
+
"eggress-uri",
|
|
1238
|
+
"fastrand",
|
|
1239
|
+
"ipnet",
|
|
1240
|
+
"once_cell",
|
|
1241
|
+
"proptest",
|
|
1242
|
+
"regex",
|
|
1243
|
+
"serde",
|
|
1244
|
+
"serde_json",
|
|
1245
|
+
"thiserror",
|
|
1246
|
+
"tokio",
|
|
1247
|
+
"tokio-util",
|
|
1248
|
+
"tracing",
|
|
1249
|
+
]
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "eggress-runtime"
|
|
1253
|
+
version = "1.0.4"
|
|
1254
|
+
dependencies = [
|
|
1255
|
+
"arc-swap",
|
|
1256
|
+
"bytes",
|
|
1257
|
+
"eggress-admin",
|
|
1258
|
+
"eggress-config",
|
|
1259
|
+
"eggress-core",
|
|
1260
|
+
"eggress-metrics",
|
|
1261
|
+
"eggress-protocol-h3",
|
|
1262
|
+
"eggress-protocol-http",
|
|
1263
|
+
"eggress-protocol-reverse",
|
|
1264
|
+
"eggress-protocol-shadowsocks",
|
|
1265
|
+
"eggress-protocol-trojan",
|
|
1266
|
+
"eggress-protocol-websocket",
|
|
1267
|
+
"eggress-routing",
|
|
1268
|
+
"eggress-server",
|
|
1269
|
+
"eggress-system-proxy",
|
|
1270
|
+
"eggress-testkit",
|
|
1271
|
+
"eggress-transport-quic",
|
|
1272
|
+
"eggress-transport-ssh",
|
|
1273
|
+
"eggress-transport-tls",
|
|
1274
|
+
"eggress-udp",
|
|
1275
|
+
"eggress-uri",
|
|
1276
|
+
"fastrand",
|
|
1277
|
+
"futures-util",
|
|
1278
|
+
"h2",
|
|
1279
|
+
"http",
|
|
1280
|
+
"rcgen",
|
|
1281
|
+
"rustls",
|
|
1282
|
+
"serde_json",
|
|
1283
|
+
"tempfile",
|
|
1284
|
+
"thiserror",
|
|
1285
|
+
"tokio",
|
|
1286
|
+
"tokio-rustls",
|
|
1287
|
+
"tokio-tungstenite",
|
|
1288
|
+
"tokio-util",
|
|
1289
|
+
"tracing",
|
|
1290
|
+
]
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "eggress-server"
|
|
1294
|
+
version = "1.0.4"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"base64",
|
|
1297
|
+
"bytes",
|
|
1298
|
+
"eggress-core",
|
|
1299
|
+
"eggress-protocol-h3",
|
|
1300
|
+
"eggress-protocol-http",
|
|
1301
|
+
"eggress-protocol-shadowsocks",
|
|
1302
|
+
"eggress-protocol-socks",
|
|
1303
|
+
"eggress-protocol-trojan",
|
|
1304
|
+
"eggress-protocol-websocket",
|
|
1305
|
+
"eggress-routing",
|
|
1306
|
+
"eggress-testkit",
|
|
1307
|
+
"eggress-transport-quic",
|
|
1308
|
+
"eggress-transport-ssh",
|
|
1309
|
+
"eggress-transport-tls",
|
|
1310
|
+
"eggress-udp",
|
|
1311
|
+
"eggress-uri",
|
|
1312
|
+
"futures-util",
|
|
1313
|
+
"h2",
|
|
1314
|
+
"http",
|
|
1315
|
+
"libc",
|
|
1316
|
+
"rustls",
|
|
1317
|
+
"subtle",
|
|
1318
|
+
"thiserror",
|
|
1319
|
+
"tokio",
|
|
1320
|
+
"tokio-tungstenite",
|
|
1321
|
+
"tokio-util",
|
|
1322
|
+
"tracing",
|
|
1323
|
+
"zeroize",
|
|
1324
|
+
]
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "eggress-system-proxy"
|
|
1328
|
+
version = "1.0.4"
|
|
1329
|
+
dependencies = [
|
|
1330
|
+
"eggress-uri",
|
|
1331
|
+
"serde",
|
|
1332
|
+
"serde_json",
|
|
1333
|
+
"tempfile",
|
|
1334
|
+
"thiserror",
|
|
1335
|
+
"tracing",
|
|
1336
|
+
]
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "eggress-testkit"
|
|
1340
|
+
version = "1.0.4"
|
|
1341
|
+
dependencies = [
|
|
1342
|
+
"eggress-config",
|
|
1343
|
+
"eggress-pproxy-compat",
|
|
1344
|
+
"eggress-runtime",
|
|
1345
|
+
"rcgen",
|
|
1346
|
+
"regex",
|
|
1347
|
+
"rustls",
|
|
1348
|
+
"serde",
|
|
1349
|
+
"serde_json",
|
|
1350
|
+
"tempfile",
|
|
1351
|
+
"thiserror",
|
|
1352
|
+
"tokio",
|
|
1353
|
+
"tokio-rustls",
|
|
1354
|
+
"tokio-test",
|
|
1355
|
+
"toml",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "eggress-transport-quic"
|
|
1360
|
+
version = "1.0.4"
|
|
1361
|
+
dependencies = [
|
|
1362
|
+
"bytes",
|
|
1363
|
+
"eggress-core",
|
|
1364
|
+
"h3",
|
|
1365
|
+
"h3-quinn",
|
|
1366
|
+
"quinn",
|
|
1367
|
+
"rcgen",
|
|
1368
|
+
"rustls",
|
|
1369
|
+
"rustls-platform-verifier",
|
|
1370
|
+
"thiserror",
|
|
1371
|
+
"tokio",
|
|
1372
|
+
"tokio-util",
|
|
1373
|
+
"tracing",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "eggress-transport-ssh"
|
|
1378
|
+
version = "1.0.4"
|
|
1379
|
+
dependencies = [
|
|
1380
|
+
"eggress-core",
|
|
1381
|
+
"russh",
|
|
1382
|
+
"tempfile",
|
|
1383
|
+
"thiserror",
|
|
1384
|
+
"tokio",
|
|
1385
|
+
"tracing",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "eggress-transport-tls"
|
|
1390
|
+
version = "1.0.4"
|
|
1391
|
+
dependencies = [
|
|
1392
|
+
"bytes",
|
|
1393
|
+
"eggress-core",
|
|
1394
|
+
"pkcs8",
|
|
1395
|
+
"rcgen",
|
|
1396
|
+
"rustls",
|
|
1397
|
+
"thiserror",
|
|
1398
|
+
"tokio",
|
|
1399
|
+
"tokio-rustls",
|
|
1400
|
+
"tracing",
|
|
1401
|
+
"webpki-roots 0.26.11",
|
|
1402
|
+
]
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "eggress-udp"
|
|
1406
|
+
version = "1.0.4"
|
|
1407
|
+
dependencies = [
|
|
1408
|
+
"bytes",
|
|
1409
|
+
"eggress-core",
|
|
1410
|
+
"eggress-protocol-shadowsocks",
|
|
1411
|
+
"eggress-protocol-socks",
|
|
1412
|
+
"eggress-routing",
|
|
1413
|
+
"eggress-testkit",
|
|
1414
|
+
"eggress-uri",
|
|
1415
|
+
"ipnet",
|
|
1416
|
+
"rand 0.8.6",
|
|
1417
|
+
"serde",
|
|
1418
|
+
"thiserror",
|
|
1419
|
+
"tokio",
|
|
1420
|
+
"tokio-util",
|
|
1421
|
+
"tracing",
|
|
1422
|
+
]
|
|
1423
|
+
|
|
1424
|
+
[[package]]
|
|
1425
|
+
name = "eggress-uri"
|
|
1426
|
+
version = "1.0.4"
|
|
1427
|
+
dependencies = [
|
|
1428
|
+
"proptest",
|
|
1429
|
+
"serde",
|
|
1430
|
+
"serde_json",
|
|
1431
|
+
"thiserror",
|
|
1432
|
+
]
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "either"
|
|
1436
|
+
version = "1.16.0"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "elliptic-curve"
|
|
1442
|
+
version = "0.14.1"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "9d65aa39b3a5c1c9c1b745c9a019234bb7a21b77abcb4f4d266d706e2d577d65"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"base16ct",
|
|
1447
|
+
"crypto-bigint",
|
|
1448
|
+
"crypto-common 0.2.2",
|
|
1449
|
+
"digest 0.11.3",
|
|
1450
|
+
"ff",
|
|
1451
|
+
"group",
|
|
1452
|
+
"hkdf 0.13.0",
|
|
1453
|
+
"hybrid-array",
|
|
1454
|
+
"pem-rfc7468",
|
|
1455
|
+
"pkcs8",
|
|
1456
|
+
"rand_core 0.10.1",
|
|
1457
|
+
"sec1",
|
|
1458
|
+
"subtle",
|
|
1459
|
+
"zeroize",
|
|
1460
|
+
]
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "enum_dispatch"
|
|
1464
|
+
version = "0.3.13"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
|
1467
|
+
dependencies = [
|
|
1468
|
+
"once_cell",
|
|
1469
|
+
"proc-macro2",
|
|
1470
|
+
"quote",
|
|
1471
|
+
"syn",
|
|
1472
|
+
]
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "equivalent"
|
|
1476
|
+
version = "1.0.2"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "errno"
|
|
1482
|
+
version = "0.3.14"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1485
|
+
dependencies = [
|
|
1486
|
+
"libc",
|
|
1487
|
+
"windows-sys 0.52.0",
|
|
1488
|
+
]
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "fancy-regex"
|
|
1492
|
+
version = "0.14.0"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
|
|
1495
|
+
dependencies = [
|
|
1496
|
+
"bit-set",
|
|
1497
|
+
"regex-automata",
|
|
1498
|
+
"regex-syntax",
|
|
1499
|
+
]
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "fastrand"
|
|
1503
|
+
version = "2.4.1"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "ff"
|
|
1509
|
+
version = "0.14.0"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "a1f686ab92a9fb0eaf188f6c6c87b89490baa6fdb0db4544ba4dc47f7942489f"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"rand_core 0.10.1",
|
|
1514
|
+
"subtle",
|
|
1515
|
+
]
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "fiat-crypto"
|
|
1519
|
+
version = "0.3.0"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
|
|
1522
|
+
|
|
1523
|
+
[[package]]
|
|
1524
|
+
name = "find-msvc-tools"
|
|
1525
|
+
version = "0.1.9"
|
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "flate2"
|
|
1531
|
+
version = "1.1.9"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
1534
|
+
dependencies = [
|
|
1535
|
+
"crc32fast",
|
|
1536
|
+
"miniz_oxide",
|
|
1537
|
+
]
|
|
1538
|
+
|
|
1539
|
+
[[package]]
|
|
1540
|
+
name = "float-cmp"
|
|
1541
|
+
version = "0.10.0"
|
|
1542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
1544
|
+
dependencies = [
|
|
1545
|
+
"num-traits",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "fnv"
|
|
1550
|
+
version = "1.0.7"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1553
|
+
|
|
1554
|
+
[[package]]
|
|
1555
|
+
name = "form_urlencoded"
|
|
1556
|
+
version = "1.2.2"
|
|
1557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1558
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1559
|
+
dependencies = [
|
|
1560
|
+
"percent-encoding",
|
|
1561
|
+
]
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "futures"
|
|
1565
|
+
version = "0.3.32"
|
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
1568
|
+
dependencies = [
|
|
1569
|
+
"futures-channel",
|
|
1570
|
+
"futures-core",
|
|
1571
|
+
"futures-executor",
|
|
1572
|
+
"futures-io",
|
|
1573
|
+
"futures-sink",
|
|
1574
|
+
"futures-task",
|
|
1575
|
+
"futures-util",
|
|
1576
|
+
]
|
|
1577
|
+
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "futures-channel"
|
|
1580
|
+
version = "0.3.32"
|
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
1583
|
+
dependencies = [
|
|
1584
|
+
"futures-core",
|
|
1585
|
+
"futures-sink",
|
|
1586
|
+
]
|
|
1587
|
+
|
|
1588
|
+
[[package]]
|
|
1589
|
+
name = "futures-core"
|
|
1590
|
+
version = "0.3.32"
|
|
1591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "futures-executor"
|
|
1596
|
+
version = "0.3.32"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"futures-core",
|
|
1601
|
+
"futures-task",
|
|
1602
|
+
"futures-util",
|
|
1603
|
+
]
|
|
1604
|
+
|
|
1605
|
+
[[package]]
|
|
1606
|
+
name = "futures-io"
|
|
1607
|
+
version = "0.3.34"
|
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
+
checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "futures-macro"
|
|
1613
|
+
version = "0.3.32"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
1616
|
+
dependencies = [
|
|
1617
|
+
"proc-macro2",
|
|
1618
|
+
"quote",
|
|
1619
|
+
"syn",
|
|
1620
|
+
]
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "futures-sink"
|
|
1624
|
+
version = "0.3.32"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "futures-task"
|
|
1630
|
+
version = "0.3.32"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
1633
|
+
|
|
1634
|
+
[[package]]
|
|
1635
|
+
name = "futures-util"
|
|
1636
|
+
version = "0.3.32"
|
|
1637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
1639
|
+
dependencies = [
|
|
1640
|
+
"futures-channel",
|
|
1641
|
+
"futures-core",
|
|
1642
|
+
"futures-io",
|
|
1643
|
+
"futures-macro",
|
|
1644
|
+
"futures-sink",
|
|
1645
|
+
"futures-task",
|
|
1646
|
+
"memchr",
|
|
1647
|
+
"pin-project-lite",
|
|
1648
|
+
"slab",
|
|
1649
|
+
]
|
|
1650
|
+
|
|
1651
|
+
[[package]]
|
|
1652
|
+
name = "generic-array"
|
|
1653
|
+
version = "0.14.7"
|
|
1654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1655
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1656
|
+
dependencies = [
|
|
1657
|
+
"typenum",
|
|
1658
|
+
"version_check",
|
|
1659
|
+
]
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "generic-array"
|
|
1663
|
+
version = "1.4.5"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "337d46834ee672ab3e48caca2cb0c78cc174fb12b3a68d0d88f99a0519a5e36e"
|
|
1666
|
+
dependencies = [
|
|
1667
|
+
"generic-array 0.14.7",
|
|
1668
|
+
"rustversion",
|
|
1669
|
+
"typenum",
|
|
1670
|
+
]
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "getrandom"
|
|
1674
|
+
version = "0.2.17"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1677
|
+
dependencies = [
|
|
1678
|
+
"cfg-if",
|
|
1679
|
+
"js-sys",
|
|
1680
|
+
"libc",
|
|
1681
|
+
"wasi",
|
|
1682
|
+
"wasm-bindgen",
|
|
1683
|
+
]
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "getrandom"
|
|
1687
|
+
version = "0.3.4"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1690
|
+
dependencies = [
|
|
1691
|
+
"cfg-if",
|
|
1692
|
+
"libc",
|
|
1693
|
+
"r-efi 5.3.0",
|
|
1694
|
+
"wasip2",
|
|
1695
|
+
]
|
|
1696
|
+
|
|
1697
|
+
[[package]]
|
|
1698
|
+
name = "getrandom"
|
|
1699
|
+
version = "0.4.3"
|
|
1700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
1702
|
+
dependencies = [
|
|
1703
|
+
"cfg-if",
|
|
1704
|
+
"js-sys",
|
|
1705
|
+
"libc",
|
|
1706
|
+
"r-efi 6.0.0",
|
|
1707
|
+
"rand_core 0.10.1",
|
|
1708
|
+
"wasm-bindgen",
|
|
1709
|
+
]
|
|
1710
|
+
|
|
1711
|
+
[[package]]
|
|
1712
|
+
name = "ghash"
|
|
1713
|
+
version = "0.5.1"
|
|
1714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
|
+
checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
|
|
1716
|
+
dependencies = [
|
|
1717
|
+
"opaque-debug",
|
|
1718
|
+
"polyval 0.6.2",
|
|
1719
|
+
]
|
|
1720
|
+
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "ghash"
|
|
1723
|
+
version = "0.6.0"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "2eecf2d5dc9b66b732b97707a0210906b1d30523eb773193ab777c0c84b3e8d5"
|
|
1726
|
+
dependencies = [
|
|
1727
|
+
"polyval 0.7.3",
|
|
1728
|
+
]
|
|
1729
|
+
|
|
1730
|
+
[[package]]
|
|
1731
|
+
name = "group"
|
|
1732
|
+
version = "0.14.0"
|
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
+
checksum = "7fd1a1c7a5206c5b7a3f5a0d7ccd3ff85d0c8f5133d62a02680255b0004af5f4"
|
|
1735
|
+
dependencies = [
|
|
1736
|
+
"ff",
|
|
1737
|
+
"rand_core 0.10.1",
|
|
1738
|
+
"subtle",
|
|
1739
|
+
]
|
|
1740
|
+
|
|
1741
|
+
[[package]]
|
|
1742
|
+
name = "h2"
|
|
1743
|
+
version = "0.4.16"
|
|
1744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
+
checksum = "a9f37a958b41b3b19ee2707c06439c0e9e547e847223eb791ecb0cb821c65e27"
|
|
1746
|
+
dependencies = [
|
|
1747
|
+
"atomic-waker",
|
|
1748
|
+
"bytes",
|
|
1749
|
+
"fnv",
|
|
1750
|
+
"futures-core",
|
|
1751
|
+
"futures-sink",
|
|
1752
|
+
"http",
|
|
1753
|
+
"indexmap",
|
|
1754
|
+
"slab",
|
|
1755
|
+
"tokio",
|
|
1756
|
+
"tokio-util",
|
|
1757
|
+
"tracing",
|
|
1758
|
+
]
|
|
1759
|
+
|
|
1760
|
+
[[package]]
|
|
1761
|
+
name = "h3"
|
|
1762
|
+
version = "0.0.8"
|
|
1763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
+
checksum = "10872b55cfb02a821b69dc7cf8dc6a71d6af25eb9a79662bec4a9d016056b3be"
|
|
1765
|
+
dependencies = [
|
|
1766
|
+
"bytes",
|
|
1767
|
+
"fastrand",
|
|
1768
|
+
"futures-util",
|
|
1769
|
+
"http",
|
|
1770
|
+
"pin-project-lite",
|
|
1771
|
+
"tokio",
|
|
1772
|
+
]
|
|
1773
|
+
|
|
1774
|
+
[[package]]
|
|
1775
|
+
name = "h3-quinn"
|
|
1776
|
+
version = "0.0.10"
|
|
1777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
+
checksum = "8b2e732c8d91a74731663ac8479ab505042fbf547b9a207213ab7fbcbfc4f8b4"
|
|
1779
|
+
dependencies = [
|
|
1780
|
+
"bytes",
|
|
1781
|
+
"futures",
|
|
1782
|
+
"h3",
|
|
1783
|
+
"quinn",
|
|
1784
|
+
"tokio",
|
|
1785
|
+
"tokio-util",
|
|
1786
|
+
]
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "half"
|
|
1790
|
+
version = "2.7.1"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1793
|
+
dependencies = [
|
|
1794
|
+
"cfg-if",
|
|
1795
|
+
"crunchy",
|
|
1796
|
+
"zerocopy",
|
|
1797
|
+
]
|
|
1798
|
+
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "hashbrown"
|
|
1801
|
+
version = "0.17.1"
|
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1804
|
+
|
|
1805
|
+
[[package]]
|
|
1806
|
+
name = "heck"
|
|
1807
|
+
version = "0.5.0"
|
|
1808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1809
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "hermit-abi"
|
|
1813
|
+
version = "0.5.2"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "hex"
|
|
1819
|
+
version = "0.4.3"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "hex-literal"
|
|
1825
|
+
version = "1.1.0"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "e712f64ec3850b98572bffac52e2c6f282b29fe6c5fa6d42334b30be438d95c1"
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "hkdf"
|
|
1831
|
+
version = "0.12.4"
|
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
1834
|
+
dependencies = [
|
|
1835
|
+
"hmac 0.12.1",
|
|
1836
|
+
]
|
|
1837
|
+
|
|
1838
|
+
[[package]]
|
|
1839
|
+
name = "hkdf"
|
|
1840
|
+
version = "0.13.0"
|
|
1841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
+
checksum = "4aaa26c720c68b866f2c96ef5c1264b3e6f473fe5d4ce61cd44bbe913e553018"
|
|
1843
|
+
dependencies = [
|
|
1844
|
+
"hmac 0.13.0",
|
|
1845
|
+
]
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "hmac"
|
|
1849
|
+
version = "0.12.1"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1852
|
+
dependencies = [
|
|
1853
|
+
"digest 0.10.7",
|
|
1854
|
+
]
|
|
1855
|
+
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "hmac"
|
|
1858
|
+
version = "0.13.0"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
|
|
1861
|
+
dependencies = [
|
|
1862
|
+
"digest 0.11.3",
|
|
1863
|
+
]
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "http"
|
|
1867
|
+
version = "1.4.2"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"bytes",
|
|
1872
|
+
"itoa",
|
|
1873
|
+
]
|
|
1874
|
+
|
|
1875
|
+
[[package]]
|
|
1876
|
+
name = "http-body"
|
|
1877
|
+
version = "1.0.1"
|
|
1878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1879
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1880
|
+
dependencies = [
|
|
1881
|
+
"bytes",
|
|
1882
|
+
"http",
|
|
1883
|
+
]
|
|
1884
|
+
|
|
1885
|
+
[[package]]
|
|
1886
|
+
name = "http-body-util"
|
|
1887
|
+
version = "0.1.3"
|
|
1888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1890
|
+
dependencies = [
|
|
1891
|
+
"bytes",
|
|
1892
|
+
"futures-core",
|
|
1893
|
+
"http",
|
|
1894
|
+
"http-body",
|
|
1895
|
+
"pin-project-lite",
|
|
1896
|
+
]
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "httparse"
|
|
1900
|
+
version = "1.10.1"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "httpdate"
|
|
1906
|
+
version = "1.0.3"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1909
|
+
|
|
1910
|
+
[[package]]
|
|
1911
|
+
name = "hybrid-array"
|
|
1912
|
+
version = "0.4.14"
|
|
1913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1914
|
+
checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
|
|
1915
|
+
dependencies = [
|
|
1916
|
+
"ctutils",
|
|
1917
|
+
"subtle",
|
|
1918
|
+
"typenum",
|
|
1919
|
+
"zeroize",
|
|
1920
|
+
]
|
|
1921
|
+
|
|
1922
|
+
[[package]]
|
|
1923
|
+
name = "hyper"
|
|
1924
|
+
version = "1.10.1"
|
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
1927
|
+
dependencies = [
|
|
1928
|
+
"atomic-waker",
|
|
1929
|
+
"bytes",
|
|
1930
|
+
"futures-channel",
|
|
1931
|
+
"futures-core",
|
|
1932
|
+
"http",
|
|
1933
|
+
"http-body",
|
|
1934
|
+
"httparse",
|
|
1935
|
+
"httpdate",
|
|
1936
|
+
"itoa",
|
|
1937
|
+
"pin-project-lite",
|
|
1938
|
+
"smallvec",
|
|
1939
|
+
"tokio",
|
|
1940
|
+
]
|
|
1941
|
+
|
|
1942
|
+
[[package]]
|
|
1943
|
+
name = "hyper-util"
|
|
1944
|
+
version = "0.1.20"
|
|
1945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1946
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1947
|
+
dependencies = [
|
|
1948
|
+
"bytes",
|
|
1949
|
+
"http",
|
|
1950
|
+
"http-body",
|
|
1951
|
+
"hyper",
|
|
1952
|
+
"pin-project-lite",
|
|
1953
|
+
"tokio",
|
|
1954
|
+
]
|
|
1955
|
+
|
|
1956
|
+
[[package]]
|
|
1957
|
+
name = "iana-time-zone"
|
|
1958
|
+
version = "0.1.65"
|
|
1959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1961
|
+
dependencies = [
|
|
1962
|
+
"android_system_properties",
|
|
1963
|
+
"core-foundation-sys",
|
|
1964
|
+
"iana-time-zone-haiku",
|
|
1965
|
+
"js-sys",
|
|
1966
|
+
"log",
|
|
1967
|
+
"wasm-bindgen",
|
|
1968
|
+
"windows-core",
|
|
1969
|
+
]
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "iana-time-zone-haiku"
|
|
1973
|
+
version = "0.1.2"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1976
|
+
dependencies = [
|
|
1977
|
+
"cc",
|
|
1978
|
+
]
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "idna"
|
|
1982
|
+
version = "1.0.3"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
1985
|
+
dependencies = [
|
|
1986
|
+
"idna_adapter",
|
|
1987
|
+
"smallvec",
|
|
1988
|
+
"utf8_iter",
|
|
1989
|
+
]
|
|
1990
|
+
|
|
1991
|
+
[[package]]
|
|
1992
|
+
name = "idna_adapter"
|
|
1993
|
+
version = "1.1.0"
|
|
1994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
+
checksum = "279259b0ac81c89d11c290495fdcfa96ea3643b7df311c138b6fe8ca5237f0f8"
|
|
1996
|
+
dependencies = [
|
|
1997
|
+
"idna_mapping",
|
|
1998
|
+
"unicode-bidi",
|
|
1999
|
+
"unicode-normalization",
|
|
2000
|
+
]
|
|
2001
|
+
|
|
2002
|
+
[[package]]
|
|
2003
|
+
name = "idna_mapping"
|
|
2004
|
+
version = "1.1.0"
|
|
2005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
+
checksum = "11c13906586a4b339310541a274dd927aff6fcbb5b8e3af90634c4b31681c792"
|
|
2007
|
+
dependencies = [
|
|
2008
|
+
"unicode-joining-type",
|
|
2009
|
+
]
|
|
2010
|
+
|
|
2011
|
+
[[package]]
|
|
2012
|
+
name = "indexmap"
|
|
2013
|
+
version = "2.14.0"
|
|
2014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2015
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
2016
|
+
dependencies = [
|
|
2017
|
+
"equivalent",
|
|
2018
|
+
"hashbrown",
|
|
2019
|
+
]
|
|
2020
|
+
|
|
2021
|
+
[[package]]
|
|
2022
|
+
name = "inout"
|
|
2023
|
+
version = "0.1.4"
|
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
2026
|
+
dependencies = [
|
|
2027
|
+
"generic-array 0.14.7",
|
|
2028
|
+
]
|
|
2029
|
+
|
|
2030
|
+
[[package]]
|
|
2031
|
+
name = "inout"
|
|
2032
|
+
version = "0.2.2"
|
|
2033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
+
checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7"
|
|
2035
|
+
dependencies = [
|
|
2036
|
+
"block-padding",
|
|
2037
|
+
"hybrid-array",
|
|
2038
|
+
]
|
|
2039
|
+
|
|
2040
|
+
[[package]]
|
|
2041
|
+
name = "internal-russh-num-bigint"
|
|
2042
|
+
version = "0.5.0"
|
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
+
checksum = "ae8e22120c32fb4d19ec55fba35015f57095cd95a2e3b732e44457f5915b2ee8"
|
|
2045
|
+
dependencies = [
|
|
2046
|
+
"num-integer",
|
|
2047
|
+
"num-traits",
|
|
2048
|
+
"rand 0.10.2",
|
|
2049
|
+
"rand_core 0.10.1",
|
|
2050
|
+
]
|
|
2051
|
+
|
|
2052
|
+
[[package]]
|
|
2053
|
+
name = "ipnet"
|
|
2054
|
+
version = "2.12.0"
|
|
2055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
2057
|
+
|
|
2058
|
+
[[package]]
|
|
2059
|
+
name = "is-terminal"
|
|
2060
|
+
version = "0.4.17"
|
|
2061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2062
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
2063
|
+
dependencies = [
|
|
2064
|
+
"hermit-abi",
|
|
2065
|
+
"libc",
|
|
2066
|
+
"windows-sys 0.52.0",
|
|
2067
|
+
]
|
|
2068
|
+
|
|
2069
|
+
[[package]]
|
|
2070
|
+
name = "is_terminal_polyfill"
|
|
2071
|
+
version = "1.70.2"
|
|
2072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
2074
|
+
|
|
2075
|
+
[[package]]
|
|
2076
|
+
name = "itertools"
|
|
2077
|
+
version = "0.10.5"
|
|
2078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2079
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
2080
|
+
dependencies = [
|
|
2081
|
+
"either",
|
|
2082
|
+
]
|
|
2083
|
+
|
|
2084
|
+
[[package]]
|
|
2085
|
+
name = "itoa"
|
|
2086
|
+
version = "1.0.18"
|
|
2087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
2089
|
+
|
|
2090
|
+
[[package]]
|
|
2091
|
+
name = "jni"
|
|
2092
|
+
version = "0.22.4"
|
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2094
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
2095
|
+
dependencies = [
|
|
2096
|
+
"cfg-if",
|
|
2097
|
+
"combine",
|
|
2098
|
+
"jni-macros",
|
|
2099
|
+
"jni-sys",
|
|
2100
|
+
"log",
|
|
2101
|
+
"simd_cesu8",
|
|
2102
|
+
"thiserror",
|
|
2103
|
+
"walkdir",
|
|
2104
|
+
"windows-link",
|
|
2105
|
+
]
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "jni-macros"
|
|
2109
|
+
version = "0.22.4"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
2112
|
+
dependencies = [
|
|
2113
|
+
"proc-macro2",
|
|
2114
|
+
"quote",
|
|
2115
|
+
"rustc_version",
|
|
2116
|
+
"simd_cesu8",
|
|
2117
|
+
"syn",
|
|
2118
|
+
]
|
|
2119
|
+
|
|
2120
|
+
[[package]]
|
|
2121
|
+
name = "jni-sys"
|
|
2122
|
+
version = "0.4.1"
|
|
2123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2124
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
2125
|
+
dependencies = [
|
|
2126
|
+
"jni-sys-macros",
|
|
2127
|
+
]
|
|
2128
|
+
|
|
2129
|
+
[[package]]
|
|
2130
|
+
name = "jni-sys-macros"
|
|
2131
|
+
version = "0.4.1"
|
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
2134
|
+
dependencies = [
|
|
2135
|
+
"quote",
|
|
2136
|
+
"syn",
|
|
2137
|
+
]
|
|
2138
|
+
|
|
2139
|
+
[[package]]
|
|
2140
|
+
name = "js-sys"
|
|
2141
|
+
version = "0.3.103"
|
|
2142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
2144
|
+
dependencies = [
|
|
2145
|
+
"cfg-if",
|
|
2146
|
+
"futures-util",
|
|
2147
|
+
"wasm-bindgen",
|
|
2148
|
+
]
|
|
2149
|
+
|
|
2150
|
+
[[package]]
|
|
2151
|
+
name = "keccak"
|
|
2152
|
+
version = "0.2.1"
|
|
2153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2154
|
+
checksum = "ffd9697dc4a9a62e2da93389f34400b77a28f0287711263cabb203b3ccb9c0e4"
|
|
2155
|
+
dependencies = [
|
|
2156
|
+
"cfg-if",
|
|
2157
|
+
"cpufeatures 0.3.0",
|
|
2158
|
+
]
|
|
2159
|
+
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "kem"
|
|
2162
|
+
version = "0.3.0"
|
|
2163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
+
checksum = "01737161ba802849cfd486b5bd209d38ba4943494c249a8126005170c7621edd"
|
|
2165
|
+
dependencies = [
|
|
2166
|
+
"crypto-common 0.2.2",
|
|
2167
|
+
"rand_core 0.10.1",
|
|
2168
|
+
]
|
|
2169
|
+
|
|
2170
|
+
[[package]]
|
|
2171
|
+
name = "lazy_static"
|
|
2172
|
+
version = "1.5.0"
|
|
2173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2175
|
+
|
|
2176
|
+
[[package]]
|
|
2177
|
+
name = "libc"
|
|
2178
|
+
version = "0.2.186"
|
|
2179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2180
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
2181
|
+
|
|
2182
|
+
[[package]]
|
|
2183
|
+
name = "linux-raw-sys"
|
|
2184
|
+
version = "0.12.1"
|
|
2185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
2187
|
+
|
|
2188
|
+
[[package]]
|
|
2189
|
+
name = "lock_api"
|
|
2190
|
+
version = "0.4.14"
|
|
2191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
2193
|
+
dependencies = [
|
|
2194
|
+
"scopeguard",
|
|
2195
|
+
]
|
|
2196
|
+
|
|
2197
|
+
[[package]]
|
|
2198
|
+
name = "log"
|
|
2199
|
+
version = "0.4.32"
|
|
2200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
2202
|
+
|
|
2203
|
+
[[package]]
|
|
2204
|
+
name = "lru-slab"
|
|
2205
|
+
version = "0.1.2"
|
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
2208
|
+
|
|
2209
|
+
[[package]]
|
|
2210
|
+
name = "matchers"
|
|
2211
|
+
version = "0.2.0"
|
|
2212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
2214
|
+
dependencies = [
|
|
2215
|
+
"regex-automata",
|
|
2216
|
+
]
|
|
2217
|
+
|
|
2218
|
+
[[package]]
|
|
2219
|
+
name = "md-5"
|
|
2220
|
+
version = "0.10.6"
|
|
2221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2222
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
2223
|
+
dependencies = [
|
|
2224
|
+
"cfg-if",
|
|
2225
|
+
"digest 0.10.7",
|
|
2226
|
+
]
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "md5"
|
|
2230
|
+
version = "0.8.1"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "7ebb8d8732c6a6df3d8f032a82911cfc747e00efb95cc46e8d0acd5b5b88570c"
|
|
2233
|
+
|
|
2234
|
+
[[package]]
|
|
2235
|
+
name = "memchr"
|
|
2236
|
+
version = "2.8.2"
|
|
2237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2238
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
2239
|
+
|
|
2240
|
+
[[package]]
|
|
2241
|
+
name = "miniz_oxide"
|
|
2242
|
+
version = "0.8.9"
|
|
2243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2244
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2245
|
+
dependencies = [
|
|
2246
|
+
"adler2",
|
|
2247
|
+
"simd-adler32",
|
|
2248
|
+
]
|
|
2249
|
+
|
|
2250
|
+
[[package]]
|
|
2251
|
+
name = "mio"
|
|
2252
|
+
version = "1.2.1"
|
|
2253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
2255
|
+
dependencies = [
|
|
2256
|
+
"libc",
|
|
2257
|
+
"wasi",
|
|
2258
|
+
"windows-sys 0.61.2",
|
|
2259
|
+
]
|
|
2260
|
+
|
|
2261
|
+
[[package]]
|
|
2262
|
+
name = "ml-kem"
|
|
2263
|
+
version = "0.3.2"
|
|
2264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2265
|
+
checksum = "5e15f3e5b957493873e396a66914e83e616b6afe335cdef7efe5c6e1216aba66"
|
|
2266
|
+
dependencies = [
|
|
2267
|
+
"hybrid-array",
|
|
2268
|
+
"kem",
|
|
2269
|
+
"module-lattice",
|
|
2270
|
+
"pkcs8",
|
|
2271
|
+
"rand_core 0.10.1",
|
|
2272
|
+
"sha3 0.11.0",
|
|
2273
|
+
]
|
|
2274
|
+
|
|
2275
|
+
[[package]]
|
|
2276
|
+
name = "module-lattice"
|
|
2277
|
+
version = "0.2.3"
|
|
2278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2279
|
+
checksum = "0c61b87c9683ab7cb1c6871d261ad5479b6b10ceb52c4352aaca3b5d35a8febe"
|
|
2280
|
+
dependencies = [
|
|
2281
|
+
"ctutils",
|
|
2282
|
+
"hybrid-array",
|
|
2283
|
+
"num-traits",
|
|
2284
|
+
]
|
|
2285
|
+
|
|
2286
|
+
[[package]]
|
|
2287
|
+
name = "nix"
|
|
2288
|
+
version = "0.31.3"
|
|
2289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2290
|
+
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
2291
|
+
dependencies = [
|
|
2292
|
+
"bitflags",
|
|
2293
|
+
"cfg-if",
|
|
2294
|
+
"cfg_aliases",
|
|
2295
|
+
"libc",
|
|
2296
|
+
]
|
|
2297
|
+
|
|
2298
|
+
[[package]]
|
|
2299
|
+
name = "normalize-line-endings"
|
|
2300
|
+
version = "0.3.0"
|
|
2301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2302
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
2303
|
+
|
|
2304
|
+
[[package]]
|
|
2305
|
+
name = "nu-ansi-term"
|
|
2306
|
+
version = "0.50.3"
|
|
2307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
2309
|
+
dependencies = [
|
|
2310
|
+
"windows-sys 0.61.2",
|
|
2311
|
+
]
|
|
2312
|
+
|
|
2313
|
+
[[package]]
|
|
2314
|
+
name = "num-bigint"
|
|
2315
|
+
version = "0.4.8"
|
|
2316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2317
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
2318
|
+
dependencies = [
|
|
2319
|
+
"num-integer",
|
|
2320
|
+
"num-traits",
|
|
2321
|
+
]
|
|
2322
|
+
|
|
2323
|
+
[[package]]
|
|
2324
|
+
name = "num-conv"
|
|
2325
|
+
version = "0.1.0"
|
|
2326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
2328
|
+
|
|
2329
|
+
[[package]]
|
|
2330
|
+
name = "num-integer"
|
|
2331
|
+
version = "0.1.47"
|
|
2332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2333
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
2334
|
+
dependencies = [
|
|
2335
|
+
"num-traits",
|
|
2336
|
+
]
|
|
2337
|
+
|
|
2338
|
+
[[package]]
|
|
2339
|
+
name = "num-traits"
|
|
2340
|
+
version = "0.2.19"
|
|
2341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2342
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2343
|
+
dependencies = [
|
|
2344
|
+
"autocfg",
|
|
2345
|
+
]
|
|
2346
|
+
|
|
2347
|
+
[[package]]
|
|
2348
|
+
name = "once_cell"
|
|
2349
|
+
version = "1.21.4"
|
|
2350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2351
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
2352
|
+
|
|
2353
|
+
[[package]]
|
|
2354
|
+
name = "once_cell_polyfill"
|
|
2355
|
+
version = "1.70.2"
|
|
2356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2358
|
+
|
|
2359
|
+
[[package]]
|
|
2360
|
+
name = "oorandom"
|
|
2361
|
+
version = "11.1.5"
|
|
2362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
2364
|
+
|
|
2365
|
+
[[package]]
|
|
2366
|
+
name = "opaque-debug"
|
|
2367
|
+
version = "0.3.1"
|
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
2370
|
+
|
|
2371
|
+
[[package]]
|
|
2372
|
+
name = "openssl-probe"
|
|
2373
|
+
version = "0.2.1"
|
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2375
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
2376
|
+
|
|
2377
|
+
[[package]]
|
|
2378
|
+
name = "p256"
|
|
2379
|
+
version = "0.14.0"
|
|
2380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2381
|
+
checksum = "d2c9239b2dbc807adbbe147e8cf72ea7450c3a0aabe62cb8e75ff4ec22e1f72a"
|
|
2382
|
+
dependencies = [
|
|
2383
|
+
"ecdsa",
|
|
2384
|
+
"elliptic-curve",
|
|
2385
|
+
"primefield",
|
|
2386
|
+
"primeorder",
|
|
2387
|
+
"sha2 0.11.0",
|
|
2388
|
+
]
|
|
2389
|
+
|
|
2390
|
+
[[package]]
|
|
2391
|
+
name = "p384"
|
|
2392
|
+
version = "0.14.0"
|
|
2393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2394
|
+
checksum = "d17b851e6b3e378ab4ecb07fa2ed23f4d15f075735f8fec9fa1e7bdce5f8301f"
|
|
2395
|
+
dependencies = [
|
|
2396
|
+
"ecdsa",
|
|
2397
|
+
"elliptic-curve",
|
|
2398
|
+
"fiat-crypto",
|
|
2399
|
+
"primefield",
|
|
2400
|
+
"primeorder",
|
|
2401
|
+
"sha2 0.11.0",
|
|
2402
|
+
]
|
|
2403
|
+
|
|
2404
|
+
[[package]]
|
|
2405
|
+
name = "p521"
|
|
2406
|
+
version = "0.14.0"
|
|
2407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2408
|
+
checksum = "4ad64cc32c2dc466317c12ee5853e61f159f9eab1fe7efade0395dc2e7b43449"
|
|
2409
|
+
dependencies = [
|
|
2410
|
+
"base16ct",
|
|
2411
|
+
"ecdsa",
|
|
2412
|
+
"elliptic-curve",
|
|
2413
|
+
"primefield",
|
|
2414
|
+
"primeorder",
|
|
2415
|
+
"sha2 0.11.0",
|
|
2416
|
+
]
|
|
2417
|
+
|
|
2418
|
+
[[package]]
|
|
2419
|
+
name = "pageant"
|
|
2420
|
+
version = "0.2.1"
|
|
2421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2422
|
+
checksum = "4f3a5ae18f65a85c67a77d18d42d3606c07948e3c17c1e5f74852b26589e88a5"
|
|
2423
|
+
dependencies = [
|
|
2424
|
+
"base16ct",
|
|
2425
|
+
"byteorder",
|
|
2426
|
+
"bytes",
|
|
2427
|
+
"delegate",
|
|
2428
|
+
"futures",
|
|
2429
|
+
"log",
|
|
2430
|
+
"rand 0.10.2",
|
|
2431
|
+
"sha2 0.11.0",
|
|
2432
|
+
"thiserror",
|
|
2433
|
+
"tokio",
|
|
2434
|
+
"windows",
|
|
2435
|
+
"windows-strings",
|
|
2436
|
+
]
|
|
2437
|
+
|
|
2438
|
+
[[package]]
|
|
2439
|
+
name = "parking_lot"
|
|
2440
|
+
version = "0.12.5"
|
|
2441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2443
|
+
dependencies = [
|
|
2444
|
+
"lock_api",
|
|
2445
|
+
"parking_lot_core",
|
|
2446
|
+
]
|
|
2447
|
+
|
|
2448
|
+
[[package]]
|
|
2449
|
+
name = "parking_lot_core"
|
|
2450
|
+
version = "0.9.12"
|
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2453
|
+
dependencies = [
|
|
2454
|
+
"cfg-if",
|
|
2455
|
+
"libc",
|
|
2456
|
+
"redox_syscall",
|
|
2457
|
+
"smallvec",
|
|
2458
|
+
"windows-link",
|
|
2459
|
+
]
|
|
2460
|
+
|
|
2461
|
+
[[package]]
|
|
2462
|
+
name = "password-hash"
|
|
2463
|
+
version = "0.6.1"
|
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
+
checksum = "aab41826031698d6ffcd9cff78ef56ef998e39dc7e5067cdfebe373842d4723b"
|
|
2466
|
+
dependencies = [
|
|
2467
|
+
"phc",
|
|
2468
|
+
]
|
|
2469
|
+
|
|
2470
|
+
[[package]]
|
|
2471
|
+
name = "pbkdf2"
|
|
2472
|
+
version = "0.13.0"
|
|
2473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2474
|
+
checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
|
|
2475
|
+
dependencies = [
|
|
2476
|
+
"digest 0.11.3",
|
|
2477
|
+
"hmac 0.13.0",
|
|
2478
|
+
]
|
|
2479
|
+
|
|
2480
|
+
[[package]]
|
|
2481
|
+
name = "pem"
|
|
2482
|
+
version = "3.0.6"
|
|
2483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2484
|
+
checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
|
|
2485
|
+
dependencies = [
|
|
2486
|
+
"base64",
|
|
2487
|
+
"serde_core",
|
|
2488
|
+
]
|
|
2489
|
+
|
|
2490
|
+
[[package]]
|
|
2491
|
+
name = "pem-rfc7468"
|
|
2492
|
+
version = "1.0.0"
|
|
2493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2494
|
+
checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
|
|
2495
|
+
dependencies = [
|
|
2496
|
+
"base64ct",
|
|
2497
|
+
]
|
|
2498
|
+
|
|
2499
|
+
[[package]]
|
|
2500
|
+
name = "percent-encoding"
|
|
2501
|
+
version = "2.3.2"
|
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2504
|
+
|
|
2505
|
+
[[package]]
|
|
2506
|
+
name = "phc"
|
|
2507
|
+
version = "0.6.1"
|
|
2508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2509
|
+
checksum = "44dc769b75f93afdddd8c7fa12d685292ddeff1e66f7f0f3a234cf1818afe892"
|
|
2510
|
+
dependencies = [
|
|
2511
|
+
"base64ct",
|
|
2512
|
+
"ctutils",
|
|
2513
|
+
]
|
|
2514
|
+
|
|
2515
|
+
[[package]]
|
|
2516
|
+
name = "pin-project-lite"
|
|
2517
|
+
version = "0.2.17"
|
|
2518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2519
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2520
|
+
|
|
2521
|
+
[[package]]
|
|
2522
|
+
name = "pkcs1"
|
|
2523
|
+
version = "0.8.0-rc.4"
|
|
2524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2525
|
+
checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
|
|
2526
|
+
dependencies = [
|
|
2527
|
+
"der",
|
|
2528
|
+
"spki",
|
|
2529
|
+
]
|
|
2530
|
+
|
|
2531
|
+
[[package]]
|
|
2532
|
+
name = "pkcs5"
|
|
2533
|
+
version = "0.8.1"
|
|
2534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2535
|
+
checksum = "63d440a804ec8d6fafbb6b84471e013286658d373248927692ab3366686220ca"
|
|
2536
|
+
dependencies = [
|
|
2537
|
+
"aes 0.9.2",
|
|
2538
|
+
"aes-gcm 0.11.0",
|
|
2539
|
+
"cbc",
|
|
2540
|
+
"der",
|
|
2541
|
+
"pbkdf2",
|
|
2542
|
+
"rand_core 0.10.1",
|
|
2543
|
+
"scrypt",
|
|
2544
|
+
"sha2 0.11.0",
|
|
2545
|
+
"spki",
|
|
2546
|
+
]
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "pkcs8"
|
|
2550
|
+
version = "0.11.0"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"
|
|
2553
|
+
dependencies = [
|
|
2554
|
+
"der",
|
|
2555
|
+
"pkcs5",
|
|
2556
|
+
"rand_core 0.10.1",
|
|
2557
|
+
"spki",
|
|
2558
|
+
]
|
|
2559
|
+
|
|
2560
|
+
[[package]]
|
|
2561
|
+
name = "plotters"
|
|
2562
|
+
version = "0.3.7"
|
|
2563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2564
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
2565
|
+
dependencies = [
|
|
2566
|
+
"num-traits",
|
|
2567
|
+
"plotters-backend",
|
|
2568
|
+
"plotters-svg",
|
|
2569
|
+
"wasm-bindgen",
|
|
2570
|
+
"web-sys",
|
|
2571
|
+
]
|
|
2572
|
+
|
|
2573
|
+
[[package]]
|
|
2574
|
+
name = "plotters-backend"
|
|
2575
|
+
version = "0.3.7"
|
|
2576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2577
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
2578
|
+
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "plotters-svg"
|
|
2581
|
+
version = "0.3.7"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
2584
|
+
dependencies = [
|
|
2585
|
+
"plotters-backend",
|
|
2586
|
+
]
|
|
2587
|
+
|
|
2588
|
+
[[package]]
|
|
2589
|
+
name = "poly1305"
|
|
2590
|
+
version = "0.8.0"
|
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
+
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
|
|
2593
|
+
dependencies = [
|
|
2594
|
+
"cpufeatures 0.2.17",
|
|
2595
|
+
"opaque-debug",
|
|
2596
|
+
"universal-hash 0.5.1",
|
|
2597
|
+
]
|
|
2598
|
+
|
|
2599
|
+
[[package]]
|
|
2600
|
+
name = "poly1305"
|
|
2601
|
+
version = "0.9.1"
|
|
2602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
+
checksum = "6e2d0073b297041425c7c3df6eb4792d598a15323fe63346852b092eca02904c"
|
|
2604
|
+
dependencies = [
|
|
2605
|
+
"cpufeatures 0.3.0",
|
|
2606
|
+
"universal-hash 0.6.1",
|
|
2607
|
+
"zeroize",
|
|
2608
|
+
]
|
|
2609
|
+
|
|
2610
|
+
[[package]]
|
|
2611
|
+
name = "polyval"
|
|
2612
|
+
version = "0.6.2"
|
|
2613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2614
|
+
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
|
|
2615
|
+
dependencies = [
|
|
2616
|
+
"cfg-if",
|
|
2617
|
+
"cpufeatures 0.2.17",
|
|
2618
|
+
"opaque-debug",
|
|
2619
|
+
"universal-hash 0.5.1",
|
|
2620
|
+
]
|
|
2621
|
+
|
|
2622
|
+
[[package]]
|
|
2623
|
+
name = "polyval"
|
|
2624
|
+
version = "0.7.3"
|
|
2625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2626
|
+
checksum = "f0fa31d631f2b2cb2a544d0aa321ce847a94764d701ca2becc411138b93d49cd"
|
|
2627
|
+
dependencies = [
|
|
2628
|
+
"cpubits",
|
|
2629
|
+
"cpufeatures 0.3.0",
|
|
2630
|
+
"universal-hash 0.6.1",
|
|
2631
|
+
]
|
|
2632
|
+
|
|
2633
|
+
[[package]]
|
|
2634
|
+
name = "portable-atomic"
|
|
2635
|
+
version = "1.13.1"
|
|
2636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2637
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
2638
|
+
|
|
2639
|
+
[[package]]
|
|
2640
|
+
name = "powerfmt"
|
|
2641
|
+
version = "0.2.0"
|
|
2642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2643
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2644
|
+
|
|
2645
|
+
[[package]]
|
|
2646
|
+
name = "ppv-lite86"
|
|
2647
|
+
version = "0.2.21"
|
|
2648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2649
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2650
|
+
dependencies = [
|
|
2651
|
+
"zerocopy",
|
|
2652
|
+
]
|
|
2653
|
+
|
|
2654
|
+
[[package]]
|
|
2655
|
+
name = "predicates"
|
|
2656
|
+
version = "3.1.4"
|
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
2659
|
+
dependencies = [
|
|
2660
|
+
"anstyle",
|
|
2661
|
+
"difflib",
|
|
2662
|
+
"float-cmp",
|
|
2663
|
+
"normalize-line-endings",
|
|
2664
|
+
"predicates-core",
|
|
2665
|
+
"regex",
|
|
2666
|
+
]
|
|
2667
|
+
|
|
2668
|
+
[[package]]
|
|
2669
|
+
name = "predicates-core"
|
|
2670
|
+
version = "1.0.10"
|
|
2671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2672
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
2673
|
+
|
|
2674
|
+
[[package]]
|
|
2675
|
+
name = "predicates-tree"
|
|
2676
|
+
version = "1.0.13"
|
|
2677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
2679
|
+
dependencies = [
|
|
2680
|
+
"predicates-core",
|
|
2681
|
+
"termtree",
|
|
2682
|
+
]
|
|
2683
|
+
|
|
2684
|
+
[[package]]
|
|
2685
|
+
name = "primefield"
|
|
2686
|
+
version = "0.14.0"
|
|
2687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
+
checksum = "c555a6e4eb7d4e158fcb028c835c3b8642206ddc279b5c6b202ef9a8bdb592f4"
|
|
2689
|
+
dependencies = [
|
|
2690
|
+
"crypto-bigint",
|
|
2691
|
+
"crypto-common 0.2.2",
|
|
2692
|
+
"ff",
|
|
2693
|
+
"rand_core 0.10.1",
|
|
2694
|
+
"subtle",
|
|
2695
|
+
"zeroize",
|
|
2696
|
+
]
|
|
2697
|
+
|
|
2698
|
+
[[package]]
|
|
2699
|
+
name = "primeorder"
|
|
2700
|
+
version = "0.14.0"
|
|
2701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2702
|
+
checksum = "5c9f42978c78a00e3d68f69fc03e57a234debae69da4020a4fb588fcdcd07b06"
|
|
2703
|
+
dependencies = [
|
|
2704
|
+
"elliptic-curve",
|
|
2705
|
+
"once_cell",
|
|
2706
|
+
"primefield",
|
|
2707
|
+
"serdect",
|
|
2708
|
+
"wnaf",
|
|
2709
|
+
]
|
|
2710
|
+
|
|
2711
|
+
[[package]]
|
|
2712
|
+
name = "proc-macro2"
|
|
2713
|
+
version = "1.0.106"
|
|
2714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2715
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
2716
|
+
dependencies = [
|
|
2717
|
+
"unicode-ident",
|
|
2718
|
+
]
|
|
2719
|
+
|
|
2720
|
+
[[package]]
|
|
2721
|
+
name = "prometheus-client"
|
|
2722
|
+
version = "0.22.3"
|
|
2723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2724
|
+
checksum = "504ee9ff529add891127c4827eb481bd69dc0ebc72e9a682e187db4caa60c3ca"
|
|
2725
|
+
dependencies = [
|
|
2726
|
+
"dtoa",
|
|
2727
|
+
"itoa",
|
|
2728
|
+
"parking_lot",
|
|
2729
|
+
"prometheus-client-derive-encode",
|
|
2730
|
+
]
|
|
2731
|
+
|
|
2732
|
+
[[package]]
|
|
2733
|
+
name = "prometheus-client-derive-encode"
|
|
2734
|
+
version = "0.4.2"
|
|
2735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
+
checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8"
|
|
2737
|
+
dependencies = [
|
|
2738
|
+
"proc-macro2",
|
|
2739
|
+
"quote",
|
|
2740
|
+
"syn",
|
|
2741
|
+
]
|
|
2742
|
+
|
|
2743
|
+
[[package]]
|
|
2744
|
+
name = "proptest"
|
|
2745
|
+
version = "1.11.0"
|
|
2746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2747
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
2748
|
+
dependencies = [
|
|
2749
|
+
"bit-set",
|
|
2750
|
+
"bit-vec",
|
|
2751
|
+
"bitflags",
|
|
2752
|
+
"num-traits",
|
|
2753
|
+
"rand 0.9.4",
|
|
2754
|
+
"rand_chacha 0.9.0",
|
|
2755
|
+
"rand_xorshift",
|
|
2756
|
+
"regex-syntax",
|
|
2757
|
+
"rusty-fork",
|
|
2758
|
+
"tempfile",
|
|
2759
|
+
"unarray",
|
|
2760
|
+
]
|
|
2761
|
+
|
|
2762
|
+
[[package]]
|
|
2763
|
+
name = "pyo3"
|
|
2764
|
+
version = "0.29.0"
|
|
2765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2766
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
2767
|
+
dependencies = [
|
|
2768
|
+
"libc",
|
|
2769
|
+
"once_cell",
|
|
2770
|
+
"portable-atomic",
|
|
2771
|
+
"pyo3-build-config",
|
|
2772
|
+
"pyo3-ffi",
|
|
2773
|
+
"pyo3-macros",
|
|
2774
|
+
]
|
|
2775
|
+
|
|
2776
|
+
[[package]]
|
|
2777
|
+
name = "pyo3-build-config"
|
|
2778
|
+
version = "0.29.0"
|
|
2779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2780
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
2781
|
+
dependencies = [
|
|
2782
|
+
"target-lexicon",
|
|
2783
|
+
]
|
|
2784
|
+
|
|
2785
|
+
[[package]]
|
|
2786
|
+
name = "pyo3-ffi"
|
|
2787
|
+
version = "0.29.0"
|
|
2788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2789
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
2790
|
+
dependencies = [
|
|
2791
|
+
"libc",
|
|
2792
|
+
"pyo3-build-config",
|
|
2793
|
+
]
|
|
2794
|
+
|
|
2795
|
+
[[package]]
|
|
2796
|
+
name = "pyo3-macros"
|
|
2797
|
+
version = "0.29.0"
|
|
2798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
2800
|
+
dependencies = [
|
|
2801
|
+
"proc-macro2",
|
|
2802
|
+
"pyo3-macros-backend",
|
|
2803
|
+
"quote",
|
|
2804
|
+
"syn",
|
|
2805
|
+
]
|
|
2806
|
+
|
|
2807
|
+
[[package]]
|
|
2808
|
+
name = "pyo3-macros-backend"
|
|
2809
|
+
version = "0.29.0"
|
|
2810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2811
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
2812
|
+
dependencies = [
|
|
2813
|
+
"heck",
|
|
2814
|
+
"proc-macro2",
|
|
2815
|
+
"quote",
|
|
2816
|
+
"syn",
|
|
2817
|
+
]
|
|
2818
|
+
|
|
2819
|
+
[[package]]
|
|
2820
|
+
name = "quick-error"
|
|
2821
|
+
version = "1.2.3"
|
|
2822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2823
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
2824
|
+
|
|
2825
|
+
[[package]]
|
|
2826
|
+
name = "quinn"
|
|
2827
|
+
version = "0.11.11"
|
|
2828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2829
|
+
checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
|
|
2830
|
+
dependencies = [
|
|
2831
|
+
"bytes",
|
|
2832
|
+
"cfg_aliases",
|
|
2833
|
+
"futures-io",
|
|
2834
|
+
"pin-project-lite",
|
|
2835
|
+
"quinn-proto",
|
|
2836
|
+
"quinn-udp",
|
|
2837
|
+
"rustc-hash",
|
|
2838
|
+
"rustls",
|
|
2839
|
+
"socket2 0.5.10",
|
|
2840
|
+
"thiserror",
|
|
2841
|
+
"tokio",
|
|
2842
|
+
"tracing",
|
|
2843
|
+
"web-time",
|
|
2844
|
+
]
|
|
2845
|
+
|
|
2846
|
+
[[package]]
|
|
2847
|
+
name = "quinn-proto"
|
|
2848
|
+
version = "0.11.17"
|
|
2849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2850
|
+
checksum = "04759210543be93709136e28212294a659ef5001836ff4eab4d663e4529bba83"
|
|
2851
|
+
dependencies = [
|
|
2852
|
+
"bytes",
|
|
2853
|
+
"getrandom 0.4.3",
|
|
2854
|
+
"lru-slab",
|
|
2855
|
+
"rand 0.10.2",
|
|
2856
|
+
"rand_pcg",
|
|
2857
|
+
"ring",
|
|
2858
|
+
"rustc-hash",
|
|
2859
|
+
"rustls",
|
|
2860
|
+
"rustls-pki-types",
|
|
2861
|
+
"rustls-platform-verifier",
|
|
2862
|
+
"slab",
|
|
2863
|
+
"thiserror",
|
|
2864
|
+
"tinyvec",
|
|
2865
|
+
"tracing",
|
|
2866
|
+
"web-time",
|
|
2867
|
+
]
|
|
2868
|
+
|
|
2869
|
+
[[package]]
|
|
2870
|
+
name = "quinn-udp"
|
|
2871
|
+
version = "0.5.15"
|
|
2872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2873
|
+
checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
|
|
2874
|
+
dependencies = [
|
|
2875
|
+
"cfg_aliases",
|
|
2876
|
+
"libc",
|
|
2877
|
+
"once_cell",
|
|
2878
|
+
"socket2 0.5.10",
|
|
2879
|
+
"tracing",
|
|
2880
|
+
"windows-sys 0.52.0",
|
|
2881
|
+
]
|
|
2882
|
+
|
|
2883
|
+
[[package]]
|
|
2884
|
+
name = "quote"
|
|
2885
|
+
version = "1.0.45"
|
|
2886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2887
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
2888
|
+
dependencies = [
|
|
2889
|
+
"proc-macro2",
|
|
2890
|
+
]
|
|
2891
|
+
|
|
2892
|
+
[[package]]
|
|
2893
|
+
name = "r-efi"
|
|
2894
|
+
version = "5.3.0"
|
|
2895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2896
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2897
|
+
|
|
2898
|
+
[[package]]
|
|
2899
|
+
name = "r-efi"
|
|
2900
|
+
version = "6.0.0"
|
|
2901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2902
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2903
|
+
|
|
2904
|
+
[[package]]
|
|
2905
|
+
name = "rand"
|
|
2906
|
+
version = "0.8.6"
|
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2909
|
+
dependencies = [
|
|
2910
|
+
"libc",
|
|
2911
|
+
"rand_chacha 0.3.1",
|
|
2912
|
+
"rand_core 0.6.4",
|
|
2913
|
+
]
|
|
2914
|
+
|
|
2915
|
+
[[package]]
|
|
2916
|
+
name = "rand"
|
|
2917
|
+
version = "0.9.4"
|
|
2918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2920
|
+
dependencies = [
|
|
2921
|
+
"rand_chacha 0.9.0",
|
|
2922
|
+
"rand_core 0.9.5",
|
|
2923
|
+
]
|
|
2924
|
+
|
|
2925
|
+
[[package]]
|
|
2926
|
+
name = "rand"
|
|
2927
|
+
version = "0.10.2"
|
|
2928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2929
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
2930
|
+
dependencies = [
|
|
2931
|
+
"chacha20 0.10.2",
|
|
2932
|
+
"getrandom 0.4.3",
|
|
2933
|
+
"rand_core 0.10.1",
|
|
2934
|
+
]
|
|
2935
|
+
|
|
2936
|
+
[[package]]
|
|
2937
|
+
name = "rand_chacha"
|
|
2938
|
+
version = "0.3.1"
|
|
2939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2940
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2941
|
+
dependencies = [
|
|
2942
|
+
"ppv-lite86",
|
|
2943
|
+
"rand_core 0.6.4",
|
|
2944
|
+
]
|
|
2945
|
+
|
|
2946
|
+
[[package]]
|
|
2947
|
+
name = "rand_chacha"
|
|
2948
|
+
version = "0.9.0"
|
|
2949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2951
|
+
dependencies = [
|
|
2952
|
+
"ppv-lite86",
|
|
2953
|
+
"rand_core 0.9.5",
|
|
2954
|
+
]
|
|
2955
|
+
|
|
2956
|
+
[[package]]
|
|
2957
|
+
name = "rand_core"
|
|
2958
|
+
version = "0.6.4"
|
|
2959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2961
|
+
dependencies = [
|
|
2962
|
+
"getrandom 0.2.17",
|
|
2963
|
+
]
|
|
2964
|
+
|
|
2965
|
+
[[package]]
|
|
2966
|
+
name = "rand_core"
|
|
2967
|
+
version = "0.9.5"
|
|
2968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2969
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2970
|
+
dependencies = [
|
|
2971
|
+
"getrandom 0.3.4",
|
|
2972
|
+
]
|
|
2973
|
+
|
|
2974
|
+
[[package]]
|
|
2975
|
+
name = "rand_core"
|
|
2976
|
+
version = "0.10.1"
|
|
2977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2978
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
2979
|
+
|
|
2980
|
+
[[package]]
|
|
2981
|
+
name = "rand_pcg"
|
|
2982
|
+
version = "0.10.2"
|
|
2983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
+
checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
|
|
2985
|
+
dependencies = [
|
|
2986
|
+
"rand_core 0.10.1",
|
|
2987
|
+
]
|
|
2988
|
+
|
|
2989
|
+
[[package]]
|
|
2990
|
+
name = "rand_xorshift"
|
|
2991
|
+
version = "0.4.0"
|
|
2992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2993
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
2994
|
+
dependencies = [
|
|
2995
|
+
"rand_core 0.9.5",
|
|
2996
|
+
]
|
|
2997
|
+
|
|
2998
|
+
[[package]]
|
|
2999
|
+
name = "rayon"
|
|
3000
|
+
version = "1.12.0"
|
|
3001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3002
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
3003
|
+
dependencies = [
|
|
3004
|
+
"either",
|
|
3005
|
+
"rayon-core",
|
|
3006
|
+
]
|
|
3007
|
+
|
|
3008
|
+
[[package]]
|
|
3009
|
+
name = "rayon-core"
|
|
3010
|
+
version = "1.13.0"
|
|
3011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3012
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
3013
|
+
dependencies = [
|
|
3014
|
+
"crossbeam-deque",
|
|
3015
|
+
"crossbeam-utils",
|
|
3016
|
+
]
|
|
3017
|
+
|
|
3018
|
+
[[package]]
|
|
3019
|
+
name = "rcgen"
|
|
3020
|
+
version = "0.13.2"
|
|
3021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3022
|
+
checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2"
|
|
3023
|
+
dependencies = [
|
|
3024
|
+
"pem",
|
|
3025
|
+
"ring",
|
|
3026
|
+
"rustls-pki-types",
|
|
3027
|
+
"time",
|
|
3028
|
+
"yasna",
|
|
3029
|
+
]
|
|
3030
|
+
|
|
3031
|
+
[[package]]
|
|
3032
|
+
name = "redox_syscall"
|
|
3033
|
+
version = "0.5.18"
|
|
3034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3035
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
3036
|
+
dependencies = [
|
|
3037
|
+
"bitflags",
|
|
3038
|
+
]
|
|
3039
|
+
|
|
3040
|
+
[[package]]
|
|
3041
|
+
name = "regex"
|
|
3042
|
+
version = "1.12.4"
|
|
3043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3044
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
3045
|
+
dependencies = [
|
|
3046
|
+
"aho-corasick",
|
|
3047
|
+
"memchr",
|
|
3048
|
+
"regex-automata",
|
|
3049
|
+
"regex-syntax",
|
|
3050
|
+
]
|
|
3051
|
+
|
|
3052
|
+
[[package]]
|
|
3053
|
+
name = "regex-automata"
|
|
3054
|
+
version = "0.4.14"
|
|
3055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3056
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
3057
|
+
dependencies = [
|
|
3058
|
+
"aho-corasick",
|
|
3059
|
+
"memchr",
|
|
3060
|
+
"regex-syntax",
|
|
3061
|
+
]
|
|
3062
|
+
|
|
3063
|
+
[[package]]
|
|
3064
|
+
name = "regex-syntax"
|
|
3065
|
+
version = "0.8.11"
|
|
3066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3067
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
3068
|
+
|
|
3069
|
+
[[package]]
|
|
3070
|
+
name = "rfc6979"
|
|
3071
|
+
version = "0.6.0"
|
|
3072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3073
|
+
checksum = "b4a459cddafb3fe76b31fd8f1108007566c40301feb64dc7b54656eb7388172b"
|
|
3074
|
+
dependencies = [
|
|
3075
|
+
"crypto-bigint",
|
|
3076
|
+
"hmac 0.13.0",
|
|
3077
|
+
]
|
|
3078
|
+
|
|
3079
|
+
[[package]]
|
|
3080
|
+
name = "ring"
|
|
3081
|
+
version = "0.17.14"
|
|
3082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3083
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
3084
|
+
dependencies = [
|
|
3085
|
+
"cc",
|
|
3086
|
+
"cfg-if",
|
|
3087
|
+
"getrandom 0.2.17",
|
|
3088
|
+
"libc",
|
|
3089
|
+
"untrusted",
|
|
3090
|
+
"windows-sys 0.52.0",
|
|
3091
|
+
]
|
|
3092
|
+
|
|
3093
|
+
[[package]]
|
|
3094
|
+
name = "rsa"
|
|
3095
|
+
version = "0.10.0-rc.18"
|
|
3096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3097
|
+
checksum = "30b2aa4ba0d89f73d1e332df05be0eeab8840351c36ca5654341dfdb57bb3caf"
|
|
3098
|
+
dependencies = [
|
|
3099
|
+
"const-oid",
|
|
3100
|
+
"crypto-bigint",
|
|
3101
|
+
"crypto-primes",
|
|
3102
|
+
"digest 0.11.3",
|
|
3103
|
+
"pkcs1",
|
|
3104
|
+
"pkcs8",
|
|
3105
|
+
"rand_core 0.10.1",
|
|
3106
|
+
"sha2 0.11.0",
|
|
3107
|
+
"signature",
|
|
3108
|
+
"spki",
|
|
3109
|
+
"zeroize",
|
|
3110
|
+
]
|
|
3111
|
+
|
|
3112
|
+
[[package]]
|
|
3113
|
+
name = "russh"
|
|
3114
|
+
version = "0.62.6"
|
|
3115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
+
checksum = "b41043523e0edcbd4e31d00903e26f12994f63b21bae9904f7405c1ed92752a5"
|
|
3117
|
+
dependencies = [
|
|
3118
|
+
"aes 0.9.2",
|
|
3119
|
+
"bitflags",
|
|
3120
|
+
"block-padding",
|
|
3121
|
+
"byteorder",
|
|
3122
|
+
"bytes",
|
|
3123
|
+
"cbc",
|
|
3124
|
+
"cipher 0.5.2",
|
|
3125
|
+
"crypto-bigint",
|
|
3126
|
+
"ctr 0.10.1",
|
|
3127
|
+
"curve25519-dalek",
|
|
3128
|
+
"data-encoding",
|
|
3129
|
+
"delegate",
|
|
3130
|
+
"der",
|
|
3131
|
+
"digest 0.11.3",
|
|
3132
|
+
"ecdsa",
|
|
3133
|
+
"ed25519-dalek",
|
|
3134
|
+
"elliptic-curve",
|
|
3135
|
+
"enum_dispatch",
|
|
3136
|
+
"flate2",
|
|
3137
|
+
"futures",
|
|
3138
|
+
"generic-array 1.4.5",
|
|
3139
|
+
"getrandom 0.4.3",
|
|
3140
|
+
"ghash 0.6.0",
|
|
3141
|
+
"hex-literal",
|
|
3142
|
+
"hmac 0.13.0",
|
|
3143
|
+
"inout 0.2.2",
|
|
3144
|
+
"internal-russh-num-bigint",
|
|
3145
|
+
"keccak",
|
|
3146
|
+
"log",
|
|
3147
|
+
"md5",
|
|
3148
|
+
"ml-kem",
|
|
3149
|
+
"module-lattice",
|
|
3150
|
+
"num-bigint",
|
|
3151
|
+
"p256",
|
|
3152
|
+
"p384",
|
|
3153
|
+
"p521",
|
|
3154
|
+
"pageant",
|
|
3155
|
+
"pbkdf2",
|
|
3156
|
+
"pkcs1",
|
|
3157
|
+
"pkcs5",
|
|
3158
|
+
"pkcs8",
|
|
3159
|
+
"polyval 0.7.3",
|
|
3160
|
+
"rand 0.10.2",
|
|
3161
|
+
"rand_core 0.10.1",
|
|
3162
|
+
"ring",
|
|
3163
|
+
"rsa",
|
|
3164
|
+
"russh-cryptovec",
|
|
3165
|
+
"russh-util",
|
|
3166
|
+
"salsa20",
|
|
3167
|
+
"scrypt",
|
|
3168
|
+
"sec1",
|
|
3169
|
+
"sha1 0.11.0",
|
|
3170
|
+
"sha2 0.11.0",
|
|
3171
|
+
"sha3 0.12.0",
|
|
3172
|
+
"signature",
|
|
3173
|
+
"spki",
|
|
3174
|
+
"ssh-encoding",
|
|
3175
|
+
"ssh-key",
|
|
3176
|
+
"subtle",
|
|
3177
|
+
"thiserror",
|
|
3178
|
+
"tokio",
|
|
3179
|
+
"typenum",
|
|
3180
|
+
"universal-hash 0.6.1",
|
|
3181
|
+
"zeroize",
|
|
3182
|
+
]
|
|
3183
|
+
|
|
3184
|
+
[[package]]
|
|
3185
|
+
name = "russh-cryptovec"
|
|
3186
|
+
version = "0.62.0"
|
|
3187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3188
|
+
checksum = "3aec6cb630dbe85d72ffd7bcd95f07e1bd69f9f270ee8adfa1afe443a6331438"
|
|
3189
|
+
dependencies = [
|
|
3190
|
+
"log",
|
|
3191
|
+
"nix",
|
|
3192
|
+
"ssh-encoding",
|
|
3193
|
+
"windows-sys 0.61.2",
|
|
3194
|
+
]
|
|
3195
|
+
|
|
3196
|
+
[[package]]
|
|
3197
|
+
name = "russh-util"
|
|
3198
|
+
version = "0.52.0"
|
|
3199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3200
|
+
checksum = "668424a5dde0bcb45b55ba7de8476b93831b4aa2fa6947e145f3b053e22c60b6"
|
|
3201
|
+
dependencies = [
|
|
3202
|
+
"chrono",
|
|
3203
|
+
"tokio",
|
|
3204
|
+
"wasm-bindgen",
|
|
3205
|
+
"wasm-bindgen-futures",
|
|
3206
|
+
]
|
|
3207
|
+
|
|
3208
|
+
[[package]]
|
|
3209
|
+
name = "rustc-hash"
|
|
3210
|
+
version = "2.1.3"
|
|
3211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3212
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
3213
|
+
|
|
3214
|
+
[[package]]
|
|
3215
|
+
name = "rustc_version"
|
|
3216
|
+
version = "0.4.1"
|
|
3217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3218
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3219
|
+
dependencies = [
|
|
3220
|
+
"semver",
|
|
3221
|
+
]
|
|
3222
|
+
|
|
3223
|
+
[[package]]
|
|
3224
|
+
name = "rustix"
|
|
3225
|
+
version = "1.1.4"
|
|
3226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3227
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
3228
|
+
dependencies = [
|
|
3229
|
+
"bitflags",
|
|
3230
|
+
"errno",
|
|
3231
|
+
"libc",
|
|
3232
|
+
"linux-raw-sys",
|
|
3233
|
+
"windows-sys 0.52.0",
|
|
3234
|
+
]
|
|
3235
|
+
|
|
3236
|
+
[[package]]
|
|
3237
|
+
name = "rustls"
|
|
3238
|
+
version = "0.23.41"
|
|
3239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3240
|
+
checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
|
|
3241
|
+
dependencies = [
|
|
3242
|
+
"once_cell",
|
|
3243
|
+
"ring",
|
|
3244
|
+
"rustls-pki-types",
|
|
3245
|
+
"rustls-webpki",
|
|
3246
|
+
"subtle",
|
|
3247
|
+
"zeroize",
|
|
3248
|
+
]
|
|
3249
|
+
|
|
3250
|
+
[[package]]
|
|
3251
|
+
name = "rustls-native-certs"
|
|
3252
|
+
version = "0.8.4"
|
|
3253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3254
|
+
checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
|
|
3255
|
+
dependencies = [
|
|
3256
|
+
"openssl-probe",
|
|
3257
|
+
"rustls-pki-types",
|
|
3258
|
+
"schannel",
|
|
3259
|
+
"security-framework",
|
|
3260
|
+
]
|
|
3261
|
+
|
|
3262
|
+
[[package]]
|
|
3263
|
+
name = "rustls-pki-types"
|
|
3264
|
+
version = "1.14.1"
|
|
3265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3266
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
3267
|
+
dependencies = [
|
|
3268
|
+
"web-time",
|
|
3269
|
+
"zeroize",
|
|
3270
|
+
]
|
|
3271
|
+
|
|
3272
|
+
[[package]]
|
|
3273
|
+
name = "rustls-platform-verifier"
|
|
3274
|
+
version = "0.7.0"
|
|
3275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3276
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
3277
|
+
dependencies = [
|
|
3278
|
+
"core-foundation",
|
|
3279
|
+
"core-foundation-sys",
|
|
3280
|
+
"jni",
|
|
3281
|
+
"log",
|
|
3282
|
+
"once_cell",
|
|
3283
|
+
"rustls",
|
|
3284
|
+
"rustls-native-certs",
|
|
3285
|
+
"rustls-platform-verifier-android",
|
|
3286
|
+
"rustls-webpki",
|
|
3287
|
+
"security-framework",
|
|
3288
|
+
"security-framework-sys",
|
|
3289
|
+
"webpki-root-certs",
|
|
3290
|
+
"windows-sys 0.52.0",
|
|
3291
|
+
]
|
|
3292
|
+
|
|
3293
|
+
[[package]]
|
|
3294
|
+
name = "rustls-platform-verifier-android"
|
|
3295
|
+
version = "0.1.1"
|
|
3296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3297
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
3298
|
+
|
|
3299
|
+
[[package]]
|
|
3300
|
+
name = "rustls-webpki"
|
|
3301
|
+
version = "0.103.13"
|
|
3302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
3304
|
+
dependencies = [
|
|
3305
|
+
"ring",
|
|
3306
|
+
"rustls-pki-types",
|
|
3307
|
+
"untrusted",
|
|
3308
|
+
]
|
|
3309
|
+
|
|
3310
|
+
[[package]]
|
|
3311
|
+
name = "rustversion"
|
|
3312
|
+
version = "1.0.22"
|
|
3313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3314
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
3315
|
+
|
|
3316
|
+
[[package]]
|
|
3317
|
+
name = "rusty-fork"
|
|
3318
|
+
version = "0.3.1"
|
|
3319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3320
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
3321
|
+
dependencies = [
|
|
3322
|
+
"fnv",
|
|
3323
|
+
"quick-error",
|
|
3324
|
+
"tempfile",
|
|
3325
|
+
"wait-timeout",
|
|
3326
|
+
]
|
|
3327
|
+
|
|
3328
|
+
[[package]]
|
|
3329
|
+
name = "salsa20"
|
|
3330
|
+
version = "0.11.0"
|
|
3331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3332
|
+
checksum = "2f874456e72520ff1375a06c588eaf074b0f01f9e9e1aada45bd9b7954a6e42c"
|
|
3333
|
+
dependencies = [
|
|
3334
|
+
"cfg-if",
|
|
3335
|
+
"cipher 0.5.2",
|
|
3336
|
+
]
|
|
3337
|
+
|
|
3338
|
+
[[package]]
|
|
3339
|
+
name = "same-file"
|
|
3340
|
+
version = "1.0.6"
|
|
3341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3342
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3343
|
+
dependencies = [
|
|
3344
|
+
"winapi-util",
|
|
3345
|
+
]
|
|
3346
|
+
|
|
3347
|
+
[[package]]
|
|
3348
|
+
name = "schannel"
|
|
3349
|
+
version = "0.1.29"
|
|
3350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3351
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
3352
|
+
dependencies = [
|
|
3353
|
+
"windows-sys 0.61.2",
|
|
3354
|
+
]
|
|
3355
|
+
|
|
3356
|
+
[[package]]
|
|
3357
|
+
name = "scopeguard"
|
|
3358
|
+
version = "1.2.0"
|
|
3359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3360
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3361
|
+
|
|
3362
|
+
[[package]]
|
|
3363
|
+
name = "scrypt"
|
|
3364
|
+
version = "0.12.0"
|
|
3365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3366
|
+
checksum = "d87af57419b594aa23fa95f09f0e06d80d84ba01c26148c43844cad6ff4485f0"
|
|
3367
|
+
dependencies = [
|
|
3368
|
+
"cfg-if",
|
|
3369
|
+
"pbkdf2",
|
|
3370
|
+
"salsa20",
|
|
3371
|
+
"sha2 0.11.0",
|
|
3372
|
+
]
|
|
3373
|
+
|
|
3374
|
+
[[package]]
|
|
3375
|
+
name = "sec1"
|
|
3376
|
+
version = "0.8.1"
|
|
3377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3378
|
+
checksum = "d56d437c2f19203ce5f7122e507831de96f3d2d4d3be5af44a0b0a09d8a80e4d"
|
|
3379
|
+
dependencies = [
|
|
3380
|
+
"base16ct",
|
|
3381
|
+
"ctutils",
|
|
3382
|
+
"der",
|
|
3383
|
+
"hybrid-array",
|
|
3384
|
+
"subtle",
|
|
3385
|
+
"zeroize",
|
|
3386
|
+
]
|
|
3387
|
+
|
|
3388
|
+
[[package]]
|
|
3389
|
+
name = "security-framework"
|
|
3390
|
+
version = "3.7.0"
|
|
3391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3392
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
3393
|
+
dependencies = [
|
|
3394
|
+
"bitflags",
|
|
3395
|
+
"core-foundation",
|
|
3396
|
+
"core-foundation-sys",
|
|
3397
|
+
"libc",
|
|
3398
|
+
"security-framework-sys",
|
|
3399
|
+
]
|
|
3400
|
+
|
|
3401
|
+
[[package]]
|
|
3402
|
+
name = "security-framework-sys"
|
|
3403
|
+
version = "2.17.0"
|
|
3404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
3406
|
+
dependencies = [
|
|
3407
|
+
"core-foundation-sys",
|
|
3408
|
+
"libc",
|
|
3409
|
+
]
|
|
3410
|
+
|
|
3411
|
+
[[package]]
|
|
3412
|
+
name = "semver"
|
|
3413
|
+
version = "1.0.28"
|
|
3414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3415
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
3416
|
+
|
|
3417
|
+
[[package]]
|
|
3418
|
+
name = "serde"
|
|
3419
|
+
version = "1.0.228"
|
|
3420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3421
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
3422
|
+
dependencies = [
|
|
3423
|
+
"serde_core",
|
|
3424
|
+
"serde_derive",
|
|
3425
|
+
]
|
|
3426
|
+
|
|
3427
|
+
[[package]]
|
|
3428
|
+
name = "serde_core"
|
|
3429
|
+
version = "1.0.228"
|
|
3430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
3432
|
+
dependencies = [
|
|
3433
|
+
"serde_derive",
|
|
3434
|
+
]
|
|
3435
|
+
|
|
3436
|
+
[[package]]
|
|
3437
|
+
name = "serde_derive"
|
|
3438
|
+
version = "1.0.228"
|
|
3439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3440
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
3441
|
+
dependencies = [
|
|
3442
|
+
"proc-macro2",
|
|
3443
|
+
"quote",
|
|
3444
|
+
"syn",
|
|
3445
|
+
]
|
|
3446
|
+
|
|
3447
|
+
[[package]]
|
|
3448
|
+
name = "serde_json"
|
|
3449
|
+
version = "1.0.150"
|
|
3450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3451
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
3452
|
+
dependencies = [
|
|
3453
|
+
"itoa",
|
|
3454
|
+
"memchr",
|
|
3455
|
+
"serde",
|
|
3456
|
+
"serde_core",
|
|
3457
|
+
"zmij",
|
|
3458
|
+
]
|
|
3459
|
+
|
|
3460
|
+
[[package]]
|
|
3461
|
+
name = "serde_spanned"
|
|
3462
|
+
version = "0.6.9"
|
|
3463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3464
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
3465
|
+
dependencies = [
|
|
3466
|
+
"serde",
|
|
3467
|
+
]
|
|
3468
|
+
|
|
3469
|
+
[[package]]
|
|
3470
|
+
name = "serdect"
|
|
3471
|
+
version = "0.4.3"
|
|
3472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3473
|
+
checksum = "66cf8fedced2fcf12406bcb34223dffb92eaf34908ede12fed414c82b7f00b3e"
|
|
3474
|
+
dependencies = [
|
|
3475
|
+
"base16ct",
|
|
3476
|
+
"serde",
|
|
3477
|
+
]
|
|
3478
|
+
|
|
3479
|
+
[[package]]
|
|
3480
|
+
name = "sha1"
|
|
3481
|
+
version = "0.10.6"
|
|
3482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3483
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3484
|
+
dependencies = [
|
|
3485
|
+
"cfg-if",
|
|
3486
|
+
"cpufeatures 0.2.17",
|
|
3487
|
+
"digest 0.10.7",
|
|
3488
|
+
]
|
|
3489
|
+
|
|
3490
|
+
[[package]]
|
|
3491
|
+
name = "sha1"
|
|
3492
|
+
version = "0.11.0"
|
|
3493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3494
|
+
checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
3495
|
+
dependencies = [
|
|
3496
|
+
"cfg-if",
|
|
3497
|
+
"cpufeatures 0.3.0",
|
|
3498
|
+
"digest 0.11.3",
|
|
3499
|
+
]
|
|
3500
|
+
|
|
3501
|
+
[[package]]
|
|
3502
|
+
name = "sha2"
|
|
3503
|
+
version = "0.10.9"
|
|
3504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3505
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3506
|
+
dependencies = [
|
|
3507
|
+
"cfg-if",
|
|
3508
|
+
"cpufeatures 0.2.17",
|
|
3509
|
+
"digest 0.10.7",
|
|
3510
|
+
]
|
|
3511
|
+
|
|
3512
|
+
[[package]]
|
|
3513
|
+
name = "sha2"
|
|
3514
|
+
version = "0.11.0"
|
|
3515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3516
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
3517
|
+
dependencies = [
|
|
3518
|
+
"cfg-if",
|
|
3519
|
+
"cpufeatures 0.3.0",
|
|
3520
|
+
"digest 0.11.3",
|
|
3521
|
+
]
|
|
3522
|
+
|
|
3523
|
+
[[package]]
|
|
3524
|
+
name = "sha3"
|
|
3525
|
+
version = "0.11.0"
|
|
3526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3527
|
+
checksum = "be176f1a57ce4e3d31c1a166222d9768de5954f811601fb7ca06fc8203905ce1"
|
|
3528
|
+
dependencies = [
|
|
3529
|
+
"digest 0.11.3",
|
|
3530
|
+
"keccak",
|
|
3531
|
+
]
|
|
3532
|
+
|
|
3533
|
+
[[package]]
|
|
3534
|
+
name = "sha3"
|
|
3535
|
+
version = "0.12.0"
|
|
3536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3537
|
+
checksum = "bc9bad02c26382724b2d2692c6f179285e4b54eeecd7968f52a50059c3c11759"
|
|
3538
|
+
dependencies = [
|
|
3539
|
+
"digest 0.11.3",
|
|
3540
|
+
"keccak",
|
|
3541
|
+
"sponge-cursor",
|
|
3542
|
+
]
|
|
3543
|
+
|
|
3544
|
+
[[package]]
|
|
3545
|
+
name = "sharded-slab"
|
|
3546
|
+
version = "0.1.7"
|
|
3547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3548
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3549
|
+
dependencies = [
|
|
3550
|
+
"lazy_static",
|
|
3551
|
+
]
|
|
3552
|
+
|
|
3553
|
+
[[package]]
|
|
3554
|
+
name = "shlex"
|
|
3555
|
+
version = "2.0.1"
|
|
3556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3557
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
3558
|
+
|
|
3559
|
+
[[package]]
|
|
3560
|
+
name = "signal-hook-registry"
|
|
3561
|
+
version = "1.4.8"
|
|
3562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3563
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
3564
|
+
dependencies = [
|
|
3565
|
+
"errno",
|
|
3566
|
+
"libc",
|
|
3567
|
+
]
|
|
3568
|
+
|
|
3569
|
+
[[package]]
|
|
3570
|
+
name = "signature"
|
|
3571
|
+
version = "3.0.0"
|
|
3572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3573
|
+
checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5"
|
|
3574
|
+
dependencies = [
|
|
3575
|
+
"digest 0.11.3",
|
|
3576
|
+
"rand_core 0.10.1",
|
|
3577
|
+
]
|
|
3578
|
+
|
|
3579
|
+
[[package]]
|
|
3580
|
+
name = "simd-adler32"
|
|
3581
|
+
version = "0.3.10"
|
|
3582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3583
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
3584
|
+
|
|
3585
|
+
[[package]]
|
|
3586
|
+
name = "simd_cesu8"
|
|
3587
|
+
version = "1.2.0"
|
|
3588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3589
|
+
checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
|
|
3590
|
+
dependencies = [
|
|
3591
|
+
"rustc_version",
|
|
3592
|
+
"simdutf8",
|
|
3593
|
+
]
|
|
3594
|
+
|
|
3595
|
+
[[package]]
|
|
3596
|
+
name = "simdutf8"
|
|
3597
|
+
version = "0.1.5"
|
|
3598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3599
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
3600
|
+
|
|
3601
|
+
[[package]]
|
|
3602
|
+
name = "slab"
|
|
3603
|
+
version = "0.4.12"
|
|
3604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
3606
|
+
|
|
3607
|
+
[[package]]
|
|
3608
|
+
name = "smallvec"
|
|
3609
|
+
version = "1.15.2"
|
|
3610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3611
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
3612
|
+
|
|
3613
|
+
[[package]]
|
|
3614
|
+
name = "socket2"
|
|
3615
|
+
version = "0.5.10"
|
|
3616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3617
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
3618
|
+
dependencies = [
|
|
3619
|
+
"libc",
|
|
3620
|
+
"windows-sys 0.52.0",
|
|
3621
|
+
]
|
|
3622
|
+
|
|
3623
|
+
[[package]]
|
|
3624
|
+
name = "socket2"
|
|
3625
|
+
version = "0.6.4"
|
|
3626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3627
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
3628
|
+
dependencies = [
|
|
3629
|
+
"libc",
|
|
3630
|
+
"windows-sys 0.61.2",
|
|
3631
|
+
]
|
|
3632
|
+
|
|
3633
|
+
[[package]]
|
|
3634
|
+
name = "spki"
|
|
3635
|
+
version = "0.8.0"
|
|
3636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3637
|
+
checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
|
|
3638
|
+
dependencies = [
|
|
3639
|
+
"base64ct",
|
|
3640
|
+
"der",
|
|
3641
|
+
]
|
|
3642
|
+
|
|
3643
|
+
[[package]]
|
|
3644
|
+
name = "sponge-cursor"
|
|
3645
|
+
version = "0.1.0"
|
|
3646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3647
|
+
checksum = "3a0219bd7d979d58245a4f41f695e1ac9f8befdffadd7f61f1bae9e39abc6620"
|
|
3648
|
+
|
|
3649
|
+
[[package]]
|
|
3650
|
+
name = "ssh-cipher"
|
|
3651
|
+
version = "0.3.0"
|
|
3652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3653
|
+
checksum = "d801accda99469cde6d73da741422610fdf6508a72d9a69d1b55cb241c720597"
|
|
3654
|
+
dependencies = [
|
|
3655
|
+
"aead 0.6.1",
|
|
3656
|
+
"aes 0.9.2",
|
|
3657
|
+
"aes-gcm 0.11.0",
|
|
3658
|
+
"chacha20 0.10.2",
|
|
3659
|
+
"cipher 0.5.2",
|
|
3660
|
+
"ctutils",
|
|
3661
|
+
"des 0.9.0",
|
|
3662
|
+
"poly1305 0.9.1",
|
|
3663
|
+
"ssh-encoding",
|
|
3664
|
+
"zeroize",
|
|
3665
|
+
]
|
|
3666
|
+
|
|
3667
|
+
[[package]]
|
|
3668
|
+
name = "ssh-encoding"
|
|
3669
|
+
version = "0.3.0"
|
|
3670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3671
|
+
checksum = "7b54d0ed0498daf3f78d82e00e28c8eec9d75a067c4cfbcc7a0f7d0f4077749e"
|
|
3672
|
+
dependencies = [
|
|
3673
|
+
"base64ct",
|
|
3674
|
+
"bytes",
|
|
3675
|
+
"crypto-bigint",
|
|
3676
|
+
"ctutils",
|
|
3677
|
+
"digest 0.11.3",
|
|
3678
|
+
"pem-rfc7468",
|
|
3679
|
+
"zeroize",
|
|
3680
|
+
]
|
|
3681
|
+
|
|
3682
|
+
[[package]]
|
|
3683
|
+
name = "ssh-key"
|
|
3684
|
+
version = "0.7.0-rc.11"
|
|
3685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3686
|
+
checksum = "f9a32fae177b74a22aa9c5b01bf7e68b33545be32d9e381e248058d2adc15ce3"
|
|
3687
|
+
dependencies = [
|
|
3688
|
+
"argon2",
|
|
3689
|
+
"bcrypt-pbkdf",
|
|
3690
|
+
"ctutils",
|
|
3691
|
+
"ed25519-dalek",
|
|
3692
|
+
"hex",
|
|
3693
|
+
"hmac 0.13.0",
|
|
3694
|
+
"p256",
|
|
3695
|
+
"p384",
|
|
3696
|
+
"p521",
|
|
3697
|
+
"rand_core 0.10.1",
|
|
3698
|
+
"rsa",
|
|
3699
|
+
"sec1",
|
|
3700
|
+
"sha1 0.11.0",
|
|
3701
|
+
"sha2 0.11.0",
|
|
3702
|
+
"signature",
|
|
3703
|
+
"ssh-cipher",
|
|
3704
|
+
"ssh-encoding",
|
|
3705
|
+
"zeroize",
|
|
3706
|
+
]
|
|
3707
|
+
|
|
3708
|
+
[[package]]
|
|
3709
|
+
name = "strsim"
|
|
3710
|
+
version = "0.11.1"
|
|
3711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3712
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3713
|
+
|
|
3714
|
+
[[package]]
|
|
3715
|
+
name = "subtle"
|
|
3716
|
+
version = "2.6.1"
|
|
3717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3718
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3719
|
+
|
|
3720
|
+
[[package]]
|
|
3721
|
+
name = "syn"
|
|
3722
|
+
version = "2.0.118"
|
|
3723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3724
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
3725
|
+
dependencies = [
|
|
3726
|
+
"proc-macro2",
|
|
3727
|
+
"quote",
|
|
3728
|
+
"unicode-ident",
|
|
3729
|
+
]
|
|
3730
|
+
|
|
3731
|
+
[[package]]
|
|
3732
|
+
name = "target-lexicon"
|
|
3733
|
+
version = "0.13.5"
|
|
3734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3735
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
3736
|
+
|
|
3737
|
+
[[package]]
|
|
3738
|
+
name = "tempfile"
|
|
3739
|
+
version = "3.27.0"
|
|
3740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3741
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3742
|
+
dependencies = [
|
|
3743
|
+
"fastrand",
|
|
3744
|
+
"getrandom 0.3.4",
|
|
3745
|
+
"once_cell",
|
|
3746
|
+
"rustix",
|
|
3747
|
+
"windows-sys 0.52.0",
|
|
3748
|
+
]
|
|
3749
|
+
|
|
3750
|
+
[[package]]
|
|
3751
|
+
name = "termtree"
|
|
3752
|
+
version = "0.5.1"
|
|
3753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3754
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
3755
|
+
|
|
3756
|
+
[[package]]
|
|
3757
|
+
name = "thiserror"
|
|
3758
|
+
version = "2.0.18"
|
|
3759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3760
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
3761
|
+
dependencies = [
|
|
3762
|
+
"thiserror-impl",
|
|
3763
|
+
]
|
|
3764
|
+
|
|
3765
|
+
[[package]]
|
|
3766
|
+
name = "thiserror-impl"
|
|
3767
|
+
version = "2.0.18"
|
|
3768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3769
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
3770
|
+
dependencies = [
|
|
3771
|
+
"proc-macro2",
|
|
3772
|
+
"quote",
|
|
3773
|
+
"syn",
|
|
3774
|
+
]
|
|
3775
|
+
|
|
3776
|
+
[[package]]
|
|
3777
|
+
name = "thread_local"
|
|
3778
|
+
version = "1.1.9"
|
|
3779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3780
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
3781
|
+
dependencies = [
|
|
3782
|
+
"cfg-if",
|
|
3783
|
+
]
|
|
3784
|
+
|
|
3785
|
+
[[package]]
|
|
3786
|
+
name = "time"
|
|
3787
|
+
version = "0.3.45"
|
|
3788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3789
|
+
checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd"
|
|
3790
|
+
dependencies = [
|
|
3791
|
+
"deranged",
|
|
3792
|
+
"num-conv",
|
|
3793
|
+
"powerfmt",
|
|
3794
|
+
"serde_core",
|
|
3795
|
+
"time-core",
|
|
3796
|
+
]
|
|
3797
|
+
|
|
3798
|
+
[[package]]
|
|
3799
|
+
name = "time-core"
|
|
3800
|
+
version = "0.1.7"
|
|
3801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3802
|
+
checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca"
|
|
3803
|
+
|
|
3804
|
+
[[package]]
|
|
3805
|
+
name = "tinytemplate"
|
|
3806
|
+
version = "1.2.1"
|
|
3807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3808
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
3809
|
+
dependencies = [
|
|
3810
|
+
"serde",
|
|
3811
|
+
"serde_json",
|
|
3812
|
+
]
|
|
3813
|
+
|
|
3814
|
+
[[package]]
|
|
3815
|
+
name = "tinyvec"
|
|
3816
|
+
version = "1.12.0"
|
|
3817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3818
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
3819
|
+
dependencies = [
|
|
3820
|
+
"tinyvec_macros",
|
|
3821
|
+
]
|
|
3822
|
+
|
|
3823
|
+
[[package]]
|
|
3824
|
+
name = "tinyvec_macros"
|
|
3825
|
+
version = "0.1.1"
|
|
3826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3827
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3828
|
+
|
|
3829
|
+
[[package]]
|
|
3830
|
+
name = "tokio"
|
|
3831
|
+
version = "1.52.3"
|
|
3832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3833
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
3834
|
+
dependencies = [
|
|
3835
|
+
"bytes",
|
|
3836
|
+
"libc",
|
|
3837
|
+
"mio",
|
|
3838
|
+
"pin-project-lite",
|
|
3839
|
+
"signal-hook-registry",
|
|
3840
|
+
"socket2 0.6.4",
|
|
3841
|
+
"tokio-macros",
|
|
3842
|
+
"windows-sys 0.61.2",
|
|
3843
|
+
]
|
|
3844
|
+
|
|
3845
|
+
[[package]]
|
|
3846
|
+
name = "tokio-macros"
|
|
3847
|
+
version = "2.7.0"
|
|
3848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3849
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
3850
|
+
dependencies = [
|
|
3851
|
+
"proc-macro2",
|
|
3852
|
+
"quote",
|
|
3853
|
+
"syn",
|
|
3854
|
+
]
|
|
3855
|
+
|
|
3856
|
+
[[package]]
|
|
3857
|
+
name = "tokio-rustls"
|
|
3858
|
+
version = "0.26.4"
|
|
3859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3860
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
3861
|
+
dependencies = [
|
|
3862
|
+
"rustls",
|
|
3863
|
+
"tokio",
|
|
3864
|
+
]
|
|
3865
|
+
|
|
3866
|
+
[[package]]
|
|
3867
|
+
name = "tokio-stream"
|
|
3868
|
+
version = "0.1.18"
|
|
3869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3870
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
3871
|
+
dependencies = [
|
|
3872
|
+
"futures-core",
|
|
3873
|
+
"pin-project-lite",
|
|
3874
|
+
"tokio",
|
|
3875
|
+
]
|
|
3876
|
+
|
|
3877
|
+
[[package]]
|
|
3878
|
+
name = "tokio-test"
|
|
3879
|
+
version = "0.4.5"
|
|
3880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3881
|
+
checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545"
|
|
3882
|
+
dependencies = [
|
|
3883
|
+
"futures-core",
|
|
3884
|
+
"tokio",
|
|
3885
|
+
"tokio-stream",
|
|
3886
|
+
]
|
|
3887
|
+
|
|
3888
|
+
[[package]]
|
|
3889
|
+
name = "tokio-tungstenite"
|
|
3890
|
+
version = "0.26.2"
|
|
3891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3892
|
+
checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084"
|
|
3893
|
+
dependencies = [
|
|
3894
|
+
"futures-util",
|
|
3895
|
+
"log",
|
|
3896
|
+
"tokio",
|
|
3897
|
+
"tungstenite",
|
|
3898
|
+
]
|
|
3899
|
+
|
|
3900
|
+
[[package]]
|
|
3901
|
+
name = "tokio-util"
|
|
3902
|
+
version = "0.7.18"
|
|
3903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3904
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
3905
|
+
dependencies = [
|
|
3906
|
+
"bytes",
|
|
3907
|
+
"futures-core",
|
|
3908
|
+
"futures-sink",
|
|
3909
|
+
"futures-util",
|
|
3910
|
+
"pin-project-lite",
|
|
3911
|
+
"tokio",
|
|
3912
|
+
]
|
|
3913
|
+
|
|
3914
|
+
[[package]]
|
|
3915
|
+
name = "toml"
|
|
3916
|
+
version = "0.8.23"
|
|
3917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3918
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
3919
|
+
dependencies = [
|
|
3920
|
+
"serde",
|
|
3921
|
+
"serde_spanned",
|
|
3922
|
+
"toml_datetime",
|
|
3923
|
+
"toml_edit",
|
|
3924
|
+
]
|
|
3925
|
+
|
|
3926
|
+
[[package]]
|
|
3927
|
+
name = "toml_datetime"
|
|
3928
|
+
version = "0.6.11"
|
|
3929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3930
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
3931
|
+
dependencies = [
|
|
3932
|
+
"serde",
|
|
3933
|
+
]
|
|
3934
|
+
|
|
3935
|
+
[[package]]
|
|
3936
|
+
name = "toml_edit"
|
|
3937
|
+
version = "0.22.27"
|
|
3938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3939
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
3940
|
+
dependencies = [
|
|
3941
|
+
"indexmap",
|
|
3942
|
+
"serde",
|
|
3943
|
+
"serde_spanned",
|
|
3944
|
+
"toml_datetime",
|
|
3945
|
+
"toml_write",
|
|
3946
|
+
"winnow",
|
|
3947
|
+
]
|
|
3948
|
+
|
|
3949
|
+
[[package]]
|
|
3950
|
+
name = "toml_write"
|
|
3951
|
+
version = "0.1.2"
|
|
3952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3953
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
3954
|
+
|
|
3955
|
+
[[package]]
|
|
3956
|
+
name = "tracing"
|
|
3957
|
+
version = "0.1.44"
|
|
3958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3959
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3960
|
+
dependencies = [
|
|
3961
|
+
"pin-project-lite",
|
|
3962
|
+
"tracing-attributes",
|
|
3963
|
+
"tracing-core",
|
|
3964
|
+
]
|
|
3965
|
+
|
|
3966
|
+
[[package]]
|
|
3967
|
+
name = "tracing-attributes"
|
|
3968
|
+
version = "0.1.31"
|
|
3969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3970
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3971
|
+
dependencies = [
|
|
3972
|
+
"proc-macro2",
|
|
3973
|
+
"quote",
|
|
3974
|
+
"syn",
|
|
3975
|
+
]
|
|
3976
|
+
|
|
3977
|
+
[[package]]
|
|
3978
|
+
name = "tracing-core"
|
|
3979
|
+
version = "0.1.36"
|
|
3980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3981
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3982
|
+
dependencies = [
|
|
3983
|
+
"once_cell",
|
|
3984
|
+
"valuable",
|
|
3985
|
+
]
|
|
3986
|
+
|
|
3987
|
+
[[package]]
|
|
3988
|
+
name = "tracing-log"
|
|
3989
|
+
version = "0.2.0"
|
|
3990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3991
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3992
|
+
dependencies = [
|
|
3993
|
+
"log",
|
|
3994
|
+
"once_cell",
|
|
3995
|
+
"tracing-core",
|
|
3996
|
+
]
|
|
3997
|
+
|
|
3998
|
+
[[package]]
|
|
3999
|
+
name = "tracing-serde"
|
|
4000
|
+
version = "0.2.0"
|
|
4001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4002
|
+
checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
|
|
4003
|
+
dependencies = [
|
|
4004
|
+
"serde",
|
|
4005
|
+
"tracing-core",
|
|
4006
|
+
]
|
|
4007
|
+
|
|
4008
|
+
[[package]]
|
|
4009
|
+
name = "tracing-subscriber"
|
|
4010
|
+
version = "0.3.23"
|
|
4011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4012
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
4013
|
+
dependencies = [
|
|
4014
|
+
"matchers",
|
|
4015
|
+
"nu-ansi-term",
|
|
4016
|
+
"once_cell",
|
|
4017
|
+
"regex-automata",
|
|
4018
|
+
"serde",
|
|
4019
|
+
"serde_json",
|
|
4020
|
+
"sharded-slab",
|
|
4021
|
+
"smallvec",
|
|
4022
|
+
"thread_local",
|
|
4023
|
+
"tracing",
|
|
4024
|
+
"tracing-core",
|
|
4025
|
+
"tracing-log",
|
|
4026
|
+
"tracing-serde",
|
|
4027
|
+
]
|
|
4028
|
+
|
|
4029
|
+
[[package]]
|
|
4030
|
+
name = "trait-variant"
|
|
4031
|
+
version = "0.1.2"
|
|
4032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4033
|
+
checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7"
|
|
4034
|
+
dependencies = [
|
|
4035
|
+
"proc-macro2",
|
|
4036
|
+
"quote",
|
|
4037
|
+
"syn",
|
|
4038
|
+
]
|
|
4039
|
+
|
|
4040
|
+
[[package]]
|
|
4041
|
+
name = "tungstenite"
|
|
4042
|
+
version = "0.26.2"
|
|
4043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4044
|
+
checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13"
|
|
4045
|
+
dependencies = [
|
|
4046
|
+
"bytes",
|
|
4047
|
+
"data-encoding",
|
|
4048
|
+
"http",
|
|
4049
|
+
"httparse",
|
|
4050
|
+
"log",
|
|
4051
|
+
"rand 0.9.4",
|
|
4052
|
+
"sha1 0.10.6",
|
|
4053
|
+
"thiserror",
|
|
4054
|
+
"utf-8",
|
|
4055
|
+
]
|
|
4056
|
+
|
|
4057
|
+
[[package]]
|
|
4058
|
+
name = "typenum"
|
|
4059
|
+
version = "1.20.1"
|
|
4060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4061
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
4062
|
+
|
|
4063
|
+
[[package]]
|
|
4064
|
+
name = "unarray"
|
|
4065
|
+
version = "0.1.4"
|
|
4066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4067
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
4068
|
+
|
|
4069
|
+
[[package]]
|
|
4070
|
+
name = "unicode-bidi"
|
|
4071
|
+
version = "0.3.18"
|
|
4072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4073
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
4074
|
+
|
|
4075
|
+
[[package]]
|
|
4076
|
+
name = "unicode-ident"
|
|
4077
|
+
version = "1.0.24"
|
|
4078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4079
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
4080
|
+
|
|
4081
|
+
[[package]]
|
|
4082
|
+
name = "unicode-joining-type"
|
|
4083
|
+
version = "1.0.0"
|
|
4084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4085
|
+
checksum = "d8d00a78170970967fdb83f9d49b92f959ab2bb829186b113e4f4604ad98e180"
|
|
4086
|
+
|
|
4087
|
+
[[package]]
|
|
4088
|
+
name = "unicode-normalization"
|
|
4089
|
+
version = "0.1.25"
|
|
4090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4091
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
4092
|
+
dependencies = [
|
|
4093
|
+
"tinyvec",
|
|
4094
|
+
]
|
|
4095
|
+
|
|
4096
|
+
[[package]]
|
|
4097
|
+
name = "universal-hash"
|
|
4098
|
+
version = "0.5.1"
|
|
4099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4100
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
4101
|
+
dependencies = [
|
|
4102
|
+
"crypto-common 0.1.7",
|
|
4103
|
+
"subtle",
|
|
4104
|
+
]
|
|
4105
|
+
|
|
4106
|
+
[[package]]
|
|
4107
|
+
name = "universal-hash"
|
|
4108
|
+
version = "0.6.1"
|
|
4109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4110
|
+
checksum = "f4987bdc12753382e0bec4a65c50738ffaabc998b9cdd1f952fb5f39b0048a96"
|
|
4111
|
+
dependencies = [
|
|
4112
|
+
"crypto-common 0.2.2",
|
|
4113
|
+
"ctutils",
|
|
4114
|
+
]
|
|
4115
|
+
|
|
4116
|
+
[[package]]
|
|
4117
|
+
name = "untrusted"
|
|
4118
|
+
version = "0.9.0"
|
|
4119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4120
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
4121
|
+
|
|
4122
|
+
[[package]]
|
|
4123
|
+
name = "url"
|
|
4124
|
+
version = "2.5.4"
|
|
4125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4126
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
4127
|
+
dependencies = [
|
|
4128
|
+
"form_urlencoded",
|
|
4129
|
+
"idna",
|
|
4130
|
+
"percent-encoding",
|
|
4131
|
+
]
|
|
4132
|
+
|
|
4133
|
+
[[package]]
|
|
4134
|
+
name = "utf-8"
|
|
4135
|
+
version = "0.7.6"
|
|
4136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4137
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
4138
|
+
|
|
4139
|
+
[[package]]
|
|
4140
|
+
name = "utf8_iter"
|
|
4141
|
+
version = "1.0.4"
|
|
4142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4143
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
4144
|
+
|
|
4145
|
+
[[package]]
|
|
4146
|
+
name = "utf8parse"
|
|
4147
|
+
version = "0.2.2"
|
|
4148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4149
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
4150
|
+
|
|
4151
|
+
[[package]]
|
|
4152
|
+
name = "valuable"
|
|
4153
|
+
version = "0.1.1"
|
|
4154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4155
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
4156
|
+
|
|
4157
|
+
[[package]]
|
|
4158
|
+
name = "version_check"
|
|
4159
|
+
version = "0.9.5"
|
|
4160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4161
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
4162
|
+
|
|
4163
|
+
[[package]]
|
|
4164
|
+
name = "wait-timeout"
|
|
4165
|
+
version = "0.2.1"
|
|
4166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4167
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
4168
|
+
dependencies = [
|
|
4169
|
+
"libc",
|
|
4170
|
+
]
|
|
4171
|
+
|
|
4172
|
+
[[package]]
|
|
4173
|
+
name = "walkdir"
|
|
4174
|
+
version = "2.5.0"
|
|
4175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4176
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
4177
|
+
dependencies = [
|
|
4178
|
+
"same-file",
|
|
4179
|
+
"winapi-util",
|
|
4180
|
+
]
|
|
4181
|
+
|
|
4182
|
+
[[package]]
|
|
4183
|
+
name = "wasi"
|
|
4184
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
4185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4186
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
4187
|
+
|
|
4188
|
+
[[package]]
|
|
4189
|
+
name = "wasip2"
|
|
4190
|
+
version = "1.0.4+wasi-0.2.12"
|
|
4191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4192
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
4193
|
+
dependencies = [
|
|
4194
|
+
"wit-bindgen",
|
|
4195
|
+
]
|
|
4196
|
+
|
|
4197
|
+
[[package]]
|
|
4198
|
+
name = "wasm-bindgen"
|
|
4199
|
+
version = "0.2.126"
|
|
4200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4201
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
4202
|
+
dependencies = [
|
|
4203
|
+
"cfg-if",
|
|
4204
|
+
"once_cell",
|
|
4205
|
+
"rustversion",
|
|
4206
|
+
"wasm-bindgen-macro",
|
|
4207
|
+
"wasm-bindgen-shared",
|
|
4208
|
+
]
|
|
4209
|
+
|
|
4210
|
+
[[package]]
|
|
4211
|
+
name = "wasm-bindgen-futures"
|
|
4212
|
+
version = "0.4.76"
|
|
4213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4214
|
+
checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
|
|
4215
|
+
dependencies = [
|
|
4216
|
+
"js-sys",
|
|
4217
|
+
"wasm-bindgen",
|
|
4218
|
+
]
|
|
4219
|
+
|
|
4220
|
+
[[package]]
|
|
4221
|
+
name = "wasm-bindgen-macro"
|
|
4222
|
+
version = "0.2.126"
|
|
4223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4224
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
4225
|
+
dependencies = [
|
|
4226
|
+
"quote",
|
|
4227
|
+
"wasm-bindgen-macro-support",
|
|
4228
|
+
]
|
|
4229
|
+
|
|
4230
|
+
[[package]]
|
|
4231
|
+
name = "wasm-bindgen-macro-support"
|
|
4232
|
+
version = "0.2.126"
|
|
4233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4234
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
4235
|
+
dependencies = [
|
|
4236
|
+
"bumpalo",
|
|
4237
|
+
"proc-macro2",
|
|
4238
|
+
"quote",
|
|
4239
|
+
"syn",
|
|
4240
|
+
"wasm-bindgen-shared",
|
|
4241
|
+
]
|
|
4242
|
+
|
|
4243
|
+
[[package]]
|
|
4244
|
+
name = "wasm-bindgen-shared"
|
|
4245
|
+
version = "0.2.126"
|
|
4246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4247
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
4248
|
+
dependencies = [
|
|
4249
|
+
"unicode-ident",
|
|
4250
|
+
]
|
|
4251
|
+
|
|
4252
|
+
[[package]]
|
|
4253
|
+
name = "web-sys"
|
|
4254
|
+
version = "0.3.103"
|
|
4255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4256
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
4257
|
+
dependencies = [
|
|
4258
|
+
"js-sys",
|
|
4259
|
+
"wasm-bindgen",
|
|
4260
|
+
]
|
|
4261
|
+
|
|
4262
|
+
[[package]]
|
|
4263
|
+
name = "web-time"
|
|
4264
|
+
version = "1.1.0"
|
|
4265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4266
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
4267
|
+
dependencies = [
|
|
4268
|
+
"js-sys",
|
|
4269
|
+
"wasm-bindgen",
|
|
4270
|
+
]
|
|
4271
|
+
|
|
4272
|
+
[[package]]
|
|
4273
|
+
name = "webpki-root-certs"
|
|
4274
|
+
version = "1.0.9"
|
|
4275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4276
|
+
checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
|
|
4277
|
+
dependencies = [
|
|
4278
|
+
"rustls-pki-types",
|
|
4279
|
+
]
|
|
4280
|
+
|
|
4281
|
+
[[package]]
|
|
4282
|
+
name = "webpki-roots"
|
|
4283
|
+
version = "0.26.11"
|
|
4284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4285
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
4286
|
+
dependencies = [
|
|
4287
|
+
"webpki-roots 1.0.8",
|
|
4288
|
+
]
|
|
4289
|
+
|
|
4290
|
+
[[package]]
|
|
4291
|
+
name = "webpki-roots"
|
|
4292
|
+
version = "1.0.8"
|
|
4293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4294
|
+
checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
|
|
4295
|
+
dependencies = [
|
|
4296
|
+
"rustls-pki-types",
|
|
4297
|
+
]
|
|
4298
|
+
|
|
4299
|
+
[[package]]
|
|
4300
|
+
name = "winapi-util"
|
|
4301
|
+
version = "0.1.11"
|
|
4302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4303
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4304
|
+
dependencies = [
|
|
4305
|
+
"windows-sys 0.52.0",
|
|
4306
|
+
]
|
|
4307
|
+
|
|
4308
|
+
[[package]]
|
|
4309
|
+
name = "windows"
|
|
4310
|
+
version = "0.62.2"
|
|
4311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4312
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
4313
|
+
dependencies = [
|
|
4314
|
+
"windows-collections",
|
|
4315
|
+
"windows-core",
|
|
4316
|
+
"windows-future",
|
|
4317
|
+
"windows-numerics",
|
|
4318
|
+
]
|
|
4319
|
+
|
|
4320
|
+
[[package]]
|
|
4321
|
+
name = "windows-collections"
|
|
4322
|
+
version = "0.3.2"
|
|
4323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4324
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
4325
|
+
dependencies = [
|
|
4326
|
+
"windows-core",
|
|
4327
|
+
]
|
|
4328
|
+
|
|
4329
|
+
[[package]]
|
|
4330
|
+
name = "windows-core"
|
|
4331
|
+
version = "0.62.2"
|
|
4332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4333
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4334
|
+
dependencies = [
|
|
4335
|
+
"windows-implement",
|
|
4336
|
+
"windows-interface",
|
|
4337
|
+
"windows-link",
|
|
4338
|
+
"windows-result",
|
|
4339
|
+
"windows-strings",
|
|
4340
|
+
]
|
|
4341
|
+
|
|
4342
|
+
[[package]]
|
|
4343
|
+
name = "windows-future"
|
|
4344
|
+
version = "0.3.2"
|
|
4345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4346
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
4347
|
+
dependencies = [
|
|
4348
|
+
"windows-core",
|
|
4349
|
+
"windows-link",
|
|
4350
|
+
"windows-threading",
|
|
4351
|
+
]
|
|
4352
|
+
|
|
4353
|
+
[[package]]
|
|
4354
|
+
name = "windows-implement"
|
|
4355
|
+
version = "0.60.2"
|
|
4356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4357
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4358
|
+
dependencies = [
|
|
4359
|
+
"proc-macro2",
|
|
4360
|
+
"quote",
|
|
4361
|
+
"syn",
|
|
4362
|
+
]
|
|
4363
|
+
|
|
4364
|
+
[[package]]
|
|
4365
|
+
name = "windows-interface"
|
|
4366
|
+
version = "0.59.3"
|
|
4367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4368
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4369
|
+
dependencies = [
|
|
4370
|
+
"proc-macro2",
|
|
4371
|
+
"quote",
|
|
4372
|
+
"syn",
|
|
4373
|
+
]
|
|
4374
|
+
|
|
4375
|
+
[[package]]
|
|
4376
|
+
name = "windows-link"
|
|
4377
|
+
version = "0.2.1"
|
|
4378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4379
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4380
|
+
|
|
4381
|
+
[[package]]
|
|
4382
|
+
name = "windows-numerics"
|
|
4383
|
+
version = "0.3.1"
|
|
4384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4385
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
4386
|
+
dependencies = [
|
|
4387
|
+
"windows-core",
|
|
4388
|
+
"windows-link",
|
|
4389
|
+
]
|
|
4390
|
+
|
|
4391
|
+
[[package]]
|
|
4392
|
+
name = "windows-result"
|
|
4393
|
+
version = "0.4.1"
|
|
4394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4395
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4396
|
+
dependencies = [
|
|
4397
|
+
"windows-link",
|
|
4398
|
+
]
|
|
4399
|
+
|
|
4400
|
+
[[package]]
|
|
4401
|
+
name = "windows-strings"
|
|
4402
|
+
version = "0.5.1"
|
|
4403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4404
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4405
|
+
dependencies = [
|
|
4406
|
+
"windows-link",
|
|
4407
|
+
]
|
|
4408
|
+
|
|
4409
|
+
[[package]]
|
|
4410
|
+
name = "windows-sys"
|
|
4411
|
+
version = "0.52.0"
|
|
4412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4413
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4414
|
+
dependencies = [
|
|
4415
|
+
"windows-targets",
|
|
4416
|
+
]
|
|
4417
|
+
|
|
4418
|
+
[[package]]
|
|
4419
|
+
name = "windows-sys"
|
|
4420
|
+
version = "0.61.2"
|
|
4421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4422
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4423
|
+
dependencies = [
|
|
4424
|
+
"windows-link",
|
|
4425
|
+
]
|
|
4426
|
+
|
|
4427
|
+
[[package]]
|
|
4428
|
+
name = "windows-targets"
|
|
4429
|
+
version = "0.52.6"
|
|
4430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4431
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4432
|
+
dependencies = [
|
|
4433
|
+
"windows_aarch64_gnullvm",
|
|
4434
|
+
"windows_aarch64_msvc",
|
|
4435
|
+
"windows_i686_gnu",
|
|
4436
|
+
"windows_i686_gnullvm",
|
|
4437
|
+
"windows_i686_msvc",
|
|
4438
|
+
"windows_x86_64_gnu",
|
|
4439
|
+
"windows_x86_64_gnullvm",
|
|
4440
|
+
"windows_x86_64_msvc",
|
|
4441
|
+
]
|
|
4442
|
+
|
|
4443
|
+
[[package]]
|
|
4444
|
+
name = "windows-threading"
|
|
4445
|
+
version = "0.2.1"
|
|
4446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4447
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
4448
|
+
dependencies = [
|
|
4449
|
+
"windows-link",
|
|
4450
|
+
]
|
|
4451
|
+
|
|
4452
|
+
[[package]]
|
|
4453
|
+
name = "windows_aarch64_gnullvm"
|
|
4454
|
+
version = "0.52.6"
|
|
4455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4456
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4457
|
+
|
|
4458
|
+
[[package]]
|
|
4459
|
+
name = "windows_aarch64_msvc"
|
|
4460
|
+
version = "0.52.6"
|
|
4461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4462
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4463
|
+
|
|
4464
|
+
[[package]]
|
|
4465
|
+
name = "windows_i686_gnu"
|
|
4466
|
+
version = "0.52.6"
|
|
4467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4468
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4469
|
+
|
|
4470
|
+
[[package]]
|
|
4471
|
+
name = "windows_i686_gnullvm"
|
|
4472
|
+
version = "0.52.6"
|
|
4473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4474
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4475
|
+
|
|
4476
|
+
[[package]]
|
|
4477
|
+
name = "windows_i686_msvc"
|
|
4478
|
+
version = "0.52.6"
|
|
4479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4480
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4481
|
+
|
|
4482
|
+
[[package]]
|
|
4483
|
+
name = "windows_x86_64_gnu"
|
|
4484
|
+
version = "0.52.6"
|
|
4485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4486
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4487
|
+
|
|
4488
|
+
[[package]]
|
|
4489
|
+
name = "windows_x86_64_gnullvm"
|
|
4490
|
+
version = "0.52.6"
|
|
4491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4492
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4493
|
+
|
|
4494
|
+
[[package]]
|
|
4495
|
+
name = "windows_x86_64_msvc"
|
|
4496
|
+
version = "0.52.6"
|
|
4497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4498
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4499
|
+
|
|
4500
|
+
[[package]]
|
|
4501
|
+
name = "winnow"
|
|
4502
|
+
version = "0.7.15"
|
|
4503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4504
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
4505
|
+
dependencies = [
|
|
4506
|
+
"memchr",
|
|
4507
|
+
]
|
|
4508
|
+
|
|
4509
|
+
[[package]]
|
|
4510
|
+
name = "wit-bindgen"
|
|
4511
|
+
version = "0.57.1"
|
|
4512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4513
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
4514
|
+
|
|
4515
|
+
[[package]]
|
|
4516
|
+
name = "wnaf"
|
|
4517
|
+
version = "0.14.0"
|
|
4518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4519
|
+
checksum = "ab12e7090f27e2ffd9322651492942d50c2926094af30601e1964337db39daf1"
|
|
4520
|
+
dependencies = [
|
|
4521
|
+
"ff",
|
|
4522
|
+
"group",
|
|
4523
|
+
"hybrid-array",
|
|
4524
|
+
]
|
|
4525
|
+
|
|
4526
|
+
[[package]]
|
|
4527
|
+
name = "yasna"
|
|
4528
|
+
version = "0.5.2"
|
|
4529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4530
|
+
checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
|
|
4531
|
+
dependencies = [
|
|
4532
|
+
"time",
|
|
4533
|
+
]
|
|
4534
|
+
|
|
4535
|
+
[[package]]
|
|
4536
|
+
name = "zerocopy"
|
|
4537
|
+
version = "0.8.52"
|
|
4538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4539
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
4540
|
+
dependencies = [
|
|
4541
|
+
"zerocopy-derive",
|
|
4542
|
+
]
|
|
4543
|
+
|
|
4544
|
+
[[package]]
|
|
4545
|
+
name = "zerocopy-derive"
|
|
4546
|
+
version = "0.8.52"
|
|
4547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4548
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
4549
|
+
dependencies = [
|
|
4550
|
+
"proc-macro2",
|
|
4551
|
+
"quote",
|
|
4552
|
+
"syn",
|
|
4553
|
+
]
|
|
4554
|
+
|
|
4555
|
+
[[package]]
|
|
4556
|
+
name = "zeroize"
|
|
4557
|
+
version = "1.9.0"
|
|
4558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4559
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
4560
|
+
|
|
4561
|
+
[[package]]
|
|
4562
|
+
name = "zmij"
|
|
4563
|
+
version = "1.0.21"
|
|
4564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4565
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|