eggfetch 0.1.0__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.
- eggfetch-0.1.0/Cargo.lock +2672 -0
- eggfetch-0.1.0/Cargo.toml +23 -0
- eggfetch-0.1.0/PKG-INFO +19 -0
- eggfetch-0.1.0/crates/eggfetch-core/Cargo.toml +68 -0
- eggfetch-0.1.0/crates/eggfetch-core/README.md +280 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/auth.rs +640 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/body.rs +767 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/client.rs +911 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/compression.rs +875 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/config.rs +15 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/cookie.rs +1476 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/error.rs +368 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/h2_headers.rs +138 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/headers.rs +258 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/http_version.rs +187 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/lib.rs +81 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/limits.rs +148 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/multipart.rs +1383 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/pipeline.rs +872 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/pool.rs +819 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/proxy.rs +986 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/redact.rs +188 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/redirect.rs +509 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/request.rs +469 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/response.rs +472 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/response_decode.rs +54 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/retry.rs +1126 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/stream/mod.rs +7 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/stream/read_timeout.rs +132 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/stream/write_timeout.rs +115 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/timeout.rs +590 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/tls.rs +902 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/transport/connect.rs +284 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/transport/connect_timeout.rs +144 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/transport/direct.rs +139 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/transport/http3.rs +261 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/transport/mod.rs +33 -0
- eggfetch-0.1.0/crates/eggfetch-core/src/transport/proxy.rs +418 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/adverse_tests.rs +1049 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/cross_feature_tests.rs +1638 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/h3_integration.rs +345 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/http2_tests.rs +419 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/http3_tests.rs +270 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/integration.rs +1789 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/pool_tests.rs +604 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/proxy_tests.rs +1634 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/resource_stabilization.rs +268 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/retry_integration.rs +289 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/test_server.rs +389 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/timeout_tests.rs +483 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/tls_fixtures.rs +268 -0
- eggfetch-0.1.0/crates/eggfetch-core/tests/tls_integration.rs +248 -0
- eggfetch-0.1.0/crates/eggfetch-python/Cargo.toml +33 -0
- eggfetch-0.1.0/crates/eggfetch-python/README.md +280 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/async_client.rs +891 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/auth.rs +143 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/client.rs +905 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/conversion.rs +281 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/cookies.rs +309 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/errors.rs +306 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/headers.rs +147 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/lib.rs +761 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/limits.rs +82 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/multipart.rs +345 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/proxy.rs +63 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/response.rs +354 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/retry.rs +222 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/streaming.rs +1604 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/timeout.rs +133 -0
- eggfetch-0.1.0/crates/eggfetch-python/src/tls.rs +54 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/__init__.py +0 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/conftest.py +84 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/fixtures.py +620 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/native_fixtures.py +354 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_asgi.py +233 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_auth.py +1357 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_auth_replay.py +204 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_backends.py +290 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_behavior_cases.py +261 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_client.py +362 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_config_objects.py +240 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_cookies.py +174 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_downstream_portfolio.py +311 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_downstream_runner_negative.py +236 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_environment.py +146 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_exceptions.py +222 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_extensions.py +221 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_headers.py +202 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_hook_auth_ordering.py +172 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_hooks.py +306 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_httpx_extras.py +31 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_httpx_required.py +349 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_imports.py +54 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_lifecycle.py +400 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_lossy_conversions.py +161 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_merge_lossless.py +119 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_merge_matrix.py +151 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_mock_transport.py +163 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_mounts.py +449 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_native_proxy_tls.py +280 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_native_timeout_classification.py +237 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_oracle_negative.py +335 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_request.py +174 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_request_streaming.py +119 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_resource_assertions.py +335 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_response.py +209 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_response_streaming.py +231 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_shutdown.py +583 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_soak.py +206 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_stream_resources.py +283 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_timeout_integration.py +329 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_timeout_proxysis.py +263 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_transports.py +137 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_url_query.py +428 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/compat/test_wsgi.py +90 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/conftest.py +24 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_async.py +589 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_auth.py +518 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_close_races.py +277 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_cookie_auth.py +298 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_cookies.py +532 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_differential.py +834 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_http2.py +132 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_interpreter_shutdown.py +136 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_parity.py +885 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_proxy.py +291 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_redirects.py +313 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_response_compat.py +583 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_retry.py +312 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_streaming.py +716 -0
- eggfetch-0.1.0/crates/eggfetch-python/tests/test_sync.py +483 -0
- eggfetch-0.1.0/pyproject.toml +40 -0
- eggfetch-0.1.0/python/eggfetch/__init__.py +132 -0
- eggfetch-0.1.0/python/eggfetch/compat/__init__.py +3 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/__init__.py +231 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_asgi.py +173 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_auth.py +455 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_client.py +1168 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_cookies.py +121 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_diagnostics.py +46 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_exceptions.py +185 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_headers.py +184 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_limits.py +53 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_mock.py +119 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_proxy.py +70 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_request.py +292 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_response.py +497 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_status_codes.py +80 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_stream.py +48 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_timeout.py +124 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_transports.py +288 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_urls.py +391 -0
- eggfetch-0.1.0/python/eggfetch/compat/httpx/_wsgi.py +160 -0
|
@@ -0,0 +1,2672 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
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 = "aho-corasick"
|
|
13
|
+
version = "1.1.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "alloc-no-stdlib"
|
|
22
|
+
version = "2.0.4"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "alloc-stdlib"
|
|
28
|
+
version = "0.2.4"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"alloc-no-stdlib",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anes"
|
|
37
|
+
version = "0.1.6"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstream"
|
|
43
|
+
version = "1.0.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"anstyle",
|
|
48
|
+
"anstyle-parse",
|
|
49
|
+
"anstyle-query",
|
|
50
|
+
"anstyle-wincon",
|
|
51
|
+
"colorchoice",
|
|
52
|
+
"is_terminal_polyfill",
|
|
53
|
+
"utf8parse",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstyle"
|
|
58
|
+
version = "1.0.14"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "anstyle-parse"
|
|
64
|
+
version = "1.0.0"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"utf8parse",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "anstyle-query"
|
|
73
|
+
version = "1.1.5"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"windows-sys 0.61.2",
|
|
78
|
+
]
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "anstyle-wincon"
|
|
82
|
+
version = "3.0.11"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
85
|
+
dependencies = [
|
|
86
|
+
"anstyle",
|
|
87
|
+
"once_cell_polyfill",
|
|
88
|
+
"windows-sys 0.61.2",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "anyhow"
|
|
93
|
+
version = "1.0.103"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "async-compression"
|
|
99
|
+
version = "0.4.42"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"compression-codecs",
|
|
104
|
+
"compression-core",
|
|
105
|
+
"pin-project-lite",
|
|
106
|
+
"tokio",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "atomic-waker"
|
|
111
|
+
version = "1.1.2"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "autocfg"
|
|
117
|
+
version = "1.5.1"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "base64"
|
|
123
|
+
version = "0.22.1"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "base64ct"
|
|
129
|
+
version = "1.8.3"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "bit-set"
|
|
135
|
+
version = "0.5.3"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
|
138
|
+
dependencies = [
|
|
139
|
+
"bit-vec",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "bit-vec"
|
|
144
|
+
version = "0.6.3"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "bitflags"
|
|
150
|
+
version = "2.13.0"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "brotli"
|
|
156
|
+
version = "8.0.4"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"alloc-no-stdlib",
|
|
161
|
+
"alloc-stdlib",
|
|
162
|
+
"brotli-decompressor",
|
|
163
|
+
]
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "brotli-decompressor"
|
|
167
|
+
version = "5.0.3"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"alloc-no-stdlib",
|
|
172
|
+
"alloc-stdlib",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "bumpalo"
|
|
177
|
+
version = "3.20.3"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "bytes"
|
|
183
|
+
version = "1.12.1"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "cast"
|
|
189
|
+
version = "0.3.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "cc"
|
|
195
|
+
version = "1.2.66"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
|
|
198
|
+
dependencies = [
|
|
199
|
+
"find-msvc-tools",
|
|
200
|
+
"jobserver",
|
|
201
|
+
"libc",
|
|
202
|
+
"shlex",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "cfg-if"
|
|
207
|
+
version = "1.0.4"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "cfg_aliases"
|
|
213
|
+
version = "0.2.1"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "chacha20"
|
|
219
|
+
version = "0.10.1"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"cfg-if",
|
|
224
|
+
"cpufeatures",
|
|
225
|
+
"rand_core 0.10.1",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "ciborium"
|
|
230
|
+
version = "0.2.2"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"ciborium-io",
|
|
235
|
+
"ciborium-ll",
|
|
236
|
+
"serde",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "ciborium-io"
|
|
241
|
+
version = "0.2.2"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "ciborium-ll"
|
|
247
|
+
version = "0.2.2"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"ciborium-io",
|
|
252
|
+
"half",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "clap"
|
|
257
|
+
version = "4.6.1"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"clap_builder",
|
|
262
|
+
"clap_derive",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "clap_builder"
|
|
267
|
+
version = "4.6.0"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"anstream",
|
|
272
|
+
"anstyle",
|
|
273
|
+
"clap_lex",
|
|
274
|
+
"strsim",
|
|
275
|
+
"terminal_size",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "clap_complete"
|
|
280
|
+
version = "4.6.7"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "db8b397918185f0161ff3d6fcaa9e4bfc09b8367caf6e1d4a2848e5477ed027b"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"clap",
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "clap_derive"
|
|
289
|
+
version = "4.6.1"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
292
|
+
dependencies = [
|
|
293
|
+
"heck",
|
|
294
|
+
"proc-macro2",
|
|
295
|
+
"quote",
|
|
296
|
+
"syn",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "clap_lex"
|
|
301
|
+
version = "1.1.0"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "colorchoice"
|
|
307
|
+
version = "1.0.5"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "compression-codecs"
|
|
313
|
+
version = "0.4.38"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"brotli",
|
|
318
|
+
"compression-core",
|
|
319
|
+
"flate2",
|
|
320
|
+
"memchr",
|
|
321
|
+
"zstd",
|
|
322
|
+
"zstd-safe",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "compression-core"
|
|
327
|
+
version = "0.4.32"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "convert_case"
|
|
333
|
+
version = "0.6.0"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"unicode-segmentation",
|
|
338
|
+
]
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "cookie"
|
|
342
|
+
version = "0.18.1"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"percent-encoding",
|
|
347
|
+
"time",
|
|
348
|
+
"version_check",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "core-foundation"
|
|
353
|
+
version = "0.10.1"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"core-foundation-sys",
|
|
358
|
+
"libc",
|
|
359
|
+
]
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "core-foundation-sys"
|
|
363
|
+
version = "0.8.7"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "cpufeatures"
|
|
369
|
+
version = "0.3.0"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"libc",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "crc32fast"
|
|
378
|
+
version = "1.5.0"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"cfg-if",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "criterion"
|
|
387
|
+
version = "0.5.1"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"anes",
|
|
392
|
+
"cast",
|
|
393
|
+
"ciborium",
|
|
394
|
+
"clap",
|
|
395
|
+
"criterion-plot",
|
|
396
|
+
"futures",
|
|
397
|
+
"is-terminal",
|
|
398
|
+
"itertools",
|
|
399
|
+
"num-traits",
|
|
400
|
+
"once_cell",
|
|
401
|
+
"oorandom",
|
|
402
|
+
"plotters",
|
|
403
|
+
"rayon",
|
|
404
|
+
"regex",
|
|
405
|
+
"serde",
|
|
406
|
+
"serde_derive",
|
|
407
|
+
"serde_json",
|
|
408
|
+
"tinytemplate",
|
|
409
|
+
"tokio",
|
|
410
|
+
"walkdir",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "criterion-plot"
|
|
415
|
+
version = "0.5.0"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"cast",
|
|
420
|
+
"itertools",
|
|
421
|
+
]
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "crossbeam-deque"
|
|
425
|
+
version = "0.8.7"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
428
|
+
dependencies = [
|
|
429
|
+
"crossbeam-epoch",
|
|
430
|
+
"crossbeam-utils",
|
|
431
|
+
]
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "crossbeam-epoch"
|
|
435
|
+
version = "0.9.20"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"crossbeam-utils",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "crossbeam-utils"
|
|
444
|
+
version = "0.8.22"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "crunchy"
|
|
450
|
+
version = "0.2.4"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "ctor"
|
|
456
|
+
version = "0.2.9"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
459
|
+
dependencies = [
|
|
460
|
+
"quote",
|
|
461
|
+
"syn",
|
|
462
|
+
]
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "dashmap"
|
|
466
|
+
version = "6.2.1"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
|
|
469
|
+
dependencies = [
|
|
470
|
+
"cfg-if",
|
|
471
|
+
"crossbeam-utils",
|
|
472
|
+
"hashbrown 0.14.5",
|
|
473
|
+
"lock_api",
|
|
474
|
+
"once_cell",
|
|
475
|
+
"parking_lot_core",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "deranged"
|
|
480
|
+
version = "0.5.8"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "displaydoc"
|
|
486
|
+
version = "0.2.6"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"proc-macro2",
|
|
491
|
+
"quote",
|
|
492
|
+
"syn",
|
|
493
|
+
]
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "eggfetch-bench"
|
|
497
|
+
version = "0.1.0"
|
|
498
|
+
dependencies = [
|
|
499
|
+
"bytes",
|
|
500
|
+
"criterion",
|
|
501
|
+
"eggfetch-core",
|
|
502
|
+
"flate2",
|
|
503
|
+
"futures-core",
|
|
504
|
+
"futures-util",
|
|
505
|
+
"http",
|
|
506
|
+
"tokio",
|
|
507
|
+
"url",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "eggfetch-cli"
|
|
512
|
+
version = "0.1.0"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"anyhow",
|
|
515
|
+
"bytes",
|
|
516
|
+
"clap",
|
|
517
|
+
"clap_complete",
|
|
518
|
+
"eggfetch-core",
|
|
519
|
+
"flate2",
|
|
520
|
+
"futures-util",
|
|
521
|
+
"http",
|
|
522
|
+
"serde_json",
|
|
523
|
+
"tempfile",
|
|
524
|
+
"tokio",
|
|
525
|
+
]
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "eggfetch-core"
|
|
529
|
+
version = "0.1.0"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"async-compression",
|
|
532
|
+
"base64",
|
|
533
|
+
"bytes",
|
|
534
|
+
"cookie",
|
|
535
|
+
"dashmap",
|
|
536
|
+
"flate2",
|
|
537
|
+
"futures-core",
|
|
538
|
+
"futures-util",
|
|
539
|
+
"getrandom 0.2.17",
|
|
540
|
+
"h3",
|
|
541
|
+
"h3-quinn",
|
|
542
|
+
"http",
|
|
543
|
+
"http-body",
|
|
544
|
+
"http-body-util",
|
|
545
|
+
"httparse",
|
|
546
|
+
"httpdate",
|
|
547
|
+
"hyper",
|
|
548
|
+
"hyper-rustls",
|
|
549
|
+
"hyper-util",
|
|
550
|
+
"pem-rfc7468",
|
|
551
|
+
"pin-project-lite",
|
|
552
|
+
"proptest",
|
|
553
|
+
"quinn",
|
|
554
|
+
"rcgen",
|
|
555
|
+
"rustls",
|
|
556
|
+
"tempfile",
|
|
557
|
+
"thiserror",
|
|
558
|
+
"tokio",
|
|
559
|
+
"tokio-rustls",
|
|
560
|
+
"tokio-util",
|
|
561
|
+
"tower-service",
|
|
562
|
+
"url",
|
|
563
|
+
"webpki-roots 0.26.11",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "eggfetch-ffi"
|
|
568
|
+
version = "0.1.0"
|
|
569
|
+
dependencies = [
|
|
570
|
+
"bytes",
|
|
571
|
+
"eggfetch-core",
|
|
572
|
+
"futures-util",
|
|
573
|
+
"http",
|
|
574
|
+
"tokio",
|
|
575
|
+
"url",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "eggfetch-node"
|
|
580
|
+
version = "0.1.0"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"eggfetch-ffi",
|
|
583
|
+
"napi",
|
|
584
|
+
"napi-build",
|
|
585
|
+
"napi-derive",
|
|
586
|
+
"serde",
|
|
587
|
+
"serde_json",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "eggfetch-python"
|
|
592
|
+
version = "0.1.0"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"bytes",
|
|
595
|
+
"eggfetch-core",
|
|
596
|
+
"encoding_rs",
|
|
597
|
+
"futures-util",
|
|
598
|
+
"http",
|
|
599
|
+
"pyo3",
|
|
600
|
+
"pyo3-async-runtimes",
|
|
601
|
+
"pyo3-build-config",
|
|
602
|
+
"tokio",
|
|
603
|
+
"url",
|
|
604
|
+
]
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "either"
|
|
608
|
+
version = "1.16.0"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "encoding_rs"
|
|
614
|
+
version = "0.8.35"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"cfg-if",
|
|
619
|
+
]
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "equivalent"
|
|
623
|
+
version = "1.0.2"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "errno"
|
|
629
|
+
version = "0.3.14"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"libc",
|
|
634
|
+
"windows-sys 0.61.2",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "fastrand"
|
|
639
|
+
version = "2.4.1"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "find-msvc-tools"
|
|
645
|
+
version = "0.1.9"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "flate2"
|
|
651
|
+
version = "1.1.9"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"crc32fast",
|
|
656
|
+
"miniz_oxide",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "fnv"
|
|
661
|
+
version = "1.0.7"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "form_urlencoded"
|
|
667
|
+
version = "1.2.2"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
670
|
+
dependencies = [
|
|
671
|
+
"percent-encoding",
|
|
672
|
+
]
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "futures"
|
|
676
|
+
version = "0.3.32"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
679
|
+
dependencies = [
|
|
680
|
+
"futures-channel",
|
|
681
|
+
"futures-core",
|
|
682
|
+
"futures-executor",
|
|
683
|
+
"futures-io",
|
|
684
|
+
"futures-sink",
|
|
685
|
+
"futures-task",
|
|
686
|
+
"futures-util",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "futures-channel"
|
|
691
|
+
version = "0.3.32"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"futures-core",
|
|
696
|
+
"futures-sink",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "futures-core"
|
|
701
|
+
version = "0.3.32"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "futures-executor"
|
|
707
|
+
version = "0.3.32"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"futures-core",
|
|
712
|
+
"futures-task",
|
|
713
|
+
"futures-util",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "futures-io"
|
|
718
|
+
version = "0.3.32"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "futures-macro"
|
|
724
|
+
version = "0.3.32"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
727
|
+
dependencies = [
|
|
728
|
+
"proc-macro2",
|
|
729
|
+
"quote",
|
|
730
|
+
"syn",
|
|
731
|
+
]
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "futures-sink"
|
|
735
|
+
version = "0.3.32"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
738
|
+
|
|
739
|
+
[[package]]
|
|
740
|
+
name = "futures-task"
|
|
741
|
+
version = "0.3.32"
|
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "futures-util"
|
|
747
|
+
version = "0.3.32"
|
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
750
|
+
dependencies = [
|
|
751
|
+
"futures-channel",
|
|
752
|
+
"futures-core",
|
|
753
|
+
"futures-io",
|
|
754
|
+
"futures-macro",
|
|
755
|
+
"futures-sink",
|
|
756
|
+
"futures-task",
|
|
757
|
+
"memchr",
|
|
758
|
+
"pin-project-lite",
|
|
759
|
+
"slab",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "getrandom"
|
|
764
|
+
version = "0.2.17"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"cfg-if",
|
|
769
|
+
"js-sys",
|
|
770
|
+
"libc",
|
|
771
|
+
"wasi",
|
|
772
|
+
"wasm-bindgen",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "getrandom"
|
|
777
|
+
version = "0.4.3"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
780
|
+
dependencies = [
|
|
781
|
+
"cfg-if",
|
|
782
|
+
"js-sys",
|
|
783
|
+
"libc",
|
|
784
|
+
"r-efi",
|
|
785
|
+
"rand_core 0.10.1",
|
|
786
|
+
"wasm-bindgen",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "h2"
|
|
791
|
+
version = "0.4.15"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"atomic-waker",
|
|
796
|
+
"bytes",
|
|
797
|
+
"fnv",
|
|
798
|
+
"futures-core",
|
|
799
|
+
"futures-sink",
|
|
800
|
+
"http",
|
|
801
|
+
"indexmap",
|
|
802
|
+
"slab",
|
|
803
|
+
"tokio",
|
|
804
|
+
"tokio-util",
|
|
805
|
+
"tracing",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "h3"
|
|
810
|
+
version = "0.0.8"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "10872b55cfb02a821b69dc7cf8dc6a71d6af25eb9a79662bec4a9d016056b3be"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"bytes",
|
|
815
|
+
"fastrand",
|
|
816
|
+
"futures-util",
|
|
817
|
+
"http",
|
|
818
|
+
"pin-project-lite",
|
|
819
|
+
"tokio",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "h3-quinn"
|
|
824
|
+
version = "0.0.10"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "8b2e732c8d91a74731663ac8479ab505042fbf547b9a207213ab7fbcbfc4f8b4"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"bytes",
|
|
829
|
+
"futures",
|
|
830
|
+
"h3",
|
|
831
|
+
"quinn",
|
|
832
|
+
"tokio",
|
|
833
|
+
"tokio-util",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "half"
|
|
838
|
+
version = "2.7.1"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"cfg-if",
|
|
843
|
+
"crunchy",
|
|
844
|
+
"zerocopy",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "hashbrown"
|
|
849
|
+
version = "0.14.5"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "hashbrown"
|
|
855
|
+
version = "0.17.1"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "heck"
|
|
861
|
+
version = "0.5.0"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "hermit-abi"
|
|
867
|
+
version = "0.5.2"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "http"
|
|
873
|
+
version = "1.4.2"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"bytes",
|
|
878
|
+
"itoa",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "http-body"
|
|
883
|
+
version = "1.0.1"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"bytes",
|
|
888
|
+
"http",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "http-body-util"
|
|
893
|
+
version = "0.1.3"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"bytes",
|
|
898
|
+
"futures-core",
|
|
899
|
+
"http",
|
|
900
|
+
"http-body",
|
|
901
|
+
"pin-project-lite",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "httparse"
|
|
906
|
+
version = "1.10.1"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "httpdate"
|
|
912
|
+
version = "1.0.3"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
915
|
+
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "hyper"
|
|
918
|
+
version = "1.10.1"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
921
|
+
dependencies = [
|
|
922
|
+
"atomic-waker",
|
|
923
|
+
"bytes",
|
|
924
|
+
"futures-channel",
|
|
925
|
+
"futures-core",
|
|
926
|
+
"h2",
|
|
927
|
+
"http",
|
|
928
|
+
"http-body",
|
|
929
|
+
"httparse",
|
|
930
|
+
"itoa",
|
|
931
|
+
"pin-project-lite",
|
|
932
|
+
"smallvec",
|
|
933
|
+
"tokio",
|
|
934
|
+
"want",
|
|
935
|
+
]
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "hyper-rustls"
|
|
939
|
+
version = "0.27.9"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"http",
|
|
944
|
+
"hyper",
|
|
945
|
+
"hyper-util",
|
|
946
|
+
"log",
|
|
947
|
+
"rustls",
|
|
948
|
+
"rustls-native-certs",
|
|
949
|
+
"tokio",
|
|
950
|
+
"tokio-rustls",
|
|
951
|
+
"tower-service",
|
|
952
|
+
"webpki-roots 1.0.8",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "hyper-util"
|
|
957
|
+
version = "0.1.20"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"bytes",
|
|
962
|
+
"futures-channel",
|
|
963
|
+
"futures-util",
|
|
964
|
+
"http",
|
|
965
|
+
"http-body",
|
|
966
|
+
"hyper",
|
|
967
|
+
"libc",
|
|
968
|
+
"pin-project-lite",
|
|
969
|
+
"socket2",
|
|
970
|
+
"tokio",
|
|
971
|
+
"tower-service",
|
|
972
|
+
"tracing",
|
|
973
|
+
]
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "icu_collections"
|
|
977
|
+
version = "2.2.0"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
980
|
+
dependencies = [
|
|
981
|
+
"displaydoc",
|
|
982
|
+
"potential_utf",
|
|
983
|
+
"utf8_iter",
|
|
984
|
+
"yoke",
|
|
985
|
+
"zerofrom",
|
|
986
|
+
"zerovec",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "icu_locale_core"
|
|
991
|
+
version = "2.2.0"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
994
|
+
dependencies = [
|
|
995
|
+
"displaydoc",
|
|
996
|
+
"litemap",
|
|
997
|
+
"tinystr",
|
|
998
|
+
"writeable",
|
|
999
|
+
"zerovec",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "icu_normalizer"
|
|
1004
|
+
version = "2.2.0"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"icu_collections",
|
|
1009
|
+
"icu_normalizer_data",
|
|
1010
|
+
"icu_properties",
|
|
1011
|
+
"icu_provider",
|
|
1012
|
+
"smallvec",
|
|
1013
|
+
"zerovec",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "icu_normalizer_data"
|
|
1018
|
+
version = "2.2.0"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "icu_properties"
|
|
1024
|
+
version = "2.2.0"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1027
|
+
dependencies = [
|
|
1028
|
+
"icu_collections",
|
|
1029
|
+
"icu_locale_core",
|
|
1030
|
+
"icu_properties_data",
|
|
1031
|
+
"icu_provider",
|
|
1032
|
+
"zerotrie",
|
|
1033
|
+
"zerovec",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "icu_properties_data"
|
|
1038
|
+
version = "2.2.0"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "icu_provider"
|
|
1044
|
+
version = "2.2.0"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1047
|
+
dependencies = [
|
|
1048
|
+
"displaydoc",
|
|
1049
|
+
"icu_locale_core",
|
|
1050
|
+
"writeable",
|
|
1051
|
+
"yoke",
|
|
1052
|
+
"zerofrom",
|
|
1053
|
+
"zerotrie",
|
|
1054
|
+
"zerovec",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "idna"
|
|
1059
|
+
version = "1.1.0"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1062
|
+
dependencies = [
|
|
1063
|
+
"idna_adapter",
|
|
1064
|
+
"smallvec",
|
|
1065
|
+
"utf8_iter",
|
|
1066
|
+
]
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "idna_adapter"
|
|
1070
|
+
version = "1.2.2"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"icu_normalizer",
|
|
1075
|
+
"icu_properties",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "indexmap"
|
|
1080
|
+
version = "2.14.0"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"equivalent",
|
|
1085
|
+
"hashbrown 0.17.1",
|
|
1086
|
+
]
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "indoc"
|
|
1090
|
+
version = "2.0.7"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1093
|
+
dependencies = [
|
|
1094
|
+
"rustversion",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "is-terminal"
|
|
1099
|
+
version = "0.4.17"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"hermit-abi",
|
|
1104
|
+
"libc",
|
|
1105
|
+
"windows-sys 0.61.2",
|
|
1106
|
+
]
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "is_terminal_polyfill"
|
|
1110
|
+
version = "1.70.2"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "itertools"
|
|
1116
|
+
version = "0.10.5"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1119
|
+
dependencies = [
|
|
1120
|
+
"either",
|
|
1121
|
+
]
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "itoa"
|
|
1125
|
+
version = "1.0.18"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "jobserver"
|
|
1131
|
+
version = "0.1.35"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"getrandom 0.4.3",
|
|
1136
|
+
"libc",
|
|
1137
|
+
]
|
|
1138
|
+
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "js-sys"
|
|
1141
|
+
version = "0.3.103"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
1144
|
+
dependencies = [
|
|
1145
|
+
"cfg-if",
|
|
1146
|
+
"futures-util",
|
|
1147
|
+
"wasm-bindgen",
|
|
1148
|
+
]
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "lazy_static"
|
|
1152
|
+
version = "1.5.0"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1155
|
+
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "libc"
|
|
1158
|
+
version = "0.2.186"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "libloading"
|
|
1164
|
+
version = "0.8.9"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"cfg-if",
|
|
1169
|
+
"windows-link",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "libm"
|
|
1174
|
+
version = "0.2.16"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "linux-raw-sys"
|
|
1180
|
+
version = "0.12.1"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "litemap"
|
|
1186
|
+
version = "0.8.2"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "lock_api"
|
|
1192
|
+
version = "0.4.14"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1195
|
+
dependencies = [
|
|
1196
|
+
"scopeguard",
|
|
1197
|
+
]
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "log"
|
|
1201
|
+
version = "0.4.33"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "lru-slab"
|
|
1207
|
+
version = "0.1.2"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "memchr"
|
|
1213
|
+
version = "2.8.3"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "memoffset"
|
|
1219
|
+
version = "0.9.1"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"autocfg",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "miniz_oxide"
|
|
1228
|
+
version = "0.8.9"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"adler2",
|
|
1233
|
+
"simd-adler32",
|
|
1234
|
+
]
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "mio"
|
|
1238
|
+
version = "1.2.1"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
1241
|
+
dependencies = [
|
|
1242
|
+
"libc",
|
|
1243
|
+
"wasi",
|
|
1244
|
+
"windows-sys 0.61.2",
|
|
1245
|
+
]
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "napi"
|
|
1249
|
+
version = "2.16.17"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
1252
|
+
dependencies = [
|
|
1253
|
+
"bitflags",
|
|
1254
|
+
"ctor",
|
|
1255
|
+
"napi-derive",
|
|
1256
|
+
"napi-sys",
|
|
1257
|
+
"once_cell",
|
|
1258
|
+
"serde",
|
|
1259
|
+
"serde_json",
|
|
1260
|
+
"tokio",
|
|
1261
|
+
]
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "napi-build"
|
|
1265
|
+
version = "2.3.2"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
|
|
1268
|
+
|
|
1269
|
+
[[package]]
|
|
1270
|
+
name = "napi-derive"
|
|
1271
|
+
version = "2.16.13"
|
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1273
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
1274
|
+
dependencies = [
|
|
1275
|
+
"cfg-if",
|
|
1276
|
+
"convert_case",
|
|
1277
|
+
"napi-derive-backend",
|
|
1278
|
+
"proc-macro2",
|
|
1279
|
+
"quote",
|
|
1280
|
+
"syn",
|
|
1281
|
+
]
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "napi-derive-backend"
|
|
1285
|
+
version = "1.0.75"
|
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
1288
|
+
dependencies = [
|
|
1289
|
+
"convert_case",
|
|
1290
|
+
"once_cell",
|
|
1291
|
+
"proc-macro2",
|
|
1292
|
+
"quote",
|
|
1293
|
+
"regex",
|
|
1294
|
+
"semver",
|
|
1295
|
+
"syn",
|
|
1296
|
+
]
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "napi-sys"
|
|
1300
|
+
version = "2.4.0"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"libloading",
|
|
1305
|
+
]
|
|
1306
|
+
|
|
1307
|
+
[[package]]
|
|
1308
|
+
name = "num-conv"
|
|
1309
|
+
version = "0.2.2"
|
|
1310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1311
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "num-traits"
|
|
1315
|
+
version = "0.2.19"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1318
|
+
dependencies = [
|
|
1319
|
+
"autocfg",
|
|
1320
|
+
"libm",
|
|
1321
|
+
]
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "once_cell"
|
|
1325
|
+
version = "1.21.4"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1328
|
+
|
|
1329
|
+
[[package]]
|
|
1330
|
+
name = "once_cell_polyfill"
|
|
1331
|
+
version = "1.70.2"
|
|
1332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1334
|
+
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "oorandom"
|
|
1337
|
+
version = "11.1.5"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1340
|
+
|
|
1341
|
+
[[package]]
|
|
1342
|
+
name = "openssl-probe"
|
|
1343
|
+
version = "0.2.1"
|
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "parking_lot_core"
|
|
1349
|
+
version = "0.9.12"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1352
|
+
dependencies = [
|
|
1353
|
+
"cfg-if",
|
|
1354
|
+
"libc",
|
|
1355
|
+
"redox_syscall",
|
|
1356
|
+
"smallvec",
|
|
1357
|
+
"windows-link",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "pem"
|
|
1362
|
+
version = "3.0.6"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"base64",
|
|
1367
|
+
"serde_core",
|
|
1368
|
+
]
|
|
1369
|
+
|
|
1370
|
+
[[package]]
|
|
1371
|
+
name = "pem-rfc7468"
|
|
1372
|
+
version = "0.1.1"
|
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
+
checksum = "801ef81ab8a21fdd738a9de457509b5c0aef72efa93ffdfc80f3329a1588405b"
|
|
1375
|
+
dependencies = [
|
|
1376
|
+
"base64ct",
|
|
1377
|
+
]
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "percent-encoding"
|
|
1381
|
+
version = "2.3.2"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "pin-project-lite"
|
|
1387
|
+
version = "0.2.17"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "pkg-config"
|
|
1393
|
+
version = "0.3.33"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "plotters"
|
|
1399
|
+
version = "0.3.7"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"num-traits",
|
|
1404
|
+
"plotters-backend",
|
|
1405
|
+
"plotters-svg",
|
|
1406
|
+
"wasm-bindgen",
|
|
1407
|
+
"web-sys",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "plotters-backend"
|
|
1412
|
+
version = "0.3.7"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "plotters-svg"
|
|
1418
|
+
version = "0.3.7"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
1421
|
+
dependencies = [
|
|
1422
|
+
"plotters-backend",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "portable-atomic"
|
|
1427
|
+
version = "1.13.1"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "potential_utf"
|
|
1433
|
+
version = "0.1.5"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"zerovec",
|
|
1438
|
+
]
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "powerfmt"
|
|
1442
|
+
version = "0.2.0"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1445
|
+
|
|
1446
|
+
[[package]]
|
|
1447
|
+
name = "ppv-lite86"
|
|
1448
|
+
version = "0.2.21"
|
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1451
|
+
dependencies = [
|
|
1452
|
+
"zerocopy",
|
|
1453
|
+
]
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "proc-macro2"
|
|
1457
|
+
version = "1.0.106"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1460
|
+
dependencies = [
|
|
1461
|
+
"unicode-ident",
|
|
1462
|
+
]
|
|
1463
|
+
|
|
1464
|
+
[[package]]
|
|
1465
|
+
name = "proptest"
|
|
1466
|
+
version = "1.5.0"
|
|
1467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
+
checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d"
|
|
1469
|
+
dependencies = [
|
|
1470
|
+
"bit-set",
|
|
1471
|
+
"bit-vec",
|
|
1472
|
+
"bitflags",
|
|
1473
|
+
"lazy_static",
|
|
1474
|
+
"num-traits",
|
|
1475
|
+
"rand 0.8.7",
|
|
1476
|
+
"rand_chacha",
|
|
1477
|
+
"rand_xorshift",
|
|
1478
|
+
"regex-syntax",
|
|
1479
|
+
"rusty-fork",
|
|
1480
|
+
"tempfile",
|
|
1481
|
+
"unarray",
|
|
1482
|
+
]
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "pyo3"
|
|
1486
|
+
version = "0.23.5"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
1489
|
+
dependencies = [
|
|
1490
|
+
"cfg-if",
|
|
1491
|
+
"indoc",
|
|
1492
|
+
"libc",
|
|
1493
|
+
"memoffset",
|
|
1494
|
+
"once_cell",
|
|
1495
|
+
"portable-atomic",
|
|
1496
|
+
"pyo3-build-config",
|
|
1497
|
+
"pyo3-ffi",
|
|
1498
|
+
"pyo3-macros",
|
|
1499
|
+
"unindent",
|
|
1500
|
+
]
|
|
1501
|
+
|
|
1502
|
+
[[package]]
|
|
1503
|
+
name = "pyo3-async-runtimes"
|
|
1504
|
+
version = "0.23.0"
|
|
1505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
+
checksum = "977dc837525cfd22919ba6a831413854beb7c99a256c03bf8624ad707e45810e"
|
|
1507
|
+
dependencies = [
|
|
1508
|
+
"futures",
|
|
1509
|
+
"once_cell",
|
|
1510
|
+
"pin-project-lite",
|
|
1511
|
+
"pyo3",
|
|
1512
|
+
"tokio",
|
|
1513
|
+
]
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "pyo3-build-config"
|
|
1517
|
+
version = "0.23.5"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
1520
|
+
dependencies = [
|
|
1521
|
+
"once_cell",
|
|
1522
|
+
"target-lexicon",
|
|
1523
|
+
]
|
|
1524
|
+
|
|
1525
|
+
[[package]]
|
|
1526
|
+
name = "pyo3-ffi"
|
|
1527
|
+
version = "0.23.5"
|
|
1528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
1530
|
+
dependencies = [
|
|
1531
|
+
"libc",
|
|
1532
|
+
"pyo3-build-config",
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "pyo3-macros"
|
|
1537
|
+
version = "0.23.5"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"proc-macro2",
|
|
1542
|
+
"pyo3-macros-backend",
|
|
1543
|
+
"quote",
|
|
1544
|
+
"syn",
|
|
1545
|
+
]
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "pyo3-macros-backend"
|
|
1549
|
+
version = "0.23.5"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
1552
|
+
dependencies = [
|
|
1553
|
+
"heck",
|
|
1554
|
+
"proc-macro2",
|
|
1555
|
+
"pyo3-build-config",
|
|
1556
|
+
"quote",
|
|
1557
|
+
"syn",
|
|
1558
|
+
]
|
|
1559
|
+
|
|
1560
|
+
[[package]]
|
|
1561
|
+
name = "quick-error"
|
|
1562
|
+
version = "1.2.3"
|
|
1563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "quinn"
|
|
1568
|
+
version = "0.11.11"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"bytes",
|
|
1573
|
+
"cfg_aliases",
|
|
1574
|
+
"futures-io",
|
|
1575
|
+
"pin-project-lite",
|
|
1576
|
+
"quinn-proto",
|
|
1577
|
+
"quinn-udp",
|
|
1578
|
+
"rustc-hash",
|
|
1579
|
+
"rustls",
|
|
1580
|
+
"socket2",
|
|
1581
|
+
"thiserror",
|
|
1582
|
+
"tokio",
|
|
1583
|
+
"tracing",
|
|
1584
|
+
"web-time",
|
|
1585
|
+
]
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "quinn-proto"
|
|
1589
|
+
version = "0.11.16"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
|
|
1592
|
+
dependencies = [
|
|
1593
|
+
"bytes",
|
|
1594
|
+
"getrandom 0.4.3",
|
|
1595
|
+
"lru-slab",
|
|
1596
|
+
"rand 0.10.2",
|
|
1597
|
+
"rand_pcg",
|
|
1598
|
+
"ring",
|
|
1599
|
+
"rustc-hash",
|
|
1600
|
+
"rustls",
|
|
1601
|
+
"rustls-pki-types",
|
|
1602
|
+
"slab",
|
|
1603
|
+
"thiserror",
|
|
1604
|
+
"tinyvec",
|
|
1605
|
+
"tracing",
|
|
1606
|
+
"web-time",
|
|
1607
|
+
]
|
|
1608
|
+
|
|
1609
|
+
[[package]]
|
|
1610
|
+
name = "quinn-udp"
|
|
1611
|
+
version = "0.5.15"
|
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
+
checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
|
|
1614
|
+
dependencies = [
|
|
1615
|
+
"cfg_aliases",
|
|
1616
|
+
"libc",
|
|
1617
|
+
"once_cell",
|
|
1618
|
+
"socket2",
|
|
1619
|
+
"tracing",
|
|
1620
|
+
"windows-sys 0.61.2",
|
|
1621
|
+
]
|
|
1622
|
+
|
|
1623
|
+
[[package]]
|
|
1624
|
+
name = "quote"
|
|
1625
|
+
version = "1.0.46"
|
|
1626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
1628
|
+
dependencies = [
|
|
1629
|
+
"proc-macro2",
|
|
1630
|
+
]
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "r-efi"
|
|
1634
|
+
version = "6.0.0"
|
|
1635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "rand"
|
|
1640
|
+
version = "0.8.7"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
|
|
1643
|
+
dependencies = [
|
|
1644
|
+
"libc",
|
|
1645
|
+
"rand_chacha",
|
|
1646
|
+
"rand_core 0.6.4",
|
|
1647
|
+
]
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "rand"
|
|
1651
|
+
version = "0.10.2"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"chacha20",
|
|
1656
|
+
"getrandom 0.4.3",
|
|
1657
|
+
"rand_core 0.10.1",
|
|
1658
|
+
]
|
|
1659
|
+
|
|
1660
|
+
[[package]]
|
|
1661
|
+
name = "rand_chacha"
|
|
1662
|
+
version = "0.3.1"
|
|
1663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1665
|
+
dependencies = [
|
|
1666
|
+
"ppv-lite86",
|
|
1667
|
+
"rand_core 0.6.4",
|
|
1668
|
+
]
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "rand_core"
|
|
1672
|
+
version = "0.6.4"
|
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1675
|
+
dependencies = [
|
|
1676
|
+
"getrandom 0.2.17",
|
|
1677
|
+
]
|
|
1678
|
+
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "rand_core"
|
|
1681
|
+
version = "0.10.1"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "rand_pcg"
|
|
1687
|
+
version = "0.10.2"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
|
|
1690
|
+
dependencies = [
|
|
1691
|
+
"rand_core 0.10.1",
|
|
1692
|
+
]
|
|
1693
|
+
|
|
1694
|
+
[[package]]
|
|
1695
|
+
name = "rand_xorshift"
|
|
1696
|
+
version = "0.3.0"
|
|
1697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
+
checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
|
|
1699
|
+
dependencies = [
|
|
1700
|
+
"rand_core 0.6.4",
|
|
1701
|
+
]
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "rayon"
|
|
1705
|
+
version = "1.12.0"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1708
|
+
dependencies = [
|
|
1709
|
+
"either",
|
|
1710
|
+
"rayon-core",
|
|
1711
|
+
]
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "rayon-core"
|
|
1715
|
+
version = "1.13.0"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1718
|
+
dependencies = [
|
|
1719
|
+
"crossbeam-deque",
|
|
1720
|
+
"crossbeam-utils",
|
|
1721
|
+
]
|
|
1722
|
+
|
|
1723
|
+
[[package]]
|
|
1724
|
+
name = "rcgen"
|
|
1725
|
+
version = "0.13.2"
|
|
1726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
|
+
checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2"
|
|
1728
|
+
dependencies = [
|
|
1729
|
+
"pem",
|
|
1730
|
+
"ring",
|
|
1731
|
+
"rustls-pki-types",
|
|
1732
|
+
"time",
|
|
1733
|
+
"yasna",
|
|
1734
|
+
]
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "redox_syscall"
|
|
1738
|
+
version = "0.5.18"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1741
|
+
dependencies = [
|
|
1742
|
+
"bitflags",
|
|
1743
|
+
]
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "regex"
|
|
1747
|
+
version = "1.13.0"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
|
|
1750
|
+
dependencies = [
|
|
1751
|
+
"aho-corasick",
|
|
1752
|
+
"memchr",
|
|
1753
|
+
"regex-automata",
|
|
1754
|
+
"regex-syntax",
|
|
1755
|
+
]
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "regex-automata"
|
|
1759
|
+
version = "0.4.15"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db"
|
|
1762
|
+
dependencies = [
|
|
1763
|
+
"aho-corasick",
|
|
1764
|
+
"memchr",
|
|
1765
|
+
"regex-syntax",
|
|
1766
|
+
]
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "regex-syntax"
|
|
1770
|
+
version = "0.8.11"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1773
|
+
|
|
1774
|
+
[[package]]
|
|
1775
|
+
name = "ring"
|
|
1776
|
+
version = "0.17.14"
|
|
1777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1779
|
+
dependencies = [
|
|
1780
|
+
"cc",
|
|
1781
|
+
"cfg-if",
|
|
1782
|
+
"getrandom 0.2.17",
|
|
1783
|
+
"libc",
|
|
1784
|
+
"untrusted",
|
|
1785
|
+
"windows-sys 0.52.0",
|
|
1786
|
+
]
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "rustc-hash"
|
|
1790
|
+
version = "2.1.3"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "rustix"
|
|
1796
|
+
version = "1.1.4"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1799
|
+
dependencies = [
|
|
1800
|
+
"bitflags",
|
|
1801
|
+
"errno",
|
|
1802
|
+
"libc",
|
|
1803
|
+
"linux-raw-sys",
|
|
1804
|
+
"windows-sys 0.61.2",
|
|
1805
|
+
]
|
|
1806
|
+
|
|
1807
|
+
[[package]]
|
|
1808
|
+
name = "rustls"
|
|
1809
|
+
version = "0.23.41"
|
|
1810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1811
|
+
checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
|
|
1812
|
+
dependencies = [
|
|
1813
|
+
"log",
|
|
1814
|
+
"once_cell",
|
|
1815
|
+
"ring",
|
|
1816
|
+
"rustls-pki-types",
|
|
1817
|
+
"rustls-webpki",
|
|
1818
|
+
"subtle",
|
|
1819
|
+
"zeroize",
|
|
1820
|
+
]
|
|
1821
|
+
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "rustls-native-certs"
|
|
1824
|
+
version = "0.8.4"
|
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
+
checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
|
|
1827
|
+
dependencies = [
|
|
1828
|
+
"openssl-probe",
|
|
1829
|
+
"rustls-pki-types",
|
|
1830
|
+
"schannel",
|
|
1831
|
+
"security-framework",
|
|
1832
|
+
]
|
|
1833
|
+
|
|
1834
|
+
[[package]]
|
|
1835
|
+
name = "rustls-pki-types"
|
|
1836
|
+
version = "1.15.0"
|
|
1837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
+
checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
|
|
1839
|
+
dependencies = [
|
|
1840
|
+
"web-time",
|
|
1841
|
+
"zeroize",
|
|
1842
|
+
]
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "rustls-webpki"
|
|
1846
|
+
version = "0.103.13"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1849
|
+
dependencies = [
|
|
1850
|
+
"ring",
|
|
1851
|
+
"rustls-pki-types",
|
|
1852
|
+
"untrusted",
|
|
1853
|
+
]
|
|
1854
|
+
|
|
1855
|
+
[[package]]
|
|
1856
|
+
name = "rustversion"
|
|
1857
|
+
version = "1.0.23"
|
|
1858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1860
|
+
|
|
1861
|
+
[[package]]
|
|
1862
|
+
name = "rusty-fork"
|
|
1863
|
+
version = "0.3.1"
|
|
1864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
1866
|
+
dependencies = [
|
|
1867
|
+
"fnv",
|
|
1868
|
+
"quick-error",
|
|
1869
|
+
"tempfile",
|
|
1870
|
+
"wait-timeout",
|
|
1871
|
+
]
|
|
1872
|
+
|
|
1873
|
+
[[package]]
|
|
1874
|
+
name = "same-file"
|
|
1875
|
+
version = "1.0.6"
|
|
1876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1877
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1878
|
+
dependencies = [
|
|
1879
|
+
"winapi-util",
|
|
1880
|
+
]
|
|
1881
|
+
|
|
1882
|
+
[[package]]
|
|
1883
|
+
name = "schannel"
|
|
1884
|
+
version = "0.1.29"
|
|
1885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1887
|
+
dependencies = [
|
|
1888
|
+
"windows-sys 0.61.2",
|
|
1889
|
+
]
|
|
1890
|
+
|
|
1891
|
+
[[package]]
|
|
1892
|
+
name = "scopeguard"
|
|
1893
|
+
version = "1.2.0"
|
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1896
|
+
|
|
1897
|
+
[[package]]
|
|
1898
|
+
name = "security-framework"
|
|
1899
|
+
version = "3.7.0"
|
|
1900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1902
|
+
dependencies = [
|
|
1903
|
+
"bitflags",
|
|
1904
|
+
"core-foundation",
|
|
1905
|
+
"core-foundation-sys",
|
|
1906
|
+
"libc",
|
|
1907
|
+
"security-framework-sys",
|
|
1908
|
+
]
|
|
1909
|
+
|
|
1910
|
+
[[package]]
|
|
1911
|
+
name = "security-framework-sys"
|
|
1912
|
+
version = "2.17.0"
|
|
1913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1914
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1915
|
+
dependencies = [
|
|
1916
|
+
"core-foundation-sys",
|
|
1917
|
+
"libc",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1920
|
+
[[package]]
|
|
1921
|
+
name = "semver"
|
|
1922
|
+
version = "1.0.28"
|
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1925
|
+
|
|
1926
|
+
[[package]]
|
|
1927
|
+
name = "serde"
|
|
1928
|
+
version = "1.0.228"
|
|
1929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1930
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1931
|
+
dependencies = [
|
|
1932
|
+
"serde_core",
|
|
1933
|
+
"serde_derive",
|
|
1934
|
+
]
|
|
1935
|
+
|
|
1936
|
+
[[package]]
|
|
1937
|
+
name = "serde_core"
|
|
1938
|
+
version = "1.0.228"
|
|
1939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1941
|
+
dependencies = [
|
|
1942
|
+
"serde_derive",
|
|
1943
|
+
]
|
|
1944
|
+
|
|
1945
|
+
[[package]]
|
|
1946
|
+
name = "serde_derive"
|
|
1947
|
+
version = "1.0.228"
|
|
1948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1950
|
+
dependencies = [
|
|
1951
|
+
"proc-macro2",
|
|
1952
|
+
"quote",
|
|
1953
|
+
"syn",
|
|
1954
|
+
]
|
|
1955
|
+
|
|
1956
|
+
[[package]]
|
|
1957
|
+
name = "serde_json"
|
|
1958
|
+
version = "1.0.150"
|
|
1959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1961
|
+
dependencies = [
|
|
1962
|
+
"itoa",
|
|
1963
|
+
"memchr",
|
|
1964
|
+
"serde",
|
|
1965
|
+
"serde_core",
|
|
1966
|
+
"zmij",
|
|
1967
|
+
]
|
|
1968
|
+
|
|
1969
|
+
[[package]]
|
|
1970
|
+
name = "shlex"
|
|
1971
|
+
version = "2.0.1"
|
|
1972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1974
|
+
|
|
1975
|
+
[[package]]
|
|
1976
|
+
name = "signal-hook-registry"
|
|
1977
|
+
version = "1.4.8"
|
|
1978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1980
|
+
dependencies = [
|
|
1981
|
+
"errno",
|
|
1982
|
+
"libc",
|
|
1983
|
+
]
|
|
1984
|
+
|
|
1985
|
+
[[package]]
|
|
1986
|
+
name = "simd-adler32"
|
|
1987
|
+
version = "0.3.9"
|
|
1988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1989
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1990
|
+
|
|
1991
|
+
[[package]]
|
|
1992
|
+
name = "slab"
|
|
1993
|
+
version = "0.4.12"
|
|
1994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1996
|
+
|
|
1997
|
+
[[package]]
|
|
1998
|
+
name = "smallvec"
|
|
1999
|
+
version = "1.15.2"
|
|
2000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
2002
|
+
|
|
2003
|
+
[[package]]
|
|
2004
|
+
name = "socket2"
|
|
2005
|
+
version = "0.6.4"
|
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
2008
|
+
dependencies = [
|
|
2009
|
+
"libc",
|
|
2010
|
+
"windows-sys 0.61.2",
|
|
2011
|
+
]
|
|
2012
|
+
|
|
2013
|
+
[[package]]
|
|
2014
|
+
name = "stable_deref_trait"
|
|
2015
|
+
version = "1.2.1"
|
|
2016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2017
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2018
|
+
|
|
2019
|
+
[[package]]
|
|
2020
|
+
name = "strsim"
|
|
2021
|
+
version = "0.11.1"
|
|
2022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2023
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2024
|
+
|
|
2025
|
+
[[package]]
|
|
2026
|
+
name = "subtle"
|
|
2027
|
+
version = "2.6.1"
|
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2030
|
+
|
|
2031
|
+
[[package]]
|
|
2032
|
+
name = "syn"
|
|
2033
|
+
version = "2.0.118"
|
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
2036
|
+
dependencies = [
|
|
2037
|
+
"proc-macro2",
|
|
2038
|
+
"quote",
|
|
2039
|
+
"unicode-ident",
|
|
2040
|
+
]
|
|
2041
|
+
|
|
2042
|
+
[[package]]
|
|
2043
|
+
name = "synstructure"
|
|
2044
|
+
version = "0.13.2"
|
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2047
|
+
dependencies = [
|
|
2048
|
+
"proc-macro2",
|
|
2049
|
+
"quote",
|
|
2050
|
+
"syn",
|
|
2051
|
+
]
|
|
2052
|
+
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "target-lexicon"
|
|
2055
|
+
version = "0.12.16"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
2058
|
+
|
|
2059
|
+
[[package]]
|
|
2060
|
+
name = "tempfile"
|
|
2061
|
+
version = "3.27.0"
|
|
2062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2063
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2064
|
+
dependencies = [
|
|
2065
|
+
"fastrand",
|
|
2066
|
+
"getrandom 0.4.3",
|
|
2067
|
+
"once_cell",
|
|
2068
|
+
"rustix",
|
|
2069
|
+
"windows-sys 0.61.2",
|
|
2070
|
+
]
|
|
2071
|
+
|
|
2072
|
+
[[package]]
|
|
2073
|
+
name = "terminal_size"
|
|
2074
|
+
version = "0.4.4"
|
|
2075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2076
|
+
checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
|
|
2077
|
+
dependencies = [
|
|
2078
|
+
"rustix",
|
|
2079
|
+
"windows-sys 0.61.2",
|
|
2080
|
+
]
|
|
2081
|
+
|
|
2082
|
+
[[package]]
|
|
2083
|
+
name = "thiserror"
|
|
2084
|
+
version = "2.0.18"
|
|
2085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2087
|
+
dependencies = [
|
|
2088
|
+
"thiserror-impl",
|
|
2089
|
+
]
|
|
2090
|
+
|
|
2091
|
+
[[package]]
|
|
2092
|
+
name = "thiserror-impl"
|
|
2093
|
+
version = "2.0.18"
|
|
2094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2096
|
+
dependencies = [
|
|
2097
|
+
"proc-macro2",
|
|
2098
|
+
"quote",
|
|
2099
|
+
"syn",
|
|
2100
|
+
]
|
|
2101
|
+
|
|
2102
|
+
[[package]]
|
|
2103
|
+
name = "time"
|
|
2104
|
+
version = "0.3.53"
|
|
2105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
+
checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50"
|
|
2107
|
+
dependencies = [
|
|
2108
|
+
"deranged",
|
|
2109
|
+
"num-conv",
|
|
2110
|
+
"powerfmt",
|
|
2111
|
+
"serde_core",
|
|
2112
|
+
"time-core",
|
|
2113
|
+
"time-macros",
|
|
2114
|
+
]
|
|
2115
|
+
|
|
2116
|
+
[[package]]
|
|
2117
|
+
name = "time-core"
|
|
2118
|
+
version = "0.1.9"
|
|
2119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2120
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
2121
|
+
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "time-macros"
|
|
2124
|
+
version = "0.2.31"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "c431b87111666e491a90baa837f914fb45cd5dc3c268591b0220ff5057f2085f"
|
|
2127
|
+
dependencies = [
|
|
2128
|
+
"num-conv",
|
|
2129
|
+
"time-core",
|
|
2130
|
+
]
|
|
2131
|
+
|
|
2132
|
+
[[package]]
|
|
2133
|
+
name = "tinystr"
|
|
2134
|
+
version = "0.8.3"
|
|
2135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2137
|
+
dependencies = [
|
|
2138
|
+
"displaydoc",
|
|
2139
|
+
"zerovec",
|
|
2140
|
+
]
|
|
2141
|
+
|
|
2142
|
+
[[package]]
|
|
2143
|
+
name = "tinytemplate"
|
|
2144
|
+
version = "1.2.1"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
2147
|
+
dependencies = [
|
|
2148
|
+
"serde",
|
|
2149
|
+
"serde_json",
|
|
2150
|
+
]
|
|
2151
|
+
|
|
2152
|
+
[[package]]
|
|
2153
|
+
name = "tinyvec"
|
|
2154
|
+
version = "1.12.0"
|
|
2155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
2157
|
+
dependencies = [
|
|
2158
|
+
"tinyvec_macros",
|
|
2159
|
+
]
|
|
2160
|
+
|
|
2161
|
+
[[package]]
|
|
2162
|
+
name = "tinyvec_macros"
|
|
2163
|
+
version = "0.1.1"
|
|
2164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2166
|
+
|
|
2167
|
+
[[package]]
|
|
2168
|
+
name = "tokio"
|
|
2169
|
+
version = "1.52.3"
|
|
2170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
2172
|
+
dependencies = [
|
|
2173
|
+
"bytes",
|
|
2174
|
+
"libc",
|
|
2175
|
+
"mio",
|
|
2176
|
+
"pin-project-lite",
|
|
2177
|
+
"signal-hook-registry",
|
|
2178
|
+
"socket2",
|
|
2179
|
+
"tokio-macros",
|
|
2180
|
+
"windows-sys 0.61.2",
|
|
2181
|
+
]
|
|
2182
|
+
|
|
2183
|
+
[[package]]
|
|
2184
|
+
name = "tokio-macros"
|
|
2185
|
+
version = "2.7.0"
|
|
2186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2187
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
2188
|
+
dependencies = [
|
|
2189
|
+
"proc-macro2",
|
|
2190
|
+
"quote",
|
|
2191
|
+
"syn",
|
|
2192
|
+
]
|
|
2193
|
+
|
|
2194
|
+
[[package]]
|
|
2195
|
+
name = "tokio-rustls"
|
|
2196
|
+
version = "0.26.4"
|
|
2197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2198
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2199
|
+
dependencies = [
|
|
2200
|
+
"rustls",
|
|
2201
|
+
"tokio",
|
|
2202
|
+
]
|
|
2203
|
+
|
|
2204
|
+
[[package]]
|
|
2205
|
+
name = "tokio-util"
|
|
2206
|
+
version = "0.7.18"
|
|
2207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2208
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
2209
|
+
dependencies = [
|
|
2210
|
+
"bytes",
|
|
2211
|
+
"futures-core",
|
|
2212
|
+
"futures-sink",
|
|
2213
|
+
"pin-project-lite",
|
|
2214
|
+
"tokio",
|
|
2215
|
+
]
|
|
2216
|
+
|
|
2217
|
+
[[package]]
|
|
2218
|
+
name = "tower-service"
|
|
2219
|
+
version = "0.3.3"
|
|
2220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2221
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2222
|
+
|
|
2223
|
+
[[package]]
|
|
2224
|
+
name = "tracing"
|
|
2225
|
+
version = "0.1.44"
|
|
2226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2228
|
+
dependencies = [
|
|
2229
|
+
"pin-project-lite",
|
|
2230
|
+
"tracing-core",
|
|
2231
|
+
]
|
|
2232
|
+
|
|
2233
|
+
[[package]]
|
|
2234
|
+
name = "tracing-core"
|
|
2235
|
+
version = "0.1.36"
|
|
2236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2238
|
+
dependencies = [
|
|
2239
|
+
"once_cell",
|
|
2240
|
+
]
|
|
2241
|
+
|
|
2242
|
+
[[package]]
|
|
2243
|
+
name = "try-lock"
|
|
2244
|
+
version = "0.2.5"
|
|
2245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2247
|
+
|
|
2248
|
+
[[package]]
|
|
2249
|
+
name = "unarray"
|
|
2250
|
+
version = "0.1.4"
|
|
2251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2252
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
2253
|
+
|
|
2254
|
+
[[package]]
|
|
2255
|
+
name = "unicode-ident"
|
|
2256
|
+
version = "1.0.24"
|
|
2257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2258
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2259
|
+
|
|
2260
|
+
[[package]]
|
|
2261
|
+
name = "unicode-segmentation"
|
|
2262
|
+
version = "1.13.3"
|
|
2263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2264
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
2265
|
+
|
|
2266
|
+
[[package]]
|
|
2267
|
+
name = "unindent"
|
|
2268
|
+
version = "0.2.4"
|
|
2269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2270
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
2271
|
+
|
|
2272
|
+
[[package]]
|
|
2273
|
+
name = "untrusted"
|
|
2274
|
+
version = "0.9.0"
|
|
2275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2277
|
+
|
|
2278
|
+
[[package]]
|
|
2279
|
+
name = "url"
|
|
2280
|
+
version = "2.5.8"
|
|
2281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2283
|
+
dependencies = [
|
|
2284
|
+
"form_urlencoded",
|
|
2285
|
+
"idna",
|
|
2286
|
+
"percent-encoding",
|
|
2287
|
+
"serde",
|
|
2288
|
+
]
|
|
2289
|
+
|
|
2290
|
+
[[package]]
|
|
2291
|
+
name = "utf8_iter"
|
|
2292
|
+
version = "1.0.4"
|
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2295
|
+
|
|
2296
|
+
[[package]]
|
|
2297
|
+
name = "utf8parse"
|
|
2298
|
+
version = "0.2.2"
|
|
2299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2300
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2301
|
+
|
|
2302
|
+
[[package]]
|
|
2303
|
+
name = "version_check"
|
|
2304
|
+
version = "0.9.5"
|
|
2305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2306
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2307
|
+
|
|
2308
|
+
[[package]]
|
|
2309
|
+
name = "wait-timeout"
|
|
2310
|
+
version = "0.2.1"
|
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
2313
|
+
dependencies = [
|
|
2314
|
+
"libc",
|
|
2315
|
+
]
|
|
2316
|
+
|
|
2317
|
+
[[package]]
|
|
2318
|
+
name = "walkdir"
|
|
2319
|
+
version = "2.5.0"
|
|
2320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2321
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2322
|
+
dependencies = [
|
|
2323
|
+
"same-file",
|
|
2324
|
+
"winapi-util",
|
|
2325
|
+
]
|
|
2326
|
+
|
|
2327
|
+
[[package]]
|
|
2328
|
+
name = "want"
|
|
2329
|
+
version = "0.3.1"
|
|
2330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2332
|
+
dependencies = [
|
|
2333
|
+
"try-lock",
|
|
2334
|
+
]
|
|
2335
|
+
|
|
2336
|
+
[[package]]
|
|
2337
|
+
name = "wasi"
|
|
2338
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2341
|
+
|
|
2342
|
+
[[package]]
|
|
2343
|
+
name = "wasm-bindgen"
|
|
2344
|
+
version = "0.2.126"
|
|
2345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2346
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
2347
|
+
dependencies = [
|
|
2348
|
+
"cfg-if",
|
|
2349
|
+
"once_cell",
|
|
2350
|
+
"rustversion",
|
|
2351
|
+
"wasm-bindgen-macro",
|
|
2352
|
+
"wasm-bindgen-shared",
|
|
2353
|
+
]
|
|
2354
|
+
|
|
2355
|
+
[[package]]
|
|
2356
|
+
name = "wasm-bindgen-macro"
|
|
2357
|
+
version = "0.2.126"
|
|
2358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2359
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
2360
|
+
dependencies = [
|
|
2361
|
+
"quote",
|
|
2362
|
+
"wasm-bindgen-macro-support",
|
|
2363
|
+
]
|
|
2364
|
+
|
|
2365
|
+
[[package]]
|
|
2366
|
+
name = "wasm-bindgen-macro-support"
|
|
2367
|
+
version = "0.2.126"
|
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
2370
|
+
dependencies = [
|
|
2371
|
+
"bumpalo",
|
|
2372
|
+
"proc-macro2",
|
|
2373
|
+
"quote",
|
|
2374
|
+
"syn",
|
|
2375
|
+
"wasm-bindgen-shared",
|
|
2376
|
+
]
|
|
2377
|
+
|
|
2378
|
+
[[package]]
|
|
2379
|
+
name = "wasm-bindgen-shared"
|
|
2380
|
+
version = "0.2.126"
|
|
2381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
2383
|
+
dependencies = [
|
|
2384
|
+
"unicode-ident",
|
|
2385
|
+
]
|
|
2386
|
+
|
|
2387
|
+
[[package]]
|
|
2388
|
+
name = "web-sys"
|
|
2389
|
+
version = "0.3.103"
|
|
2390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2391
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
2392
|
+
dependencies = [
|
|
2393
|
+
"js-sys",
|
|
2394
|
+
"wasm-bindgen",
|
|
2395
|
+
]
|
|
2396
|
+
|
|
2397
|
+
[[package]]
|
|
2398
|
+
name = "web-time"
|
|
2399
|
+
version = "1.1.0"
|
|
2400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2402
|
+
dependencies = [
|
|
2403
|
+
"js-sys",
|
|
2404
|
+
"wasm-bindgen",
|
|
2405
|
+
]
|
|
2406
|
+
|
|
2407
|
+
[[package]]
|
|
2408
|
+
name = "webpki-roots"
|
|
2409
|
+
version = "0.26.11"
|
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
2412
|
+
dependencies = [
|
|
2413
|
+
"webpki-roots 1.0.8",
|
|
2414
|
+
]
|
|
2415
|
+
|
|
2416
|
+
[[package]]
|
|
2417
|
+
name = "webpki-roots"
|
|
2418
|
+
version = "1.0.8"
|
|
2419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
+
checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
|
|
2421
|
+
dependencies = [
|
|
2422
|
+
"rustls-pki-types",
|
|
2423
|
+
]
|
|
2424
|
+
|
|
2425
|
+
[[package]]
|
|
2426
|
+
name = "winapi-util"
|
|
2427
|
+
version = "0.1.11"
|
|
2428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2429
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2430
|
+
dependencies = [
|
|
2431
|
+
"windows-sys 0.61.2",
|
|
2432
|
+
]
|
|
2433
|
+
|
|
2434
|
+
[[package]]
|
|
2435
|
+
name = "windows-link"
|
|
2436
|
+
version = "0.2.1"
|
|
2437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2438
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2439
|
+
|
|
2440
|
+
[[package]]
|
|
2441
|
+
name = "windows-sys"
|
|
2442
|
+
version = "0.52.0"
|
|
2443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2444
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2445
|
+
dependencies = [
|
|
2446
|
+
"windows-targets",
|
|
2447
|
+
]
|
|
2448
|
+
|
|
2449
|
+
[[package]]
|
|
2450
|
+
name = "windows-sys"
|
|
2451
|
+
version = "0.61.2"
|
|
2452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2453
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2454
|
+
dependencies = [
|
|
2455
|
+
"windows-link",
|
|
2456
|
+
]
|
|
2457
|
+
|
|
2458
|
+
[[package]]
|
|
2459
|
+
name = "windows-targets"
|
|
2460
|
+
version = "0.52.6"
|
|
2461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2462
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2463
|
+
dependencies = [
|
|
2464
|
+
"windows_aarch64_gnullvm",
|
|
2465
|
+
"windows_aarch64_msvc",
|
|
2466
|
+
"windows_i686_gnu",
|
|
2467
|
+
"windows_i686_gnullvm",
|
|
2468
|
+
"windows_i686_msvc",
|
|
2469
|
+
"windows_x86_64_gnu",
|
|
2470
|
+
"windows_x86_64_gnullvm",
|
|
2471
|
+
"windows_x86_64_msvc",
|
|
2472
|
+
]
|
|
2473
|
+
|
|
2474
|
+
[[package]]
|
|
2475
|
+
name = "windows_aarch64_gnullvm"
|
|
2476
|
+
version = "0.52.6"
|
|
2477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2479
|
+
|
|
2480
|
+
[[package]]
|
|
2481
|
+
name = "windows_aarch64_msvc"
|
|
2482
|
+
version = "0.52.6"
|
|
2483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2484
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2485
|
+
|
|
2486
|
+
[[package]]
|
|
2487
|
+
name = "windows_i686_gnu"
|
|
2488
|
+
version = "0.52.6"
|
|
2489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2490
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2491
|
+
|
|
2492
|
+
[[package]]
|
|
2493
|
+
name = "windows_i686_gnullvm"
|
|
2494
|
+
version = "0.52.6"
|
|
2495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2496
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2497
|
+
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "windows_i686_msvc"
|
|
2500
|
+
version = "0.52.6"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2503
|
+
|
|
2504
|
+
[[package]]
|
|
2505
|
+
name = "windows_x86_64_gnu"
|
|
2506
|
+
version = "0.52.6"
|
|
2507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2508
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2509
|
+
|
|
2510
|
+
[[package]]
|
|
2511
|
+
name = "windows_x86_64_gnullvm"
|
|
2512
|
+
version = "0.52.6"
|
|
2513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2514
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2515
|
+
|
|
2516
|
+
[[package]]
|
|
2517
|
+
name = "windows_x86_64_msvc"
|
|
2518
|
+
version = "0.52.6"
|
|
2519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2521
|
+
|
|
2522
|
+
[[package]]
|
|
2523
|
+
name = "writeable"
|
|
2524
|
+
version = "0.6.3"
|
|
2525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2526
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
2527
|
+
|
|
2528
|
+
[[package]]
|
|
2529
|
+
name = "yasna"
|
|
2530
|
+
version = "0.5.2"
|
|
2531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2532
|
+
checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
|
|
2533
|
+
dependencies = [
|
|
2534
|
+
"time",
|
|
2535
|
+
]
|
|
2536
|
+
|
|
2537
|
+
[[package]]
|
|
2538
|
+
name = "yoke"
|
|
2539
|
+
version = "0.8.3"
|
|
2540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2541
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
2542
|
+
dependencies = [
|
|
2543
|
+
"stable_deref_trait",
|
|
2544
|
+
"yoke-derive",
|
|
2545
|
+
"zerofrom",
|
|
2546
|
+
]
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "yoke-derive"
|
|
2550
|
+
version = "0.8.2"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
2553
|
+
dependencies = [
|
|
2554
|
+
"proc-macro2",
|
|
2555
|
+
"quote",
|
|
2556
|
+
"syn",
|
|
2557
|
+
"synstructure",
|
|
2558
|
+
]
|
|
2559
|
+
|
|
2560
|
+
[[package]]
|
|
2561
|
+
name = "zerocopy"
|
|
2562
|
+
version = "0.8.54"
|
|
2563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2564
|
+
checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
|
|
2565
|
+
dependencies = [
|
|
2566
|
+
"zerocopy-derive",
|
|
2567
|
+
]
|
|
2568
|
+
|
|
2569
|
+
[[package]]
|
|
2570
|
+
name = "zerocopy-derive"
|
|
2571
|
+
version = "0.8.54"
|
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
+
checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
|
|
2574
|
+
dependencies = [
|
|
2575
|
+
"proc-macro2",
|
|
2576
|
+
"quote",
|
|
2577
|
+
"syn",
|
|
2578
|
+
]
|
|
2579
|
+
|
|
2580
|
+
[[package]]
|
|
2581
|
+
name = "zerofrom"
|
|
2582
|
+
version = "0.1.8"
|
|
2583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
2585
|
+
dependencies = [
|
|
2586
|
+
"zerofrom-derive",
|
|
2587
|
+
]
|
|
2588
|
+
|
|
2589
|
+
[[package]]
|
|
2590
|
+
name = "zerofrom-derive"
|
|
2591
|
+
version = "0.1.7"
|
|
2592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
2594
|
+
dependencies = [
|
|
2595
|
+
"proc-macro2",
|
|
2596
|
+
"quote",
|
|
2597
|
+
"syn",
|
|
2598
|
+
"synstructure",
|
|
2599
|
+
]
|
|
2600
|
+
|
|
2601
|
+
[[package]]
|
|
2602
|
+
name = "zeroize"
|
|
2603
|
+
version = "1.9.0"
|
|
2604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
2606
|
+
|
|
2607
|
+
[[package]]
|
|
2608
|
+
name = "zerotrie"
|
|
2609
|
+
version = "0.2.4"
|
|
2610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
2612
|
+
dependencies = [
|
|
2613
|
+
"displaydoc",
|
|
2614
|
+
"yoke",
|
|
2615
|
+
"zerofrom",
|
|
2616
|
+
]
|
|
2617
|
+
|
|
2618
|
+
[[package]]
|
|
2619
|
+
name = "zerovec"
|
|
2620
|
+
version = "0.11.6"
|
|
2621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
2623
|
+
dependencies = [
|
|
2624
|
+
"yoke",
|
|
2625
|
+
"zerofrom",
|
|
2626
|
+
"zerovec-derive",
|
|
2627
|
+
]
|
|
2628
|
+
|
|
2629
|
+
[[package]]
|
|
2630
|
+
name = "zerovec-derive"
|
|
2631
|
+
version = "0.11.3"
|
|
2632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
2634
|
+
dependencies = [
|
|
2635
|
+
"proc-macro2",
|
|
2636
|
+
"quote",
|
|
2637
|
+
"syn",
|
|
2638
|
+
]
|
|
2639
|
+
|
|
2640
|
+
[[package]]
|
|
2641
|
+
name = "zmij"
|
|
2642
|
+
version = "1.0.23"
|
|
2643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2644
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
2645
|
+
|
|
2646
|
+
[[package]]
|
|
2647
|
+
name = "zstd"
|
|
2648
|
+
version = "0.13.3"
|
|
2649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2650
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
2651
|
+
dependencies = [
|
|
2652
|
+
"zstd-safe",
|
|
2653
|
+
]
|
|
2654
|
+
|
|
2655
|
+
[[package]]
|
|
2656
|
+
name = "zstd-safe"
|
|
2657
|
+
version = "7.2.4"
|
|
2658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
2660
|
+
dependencies = [
|
|
2661
|
+
"zstd-sys",
|
|
2662
|
+
]
|
|
2663
|
+
|
|
2664
|
+
[[package]]
|
|
2665
|
+
name = "zstd-sys"
|
|
2666
|
+
version = "2.0.16+zstd.1.5.7"
|
|
2667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
2669
|
+
dependencies = [
|
|
2670
|
+
"cc",
|
|
2671
|
+
"pkg-config",
|
|
2672
|
+
]
|