bashkit 0.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bashkit-0.1.4/Cargo.lock +4129 -0
- bashkit-0.1.4/Cargo.toml +87 -0
- bashkit-0.1.4/PKG-INFO +150 -0
- bashkit-0.1.4/README.md +119 -0
- bashkit-0.1.4/bashkit/__init__.py +33 -0
- bashkit-0.1.4/bashkit/_bashkit.pyi +101 -0
- bashkit-0.1.4/bashkit/deepagents.py +338 -0
- bashkit-0.1.4/bashkit/langchain.py +167 -0
- bashkit-0.1.4/bashkit/py.typed +0 -0
- bashkit-0.1.4/crates/bashkit/Cargo.toml +107 -0
- bashkit-0.1.4/crates/bashkit/README.md +252 -0
- bashkit-0.1.4/crates/bashkit/benches/parallel_execution.rs +329 -0
- bashkit-0.1.4/crates/bashkit/docs/compatibility.md +451 -0
- bashkit-0.1.4/crates/bashkit/docs/custom_builtins.md +293 -0
- bashkit-0.1.4/crates/bashkit/docs/logging.md +228 -0
- bashkit-0.1.4/crates/bashkit/docs/python.md +199 -0
- bashkit-0.1.4/crates/bashkit/docs/threat-model.md +365 -0
- bashkit-0.1.4/crates/bashkit/examples/agent_tool.rs +283 -0
- bashkit-0.1.4/crates/bashkit/examples/basic.rs +46 -0
- bashkit-0.1.4/crates/bashkit/examples/custom_backend.rs +390 -0
- bashkit-0.1.4/crates/bashkit/examples/custom_builtins.rs +200 -0
- bashkit-0.1.4/crates/bashkit/examples/custom_filesystem_impl.rs +553 -0
- bashkit-0.1.4/crates/bashkit/examples/custom_fs.rs +182 -0
- bashkit-0.1.4/crates/bashkit/examples/git_workflow.rs +120 -0
- bashkit-0.1.4/crates/bashkit/examples/python_scripts.rs +166 -0
- bashkit-0.1.4/crates/bashkit/examples/resource_limits.rs +100 -0
- bashkit-0.1.4/crates/bashkit/examples/sandbox_identity.rs +79 -0
- bashkit-0.1.4/crates/bashkit/examples/show_tool_output.rs +23 -0
- bashkit-0.1.4/crates/bashkit/examples/text_files.rs +151 -0
- bashkit-0.1.4/crates/bashkit/examples/text_processing.rs +121 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/archive.rs +1415 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/awk.rs +2697 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/cat.rs +53 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/column.rs +307 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/comm.rs +350 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/curl.rs +1039 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/cuttr.rs +348 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/date.rs +628 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/diff.rs +490 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/disk.rs +429 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/echo.rs +151 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/environ.rs +520 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/export.rs +33 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/fileops.rs +719 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/flow.rs +111 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/git.rs +568 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/grep.rs +854 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/headtail.rs +321 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/hextools.rs +855 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/inspect.rs +986 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/jq.rs +707 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/ls.rs +2452 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/mod.rs +430 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/navigation.rs +94 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/nl.rs +458 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/paste.rs +348 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/path.rs +254 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/pipeline.rs +709 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/printf.rs +454 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/python.rs +1468 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/read.rs +60 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/sed.rs +914 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/sleep.rs +132 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/sortuniq.rs +345 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/source.rs +39 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/strings.rs +373 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/system.rs +415 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/test.rs +226 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/timeout.rs +256 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/vars.rs +207 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/wait.rs +88 -0
- bashkit-0.1.4/crates/bashkit/src/builtins/wc.rs +212 -0
- bashkit-0.1.4/crates/bashkit/src/error.rs +78 -0
- bashkit-0.1.4/crates/bashkit/src/fs/backend.rs +205 -0
- bashkit-0.1.4/crates/bashkit/src/fs/limits.rs +625 -0
- bashkit-0.1.4/crates/bashkit/src/fs/memory.rs +1312 -0
- bashkit-0.1.4/crates/bashkit/src/fs/mod.rs +443 -0
- bashkit-0.1.4/crates/bashkit/src/fs/mountable.rs +623 -0
- bashkit-0.1.4/crates/bashkit/src/fs/overlay.rs +783 -0
- bashkit-0.1.4/crates/bashkit/src/fs/posix.rs +294 -0
- bashkit-0.1.4/crates/bashkit/src/fs/traits.rs +456 -0
- bashkit-0.1.4/crates/bashkit/src/git/client.rs +1366 -0
- bashkit-0.1.4/crates/bashkit/src/git/config.rs +295 -0
- bashkit-0.1.4/crates/bashkit/src/git/mod.rs +55 -0
- bashkit-0.1.4/crates/bashkit/src/interpreter/jobs.rs +164 -0
- bashkit-0.1.4/crates/bashkit/src/interpreter/mod.rs +4301 -0
- bashkit-0.1.4/crates/bashkit/src/interpreter/state.rs +74 -0
- bashkit-0.1.4/crates/bashkit/src/lib.rs +3983 -0
- bashkit-0.1.4/crates/bashkit/src/limits.rs +476 -0
- bashkit-0.1.4/crates/bashkit/src/logging_impl.rs +440 -0
- bashkit-0.1.4/crates/bashkit/src/network/allowlist.rs +371 -0
- bashkit-0.1.4/crates/bashkit/src/network/client.rs +534 -0
- bashkit-0.1.4/crates/bashkit/src/network/mod.rs +93 -0
- bashkit-0.1.4/crates/bashkit/src/parser/ast.rs +442 -0
- bashkit-0.1.4/crates/bashkit/src/parser/lexer.rs +874 -0
- bashkit-0.1.4/crates/bashkit/src/parser/mod.rs +2267 -0
- bashkit-0.1.4/crates/bashkit/src/parser/span.rs +202 -0
- bashkit-0.1.4/crates/bashkit/src/parser/tokens.rs +100 -0
- bashkit-0.1.4/crates/bashkit/src/tool.rs +972 -0
- bashkit-0.1.4/crates/bashkit/tests/builtin_error_security_tests.rs +1051 -0
- bashkit-0.1.4/crates/bashkit/tests/custom_builtins_tests.rs +489 -0
- bashkit-0.1.4/crates/bashkit/tests/custom_fs_tests.rs +549 -0
- bashkit-0.1.4/crates/bashkit/tests/dev_null_tests.rs +576 -0
- bashkit-0.1.4/crates/bashkit/tests/git_advanced_tests.rs +319 -0
- bashkit-0.1.4/crates/bashkit/tests/git_integration_tests.rs +388 -0
- bashkit-0.1.4/crates/bashkit/tests/git_remote_security_tests.rs +324 -0
- bashkit-0.1.4/crates/bashkit/tests/git_security_tests.rs +262 -0
- bashkit-0.1.4/crates/bashkit/tests/logging_security_tests.rs +747 -0
- bashkit-0.1.4/crates/bashkit/tests/network_security_tests.rs +844 -0
- bashkit-0.1.4/crates/bashkit/tests/proptest_differential.rs +545 -0
- bashkit-0.1.4/crates/bashkit/tests/proptest_security.rs +213 -0
- bashkit-0.1.4/crates/bashkit/tests/python_subprocess_tests.rs +236 -0
- bashkit-0.1.4/crates/bashkit/tests/security_failpoint_tests.rs +346 -0
- bashkit-0.1.4/crates/bashkit/tests/source_function_tests.rs +487 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/awk/awk.test.sh +627 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +204 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +116 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/background.test.sh +21 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +188 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +77 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/column.test.sh +44 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +79 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +100 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +224 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +250 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/date.test.sh +253 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/diff.test.sh +38 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/echo.test.sh +173 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +80 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +179 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/find.test.sh +96 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/functions.test.sh +117 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/globs.test.sh +48 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +127 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +59 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +33 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +97 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/nl.test.sh +116 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/paste.test.sh +32 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/path.test.sh +99 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +154 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/printf.test.sh +126 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +51 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +47 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +241 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/source.test.sh +177 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +127 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/time.test.sh +84 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +122 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/variables.test.sh +266 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/bash/wc.test.sh +158 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/grep/grep.test.sh +538 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/jq/jq.test.sh +841 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/python/python.test.sh +542 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_cases/sed/sed.test.sh +493 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_runner.rs +493 -0
- bashkit-0.1.4/crates/bashkit/tests/spec_tests.rs +438 -0
- bashkit-0.1.4/crates/bashkit/tests/threat_model_tests.rs +2309 -0
- bashkit-0.1.4/crates/bashkit-python/Cargo.toml +31 -0
- bashkit-0.1.4/crates/bashkit-python/README.md +119 -0
- bashkit-0.1.4/crates/bashkit-python/bashkit/__init__.py +33 -0
- bashkit-0.1.4/crates/bashkit-python/bashkit/_bashkit.pyi +101 -0
- bashkit-0.1.4/crates/bashkit-python/bashkit/deepagents.py +338 -0
- bashkit-0.1.4/crates/bashkit-python/bashkit/langchain.py +167 -0
- bashkit-0.1.4/crates/bashkit-python/bashkit/py.typed +0 -0
- bashkit-0.1.4/crates/bashkit-python/src/lib.rs +320 -0
- bashkit-0.1.4/pyproject.toml +40 -0
bashkit-0.1.4/Cargo.lock
ADDED
|
@@ -0,0 +1,4129 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"getrandom 0.3.4",
|
|
19
|
+
"once_cell",
|
|
20
|
+
"serde",
|
|
21
|
+
"version_check",
|
|
22
|
+
"zerocopy",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "aho-corasick"
|
|
27
|
+
version = "1.1.4"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
30
|
+
dependencies = [
|
|
31
|
+
"memchr",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "alloca"
|
|
36
|
+
version = "0.4.0"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
|
|
39
|
+
dependencies = [
|
|
40
|
+
"cc",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "allocator-api2"
|
|
45
|
+
version = "0.2.21"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "android_system_properties"
|
|
51
|
+
version = "0.1.5"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
54
|
+
dependencies = [
|
|
55
|
+
"libc",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "anes"
|
|
60
|
+
version = "0.1.6"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "anstream"
|
|
66
|
+
version = "0.6.21"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"anstyle",
|
|
71
|
+
"anstyle-parse",
|
|
72
|
+
"anstyle-query",
|
|
73
|
+
"anstyle-wincon",
|
|
74
|
+
"colorchoice",
|
|
75
|
+
"is_terminal_polyfill",
|
|
76
|
+
"utf8parse",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "anstyle"
|
|
81
|
+
version = "1.0.13"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "anstyle-parse"
|
|
87
|
+
version = "0.2.7"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"utf8parse",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "anstyle-query"
|
|
96
|
+
version = "1.1.5"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"windows-sys 0.61.2",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "anstyle-wincon"
|
|
105
|
+
version = "3.0.11"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"anstyle",
|
|
110
|
+
"once_cell_polyfill",
|
|
111
|
+
"windows-sys 0.61.2",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "anyhow"
|
|
116
|
+
version = "1.0.101"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "approx"
|
|
122
|
+
version = "0.5.1"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"num-traits",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "async-trait"
|
|
131
|
+
version = "0.1.89"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"proc-macro2",
|
|
136
|
+
"quote",
|
|
137
|
+
"syn",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "atomic-polyfill"
|
|
142
|
+
version = "1.0.3"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"critical-section",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "atomic-waker"
|
|
151
|
+
version = "1.1.2"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "attribute-derive"
|
|
157
|
+
version = "0.10.5"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"attribute-derive-macro",
|
|
162
|
+
"derive-where",
|
|
163
|
+
"manyhow",
|
|
164
|
+
"proc-macro2",
|
|
165
|
+
"quote",
|
|
166
|
+
"syn",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "attribute-derive-macro"
|
|
171
|
+
version = "0.10.5"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"collection_literals",
|
|
176
|
+
"interpolator",
|
|
177
|
+
"manyhow",
|
|
178
|
+
"proc-macro-utils",
|
|
179
|
+
"proc-macro2",
|
|
180
|
+
"quote",
|
|
181
|
+
"quote-use",
|
|
182
|
+
"syn",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "autocfg"
|
|
187
|
+
version = "1.5.0"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "aws-lc-rs"
|
|
193
|
+
version = "1.15.4"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "7b7b6141e96a8c160799cc2d5adecd5cbbe5054cb8c7c4af53da0f83bb7ad256"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"aws-lc-sys",
|
|
198
|
+
"zeroize",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "aws-lc-sys"
|
|
203
|
+
version = "0.37.0"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "5c34dda4df7017c8db52132f0f8a2e0f8161649d15723ed63fc00c82d0f2081a"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"cc",
|
|
208
|
+
"cmake",
|
|
209
|
+
"dunce",
|
|
210
|
+
"fs_extra",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "base64"
|
|
215
|
+
version = "0.22.1"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "bashkit"
|
|
221
|
+
version = "0.1.4"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"anyhow",
|
|
224
|
+
"async-trait",
|
|
225
|
+
"base64",
|
|
226
|
+
"chrono",
|
|
227
|
+
"criterion",
|
|
228
|
+
"fail",
|
|
229
|
+
"flate2",
|
|
230
|
+
"futures",
|
|
231
|
+
"globset",
|
|
232
|
+
"insta",
|
|
233
|
+
"jaq-core",
|
|
234
|
+
"jaq-json",
|
|
235
|
+
"jaq-std",
|
|
236
|
+
"pretty_assertions",
|
|
237
|
+
"proptest",
|
|
238
|
+
"regex",
|
|
239
|
+
"reqwest",
|
|
240
|
+
"schemars",
|
|
241
|
+
"serde",
|
|
242
|
+
"serde_json",
|
|
243
|
+
"serial_test",
|
|
244
|
+
"thiserror 2.0.18",
|
|
245
|
+
"tokio",
|
|
246
|
+
"tokio-test",
|
|
247
|
+
"tracing",
|
|
248
|
+
"url",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "bashkit-bench"
|
|
253
|
+
version = "0.1.4"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"anyhow",
|
|
256
|
+
"bashkit",
|
|
257
|
+
"clap",
|
|
258
|
+
"colored",
|
|
259
|
+
"instant",
|
|
260
|
+
"serde",
|
|
261
|
+
"serde_json",
|
|
262
|
+
"statrs",
|
|
263
|
+
"tabled",
|
|
264
|
+
"tokio",
|
|
265
|
+
]
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "bashkit-cli"
|
|
269
|
+
version = "0.1.4"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"anyhow",
|
|
272
|
+
"bashkit",
|
|
273
|
+
"clap",
|
|
274
|
+
"serde",
|
|
275
|
+
"serde_json",
|
|
276
|
+
"tokio",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "bashkit-eval"
|
|
281
|
+
version = "0.1.4"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"anyhow",
|
|
284
|
+
"async-trait",
|
|
285
|
+
"bashkit",
|
|
286
|
+
"chrono",
|
|
287
|
+
"clap",
|
|
288
|
+
"regex",
|
|
289
|
+
"reqwest",
|
|
290
|
+
"serde",
|
|
291
|
+
"serde_json",
|
|
292
|
+
"tokio",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "bashkit-monty-worker"
|
|
297
|
+
version = "0.1.4"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"monty",
|
|
300
|
+
"serde",
|
|
301
|
+
"serde_json",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "bashkit-python"
|
|
306
|
+
version = "0.1.4"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"bashkit",
|
|
309
|
+
"pyo3",
|
|
310
|
+
"pyo3-async-runtimes",
|
|
311
|
+
"serde_json",
|
|
312
|
+
"tokio",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "bit-set"
|
|
317
|
+
version = "0.8.0"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"bit-vec",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "bit-vec"
|
|
326
|
+
version = "0.8.0"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "bitflags"
|
|
332
|
+
version = "2.10.0"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "bstr"
|
|
338
|
+
version = "1.12.1"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"memchr",
|
|
343
|
+
"regex-automata",
|
|
344
|
+
"serde",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "bumpalo"
|
|
349
|
+
version = "3.19.1"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "bytecount"
|
|
355
|
+
version = "0.6.9"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "bytemuck"
|
|
361
|
+
version = "1.25.0"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "byteorder"
|
|
367
|
+
version = "1.5.0"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "bytes"
|
|
373
|
+
version = "1.11.1"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "cast"
|
|
379
|
+
version = "0.3.0"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "castaway"
|
|
385
|
+
version = "0.2.4"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"rustversion",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "cc"
|
|
394
|
+
version = "1.2.55"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
|
|
397
|
+
dependencies = [
|
|
398
|
+
"find-msvc-tools",
|
|
399
|
+
"jobserver",
|
|
400
|
+
"libc",
|
|
401
|
+
"shlex",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "cesu8"
|
|
406
|
+
version = "1.1.0"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "cfg-if"
|
|
412
|
+
version = "1.0.4"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "cfg_aliases"
|
|
418
|
+
version = "0.2.1"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "chrono"
|
|
424
|
+
version = "0.4.43"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"iana-time-zone",
|
|
429
|
+
"js-sys",
|
|
430
|
+
"num-traits",
|
|
431
|
+
"wasm-bindgen",
|
|
432
|
+
"windows-link",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "ciborium"
|
|
437
|
+
version = "0.2.2"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"ciborium-io",
|
|
442
|
+
"ciborium-ll",
|
|
443
|
+
"serde",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "ciborium-io"
|
|
448
|
+
version = "0.2.2"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "ciborium-ll"
|
|
454
|
+
version = "0.2.2"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"ciborium-io",
|
|
459
|
+
"half",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "clap"
|
|
464
|
+
version = "4.5.57"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"clap_builder",
|
|
469
|
+
"clap_derive",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "clap_builder"
|
|
474
|
+
version = "4.5.57"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"anstream",
|
|
479
|
+
"anstyle",
|
|
480
|
+
"clap_lex",
|
|
481
|
+
"strsim",
|
|
482
|
+
]
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "clap_derive"
|
|
486
|
+
version = "4.5.55"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"heck",
|
|
491
|
+
"proc-macro2",
|
|
492
|
+
"quote",
|
|
493
|
+
"syn",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "clap_lex"
|
|
498
|
+
version = "0.7.7"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "cmake"
|
|
504
|
+
version = "0.1.57"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
|
|
507
|
+
dependencies = [
|
|
508
|
+
"cc",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "cobs"
|
|
513
|
+
version = "0.3.0"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"thiserror 2.0.18",
|
|
518
|
+
]
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "collection_literals"
|
|
522
|
+
version = "1.0.3"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "colorchoice"
|
|
528
|
+
version = "1.0.4"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "colored"
|
|
534
|
+
version = "3.1.1"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"windows-sys 0.61.2",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "combine"
|
|
543
|
+
version = "4.6.7"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"bytes",
|
|
548
|
+
"memchr",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "compact_str"
|
|
553
|
+
version = "0.9.0"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"castaway",
|
|
558
|
+
"cfg-if",
|
|
559
|
+
"itoa",
|
|
560
|
+
"rustversion",
|
|
561
|
+
"ryu",
|
|
562
|
+
"static_assertions",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "console"
|
|
567
|
+
version = "0.15.11"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"encode_unicode",
|
|
572
|
+
"libc",
|
|
573
|
+
"once_cell",
|
|
574
|
+
"windows-sys 0.59.0",
|
|
575
|
+
]
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "core-foundation"
|
|
579
|
+
version = "0.9.4"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"core-foundation-sys",
|
|
584
|
+
"libc",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "core-foundation"
|
|
589
|
+
version = "0.10.1"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"core-foundation-sys",
|
|
594
|
+
"libc",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "core-foundation-sys"
|
|
599
|
+
version = "0.8.7"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "crc32fast"
|
|
605
|
+
version = "1.5.0"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"cfg-if",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "criterion"
|
|
614
|
+
version = "0.8.2"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"alloca",
|
|
619
|
+
"anes",
|
|
620
|
+
"cast",
|
|
621
|
+
"ciborium",
|
|
622
|
+
"clap",
|
|
623
|
+
"criterion-plot",
|
|
624
|
+
"itertools 0.13.0",
|
|
625
|
+
"num-traits",
|
|
626
|
+
"oorandom",
|
|
627
|
+
"page_size",
|
|
628
|
+
"plotters",
|
|
629
|
+
"rayon",
|
|
630
|
+
"regex",
|
|
631
|
+
"serde",
|
|
632
|
+
"serde_json",
|
|
633
|
+
"tinytemplate",
|
|
634
|
+
"tokio",
|
|
635
|
+
"walkdir",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "criterion-plot"
|
|
640
|
+
version = "0.8.2"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"cast",
|
|
645
|
+
"itertools 0.13.0",
|
|
646
|
+
]
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "critical-section"
|
|
650
|
+
version = "1.2.0"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "crossbeam-deque"
|
|
656
|
+
version = "0.8.6"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
659
|
+
dependencies = [
|
|
660
|
+
"crossbeam-epoch",
|
|
661
|
+
"crossbeam-utils",
|
|
662
|
+
]
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "crossbeam-epoch"
|
|
666
|
+
version = "0.9.18"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
669
|
+
dependencies = [
|
|
670
|
+
"crossbeam-utils",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "crossbeam-utils"
|
|
675
|
+
version = "0.8.21"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "crunchy"
|
|
681
|
+
version = "0.2.4"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "derive-where"
|
|
687
|
+
version = "1.6.0"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f"
|
|
690
|
+
dependencies = [
|
|
691
|
+
"proc-macro2",
|
|
692
|
+
"quote",
|
|
693
|
+
"syn",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "diff"
|
|
698
|
+
version = "0.1.13"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "displaydoc"
|
|
704
|
+
version = "0.2.5"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"proc-macro2",
|
|
709
|
+
"quote",
|
|
710
|
+
"syn",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "dunce"
|
|
715
|
+
version = "1.0.5"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "dyn-clone"
|
|
721
|
+
version = "1.0.20"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "either"
|
|
727
|
+
version = "1.15.0"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "embedded-io"
|
|
733
|
+
version = "0.4.0"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "embedded-io"
|
|
739
|
+
version = "0.6.1"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "encode_unicode"
|
|
745
|
+
version = "1.0.0"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "encoding_rs"
|
|
751
|
+
version = "0.8.35"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
754
|
+
dependencies = [
|
|
755
|
+
"cfg-if",
|
|
756
|
+
]
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "equivalent"
|
|
760
|
+
version = "1.0.2"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "errno"
|
|
766
|
+
version = "0.3.14"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"libc",
|
|
771
|
+
"windows-sys 0.61.2",
|
|
772
|
+
]
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "fail"
|
|
776
|
+
version = "0.5.1"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c"
|
|
779
|
+
dependencies = [
|
|
780
|
+
"log",
|
|
781
|
+
"once_cell",
|
|
782
|
+
"rand 0.8.5",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "fastrand"
|
|
787
|
+
version = "2.3.0"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "find-msvc-tools"
|
|
793
|
+
version = "0.1.9"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "flate2"
|
|
799
|
+
version = "1.1.9"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
802
|
+
dependencies = [
|
|
803
|
+
"crc32fast",
|
|
804
|
+
"miniz_oxide",
|
|
805
|
+
]
|
|
806
|
+
|
|
807
|
+
[[package]]
|
|
808
|
+
name = "fnv"
|
|
809
|
+
version = "1.0.7"
|
|
810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "foldhash"
|
|
815
|
+
version = "0.1.5"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "foldhash"
|
|
821
|
+
version = "0.2.0"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "form_urlencoded"
|
|
827
|
+
version = "1.2.2"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
830
|
+
dependencies = [
|
|
831
|
+
"percent-encoding",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "fs_extra"
|
|
836
|
+
version = "1.3.0"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "futures"
|
|
842
|
+
version = "0.3.31"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"futures-channel",
|
|
847
|
+
"futures-core",
|
|
848
|
+
"futures-executor",
|
|
849
|
+
"futures-io",
|
|
850
|
+
"futures-sink",
|
|
851
|
+
"futures-task",
|
|
852
|
+
"futures-util",
|
|
853
|
+
]
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "futures-channel"
|
|
857
|
+
version = "0.3.31"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
860
|
+
dependencies = [
|
|
861
|
+
"futures-core",
|
|
862
|
+
"futures-sink",
|
|
863
|
+
]
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "futures-core"
|
|
867
|
+
version = "0.3.31"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "futures-executor"
|
|
873
|
+
version = "0.3.31"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"futures-core",
|
|
878
|
+
"futures-task",
|
|
879
|
+
"futures-util",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "futures-io"
|
|
884
|
+
version = "0.3.31"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "futures-macro"
|
|
890
|
+
version = "0.3.31"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"proc-macro2",
|
|
895
|
+
"quote",
|
|
896
|
+
"syn",
|
|
897
|
+
]
|
|
898
|
+
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "futures-sink"
|
|
901
|
+
version = "0.3.31"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "futures-task"
|
|
907
|
+
version = "0.3.31"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "futures-util"
|
|
913
|
+
version = "0.3.31"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
916
|
+
dependencies = [
|
|
917
|
+
"futures-channel",
|
|
918
|
+
"futures-core",
|
|
919
|
+
"futures-io",
|
|
920
|
+
"futures-macro",
|
|
921
|
+
"futures-sink",
|
|
922
|
+
"futures-task",
|
|
923
|
+
"memchr",
|
|
924
|
+
"pin-project-lite",
|
|
925
|
+
"pin-utils",
|
|
926
|
+
"slab",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "get-size-derive2"
|
|
931
|
+
version = "0.7.4"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "f2b6d1e2f75c16bfbcd0f95d84f99858a6e2f885c2287d1f5c3a96e8444a34b4"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"attribute-derive",
|
|
936
|
+
"quote",
|
|
937
|
+
"syn",
|
|
938
|
+
]
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "get-size2"
|
|
942
|
+
version = "0.7.4"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "49cf31a6d70300cf81461098f7797571362387ef4bf85d32ac47eaa59b3a5a1a"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"compact_str",
|
|
947
|
+
"get-size-derive2",
|
|
948
|
+
"hashbrown 0.16.1",
|
|
949
|
+
"ordermap",
|
|
950
|
+
"smallvec",
|
|
951
|
+
]
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "getopts"
|
|
955
|
+
version = "0.2.24"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"unicode-width",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "getrandom"
|
|
964
|
+
version = "0.2.17"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"cfg-if",
|
|
969
|
+
"js-sys",
|
|
970
|
+
"libc",
|
|
971
|
+
"wasi",
|
|
972
|
+
"wasm-bindgen",
|
|
973
|
+
]
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "getrandom"
|
|
977
|
+
version = "0.3.4"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
980
|
+
dependencies = [
|
|
981
|
+
"cfg-if",
|
|
982
|
+
"js-sys",
|
|
983
|
+
"libc",
|
|
984
|
+
"r-efi",
|
|
985
|
+
"wasip2",
|
|
986
|
+
"wasm-bindgen",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "getrandom"
|
|
991
|
+
version = "0.4.1"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
|
|
994
|
+
dependencies = [
|
|
995
|
+
"cfg-if",
|
|
996
|
+
"libc",
|
|
997
|
+
"r-efi",
|
|
998
|
+
"wasip2",
|
|
999
|
+
"wasip3",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "globset"
|
|
1004
|
+
version = "0.4.18"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"aho-corasick",
|
|
1009
|
+
"bstr",
|
|
1010
|
+
"log",
|
|
1011
|
+
"regex-automata",
|
|
1012
|
+
"regex-syntax",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "h2"
|
|
1017
|
+
version = "0.4.13"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"atomic-waker",
|
|
1022
|
+
"bytes",
|
|
1023
|
+
"fnv",
|
|
1024
|
+
"futures-core",
|
|
1025
|
+
"futures-sink",
|
|
1026
|
+
"http",
|
|
1027
|
+
"indexmap",
|
|
1028
|
+
"slab",
|
|
1029
|
+
"tokio",
|
|
1030
|
+
"tokio-util",
|
|
1031
|
+
"tracing",
|
|
1032
|
+
]
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "half"
|
|
1036
|
+
version = "2.7.1"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1039
|
+
dependencies = [
|
|
1040
|
+
"cfg-if",
|
|
1041
|
+
"crunchy",
|
|
1042
|
+
"zerocopy",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "hash32"
|
|
1047
|
+
version = "0.2.1"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"byteorder",
|
|
1052
|
+
]
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "hashbrown"
|
|
1056
|
+
version = "0.15.5"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1059
|
+
dependencies = [
|
|
1060
|
+
"foldhash 0.1.5",
|
|
1061
|
+
]
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "hashbrown"
|
|
1065
|
+
version = "0.16.1"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1068
|
+
dependencies = [
|
|
1069
|
+
"allocator-api2",
|
|
1070
|
+
"equivalent",
|
|
1071
|
+
"foldhash 0.2.0",
|
|
1072
|
+
]
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "heapless"
|
|
1076
|
+
version = "0.7.17"
|
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
+
checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
|
|
1079
|
+
dependencies = [
|
|
1080
|
+
"atomic-polyfill",
|
|
1081
|
+
"hash32",
|
|
1082
|
+
"rustc_version",
|
|
1083
|
+
"serde",
|
|
1084
|
+
"spin",
|
|
1085
|
+
"stable_deref_trait",
|
|
1086
|
+
]
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "heck"
|
|
1090
|
+
version = "0.5.0"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "hifijson"
|
|
1096
|
+
version = "0.2.3"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "0a7763b98ba8a24f59e698bf9ab197e7676c640d6455d1580b4ce7dc560f0f0d"
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "http"
|
|
1102
|
+
version = "1.4.0"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1105
|
+
dependencies = [
|
|
1106
|
+
"bytes",
|
|
1107
|
+
"itoa",
|
|
1108
|
+
]
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "http-body"
|
|
1112
|
+
version = "1.0.1"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1115
|
+
dependencies = [
|
|
1116
|
+
"bytes",
|
|
1117
|
+
"http",
|
|
1118
|
+
]
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "http-body-util"
|
|
1122
|
+
version = "0.1.3"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1125
|
+
dependencies = [
|
|
1126
|
+
"bytes",
|
|
1127
|
+
"futures-core",
|
|
1128
|
+
"http",
|
|
1129
|
+
"http-body",
|
|
1130
|
+
"pin-project-lite",
|
|
1131
|
+
]
|
|
1132
|
+
|
|
1133
|
+
[[package]]
|
|
1134
|
+
name = "httparse"
|
|
1135
|
+
version = "1.10.1"
|
|
1136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1137
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1138
|
+
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "hyper"
|
|
1141
|
+
version = "1.8.1"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
1144
|
+
dependencies = [
|
|
1145
|
+
"atomic-waker",
|
|
1146
|
+
"bytes",
|
|
1147
|
+
"futures-channel",
|
|
1148
|
+
"futures-core",
|
|
1149
|
+
"h2",
|
|
1150
|
+
"http",
|
|
1151
|
+
"http-body",
|
|
1152
|
+
"httparse",
|
|
1153
|
+
"itoa",
|
|
1154
|
+
"pin-project-lite",
|
|
1155
|
+
"pin-utils",
|
|
1156
|
+
"smallvec",
|
|
1157
|
+
"tokio",
|
|
1158
|
+
"want",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "hyper-rustls"
|
|
1163
|
+
version = "0.27.7"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"http",
|
|
1168
|
+
"hyper",
|
|
1169
|
+
"hyper-util",
|
|
1170
|
+
"rustls",
|
|
1171
|
+
"rustls-pki-types",
|
|
1172
|
+
"tokio",
|
|
1173
|
+
"tokio-rustls",
|
|
1174
|
+
"tower-service",
|
|
1175
|
+
]
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "hyper-util"
|
|
1179
|
+
version = "0.1.20"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"base64",
|
|
1184
|
+
"bytes",
|
|
1185
|
+
"futures-channel",
|
|
1186
|
+
"futures-util",
|
|
1187
|
+
"http",
|
|
1188
|
+
"http-body",
|
|
1189
|
+
"hyper",
|
|
1190
|
+
"ipnet",
|
|
1191
|
+
"libc",
|
|
1192
|
+
"percent-encoding",
|
|
1193
|
+
"pin-project-lite",
|
|
1194
|
+
"socket2",
|
|
1195
|
+
"system-configuration",
|
|
1196
|
+
"tokio",
|
|
1197
|
+
"tower-service",
|
|
1198
|
+
"tracing",
|
|
1199
|
+
"windows-registry",
|
|
1200
|
+
]
|
|
1201
|
+
|
|
1202
|
+
[[package]]
|
|
1203
|
+
name = "iana-time-zone"
|
|
1204
|
+
version = "0.1.65"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1207
|
+
dependencies = [
|
|
1208
|
+
"android_system_properties",
|
|
1209
|
+
"core-foundation-sys",
|
|
1210
|
+
"iana-time-zone-haiku",
|
|
1211
|
+
"js-sys",
|
|
1212
|
+
"log",
|
|
1213
|
+
"wasm-bindgen",
|
|
1214
|
+
"windows-core",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "iana-time-zone-haiku"
|
|
1219
|
+
version = "0.1.2"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"cc",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "icu_collections"
|
|
1228
|
+
version = "2.1.1"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"displaydoc",
|
|
1233
|
+
"potential_utf",
|
|
1234
|
+
"yoke",
|
|
1235
|
+
"zerofrom",
|
|
1236
|
+
"zerovec",
|
|
1237
|
+
]
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "icu_locale_core"
|
|
1241
|
+
version = "2.1.1"
|
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1244
|
+
dependencies = [
|
|
1245
|
+
"displaydoc",
|
|
1246
|
+
"litemap",
|
|
1247
|
+
"tinystr",
|
|
1248
|
+
"writeable",
|
|
1249
|
+
"zerovec",
|
|
1250
|
+
]
|
|
1251
|
+
|
|
1252
|
+
[[package]]
|
|
1253
|
+
name = "icu_normalizer"
|
|
1254
|
+
version = "2.1.1"
|
|
1255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1257
|
+
dependencies = [
|
|
1258
|
+
"icu_collections",
|
|
1259
|
+
"icu_normalizer_data",
|
|
1260
|
+
"icu_properties",
|
|
1261
|
+
"icu_provider",
|
|
1262
|
+
"smallvec",
|
|
1263
|
+
"zerovec",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "icu_normalizer_data"
|
|
1268
|
+
version = "2.1.1"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "icu_properties"
|
|
1274
|
+
version = "2.1.2"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1277
|
+
dependencies = [
|
|
1278
|
+
"icu_collections",
|
|
1279
|
+
"icu_locale_core",
|
|
1280
|
+
"icu_properties_data",
|
|
1281
|
+
"icu_provider",
|
|
1282
|
+
"zerotrie",
|
|
1283
|
+
"zerovec",
|
|
1284
|
+
]
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "icu_properties_data"
|
|
1288
|
+
version = "2.1.2"
|
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "icu_provider"
|
|
1294
|
+
version = "2.1.1"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1297
|
+
dependencies = [
|
|
1298
|
+
"displaydoc",
|
|
1299
|
+
"icu_locale_core",
|
|
1300
|
+
"writeable",
|
|
1301
|
+
"yoke",
|
|
1302
|
+
"zerofrom",
|
|
1303
|
+
"zerotrie",
|
|
1304
|
+
"zerovec",
|
|
1305
|
+
]
|
|
1306
|
+
|
|
1307
|
+
[[package]]
|
|
1308
|
+
name = "id-arena"
|
|
1309
|
+
version = "2.3.0"
|
|
1310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1311
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "idna"
|
|
1315
|
+
version = "1.1.0"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1318
|
+
dependencies = [
|
|
1319
|
+
"idna_adapter",
|
|
1320
|
+
"smallvec",
|
|
1321
|
+
"utf8_iter",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "idna_adapter"
|
|
1326
|
+
version = "1.2.1"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1329
|
+
dependencies = [
|
|
1330
|
+
"icu_normalizer",
|
|
1331
|
+
"icu_properties",
|
|
1332
|
+
]
|
|
1333
|
+
|
|
1334
|
+
[[package]]
|
|
1335
|
+
name = "indexmap"
|
|
1336
|
+
version = "2.13.0"
|
|
1337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
1339
|
+
dependencies = [
|
|
1340
|
+
"equivalent",
|
|
1341
|
+
"hashbrown 0.16.1",
|
|
1342
|
+
"serde",
|
|
1343
|
+
"serde_core",
|
|
1344
|
+
]
|
|
1345
|
+
|
|
1346
|
+
[[package]]
|
|
1347
|
+
name = "indoc"
|
|
1348
|
+
version = "2.0.7"
|
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1351
|
+
dependencies = [
|
|
1352
|
+
"rustversion",
|
|
1353
|
+
]
|
|
1354
|
+
|
|
1355
|
+
[[package]]
|
|
1356
|
+
name = "insta"
|
|
1357
|
+
version = "1.46.3"
|
|
1358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
+
checksum = "e82db8c87c7f1ccecb34ce0c24399b8a73081427f3c7c50a5d597925356115e4"
|
|
1360
|
+
dependencies = [
|
|
1361
|
+
"console",
|
|
1362
|
+
"once_cell",
|
|
1363
|
+
"similar",
|
|
1364
|
+
"tempfile",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "instant"
|
|
1369
|
+
version = "0.1.13"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"cfg-if",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "interpolator"
|
|
1378
|
+
version = "0.5.0"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
|
|
1381
|
+
|
|
1382
|
+
[[package]]
|
|
1383
|
+
name = "ipnet"
|
|
1384
|
+
version = "2.11.0"
|
|
1385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1386
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "iri-string"
|
|
1390
|
+
version = "0.7.10"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
1393
|
+
dependencies = [
|
|
1394
|
+
"memchr",
|
|
1395
|
+
"serde",
|
|
1396
|
+
]
|
|
1397
|
+
|
|
1398
|
+
[[package]]
|
|
1399
|
+
name = "is-macro"
|
|
1400
|
+
version = "0.3.7"
|
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
+
checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
|
|
1403
|
+
dependencies = [
|
|
1404
|
+
"heck",
|
|
1405
|
+
"proc-macro2",
|
|
1406
|
+
"quote",
|
|
1407
|
+
"syn",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "is_terminal_polyfill"
|
|
1412
|
+
version = "1.70.2"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "itertools"
|
|
1418
|
+
version = "0.13.0"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1421
|
+
dependencies = [
|
|
1422
|
+
"either",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "itertools"
|
|
1427
|
+
version = "0.14.0"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1430
|
+
dependencies = [
|
|
1431
|
+
"either",
|
|
1432
|
+
]
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "itoa"
|
|
1436
|
+
version = "1.0.17"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "jaq-core"
|
|
1442
|
+
version = "2.2.1"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "77526a72eb79412c29fd141767a6549bbfcb1cb40e00556fe16532d5e878e098"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"dyn-clone",
|
|
1447
|
+
"once_cell",
|
|
1448
|
+
"typed-arena",
|
|
1449
|
+
]
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "jaq-json"
|
|
1453
|
+
version = "1.1.3"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "01dbdbd07b076e8403abac68ce7744d93e2ecd953bbc44bf77bf00e1e81172bc"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"foldhash 0.1.5",
|
|
1458
|
+
"hifijson",
|
|
1459
|
+
"indexmap",
|
|
1460
|
+
"jaq-core",
|
|
1461
|
+
"jaq-std",
|
|
1462
|
+
"serde_json",
|
|
1463
|
+
]
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "jaq-std"
|
|
1467
|
+
version = "2.1.2"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "2c264fe397c981705976c71f1bfe020382b9eda52ae950e57fe885e147bdd67d"
|
|
1470
|
+
dependencies = [
|
|
1471
|
+
"aho-corasick",
|
|
1472
|
+
"base64",
|
|
1473
|
+
"chrono",
|
|
1474
|
+
"jaq-core",
|
|
1475
|
+
"libm",
|
|
1476
|
+
"log",
|
|
1477
|
+
"regex-lite",
|
|
1478
|
+
"urlencoding",
|
|
1479
|
+
]
|
|
1480
|
+
|
|
1481
|
+
[[package]]
|
|
1482
|
+
name = "jni"
|
|
1483
|
+
version = "0.21.1"
|
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
1486
|
+
dependencies = [
|
|
1487
|
+
"cesu8",
|
|
1488
|
+
"cfg-if",
|
|
1489
|
+
"combine",
|
|
1490
|
+
"jni-sys",
|
|
1491
|
+
"log",
|
|
1492
|
+
"thiserror 1.0.69",
|
|
1493
|
+
"walkdir",
|
|
1494
|
+
"windows-sys 0.45.0",
|
|
1495
|
+
]
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "jni-sys"
|
|
1499
|
+
version = "0.3.0"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1502
|
+
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "jobserver"
|
|
1505
|
+
version = "0.1.34"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1508
|
+
dependencies = [
|
|
1509
|
+
"getrandom 0.3.4",
|
|
1510
|
+
"libc",
|
|
1511
|
+
]
|
|
1512
|
+
|
|
1513
|
+
[[package]]
|
|
1514
|
+
name = "js-sys"
|
|
1515
|
+
version = "0.3.85"
|
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
1518
|
+
dependencies = [
|
|
1519
|
+
"once_cell",
|
|
1520
|
+
"wasm-bindgen",
|
|
1521
|
+
]
|
|
1522
|
+
|
|
1523
|
+
[[package]]
|
|
1524
|
+
name = "leb128fmt"
|
|
1525
|
+
version = "0.1.0"
|
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "libc"
|
|
1531
|
+
version = "0.2.181"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "459427e2af2b9c839b132acb702a1c654d95e10f8c326bfc2ad11310e458b1c5"
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "libm"
|
|
1537
|
+
version = "0.2.16"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1540
|
+
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "linux-raw-sys"
|
|
1543
|
+
version = "0.11.0"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "litemap"
|
|
1549
|
+
version = "0.8.1"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1552
|
+
|
|
1553
|
+
[[package]]
|
|
1554
|
+
name = "lock_api"
|
|
1555
|
+
version = "0.4.14"
|
|
1556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1558
|
+
dependencies = [
|
|
1559
|
+
"scopeguard",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "log"
|
|
1564
|
+
version = "0.4.29"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "lru-slab"
|
|
1570
|
+
version = "0.1.2"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "manyhow"
|
|
1576
|
+
version = "0.11.4"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
|
|
1579
|
+
dependencies = [
|
|
1580
|
+
"manyhow-macros",
|
|
1581
|
+
"proc-macro2",
|
|
1582
|
+
"quote",
|
|
1583
|
+
"syn",
|
|
1584
|
+
]
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "manyhow-macros"
|
|
1588
|
+
version = "0.11.4"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
|
|
1591
|
+
dependencies = [
|
|
1592
|
+
"proc-macro-utils",
|
|
1593
|
+
"proc-macro2",
|
|
1594
|
+
"quote",
|
|
1595
|
+
]
|
|
1596
|
+
|
|
1597
|
+
[[package]]
|
|
1598
|
+
name = "matrixmultiply"
|
|
1599
|
+
version = "0.3.10"
|
|
1600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1601
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
1602
|
+
dependencies = [
|
|
1603
|
+
"autocfg",
|
|
1604
|
+
"rawpointer",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "memchr"
|
|
1609
|
+
version = "2.8.0"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1612
|
+
|
|
1613
|
+
[[package]]
|
|
1614
|
+
name = "memoffset"
|
|
1615
|
+
version = "0.9.1"
|
|
1616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1618
|
+
dependencies = [
|
|
1619
|
+
"autocfg",
|
|
1620
|
+
]
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "mime"
|
|
1624
|
+
version = "0.3.17"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "miniz_oxide"
|
|
1630
|
+
version = "0.8.9"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"adler2",
|
|
1635
|
+
"simd-adler32",
|
|
1636
|
+
]
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "mio"
|
|
1640
|
+
version = "1.1.1"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1643
|
+
dependencies = [
|
|
1644
|
+
"libc",
|
|
1645
|
+
"wasi",
|
|
1646
|
+
"windows-sys 0.61.2",
|
|
1647
|
+
]
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "monty"
|
|
1651
|
+
version = "0.0.4"
|
|
1652
|
+
source = "git+https://github.com/pydantic/monty#20d9d27bda234336e077c673ca1a2e713f2e787f"
|
|
1653
|
+
dependencies = [
|
|
1654
|
+
"ahash",
|
|
1655
|
+
"hashbrown 0.16.1",
|
|
1656
|
+
"indexmap",
|
|
1657
|
+
"num-bigint",
|
|
1658
|
+
"num-integer",
|
|
1659
|
+
"num-traits",
|
|
1660
|
+
"postcard",
|
|
1661
|
+
"ruff_python_ast",
|
|
1662
|
+
"ruff_python_parser",
|
|
1663
|
+
"ruff_text_size",
|
|
1664
|
+
"serde",
|
|
1665
|
+
"smallvec",
|
|
1666
|
+
"strum",
|
|
1667
|
+
]
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "nalgebra"
|
|
1671
|
+
version = "0.33.2"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "26aecdf64b707efd1310e3544d709c5c0ac61c13756046aaaba41be5c4f66a3b"
|
|
1674
|
+
dependencies = [
|
|
1675
|
+
"approx",
|
|
1676
|
+
"matrixmultiply",
|
|
1677
|
+
"num-complex",
|
|
1678
|
+
"num-rational",
|
|
1679
|
+
"num-traits",
|
|
1680
|
+
"rand 0.8.5",
|
|
1681
|
+
"rand_distr",
|
|
1682
|
+
"simba",
|
|
1683
|
+
"typenum",
|
|
1684
|
+
]
|
|
1685
|
+
|
|
1686
|
+
[[package]]
|
|
1687
|
+
name = "num-bigint"
|
|
1688
|
+
version = "0.4.6"
|
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1691
|
+
dependencies = [
|
|
1692
|
+
"num-integer",
|
|
1693
|
+
"num-traits",
|
|
1694
|
+
"serde",
|
|
1695
|
+
]
|
|
1696
|
+
|
|
1697
|
+
[[package]]
|
|
1698
|
+
name = "num-complex"
|
|
1699
|
+
version = "0.4.6"
|
|
1700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1702
|
+
dependencies = [
|
|
1703
|
+
"num-traits",
|
|
1704
|
+
]
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "num-integer"
|
|
1708
|
+
version = "0.1.46"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1711
|
+
dependencies = [
|
|
1712
|
+
"num-traits",
|
|
1713
|
+
]
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "num-rational"
|
|
1717
|
+
version = "0.4.2"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1720
|
+
dependencies = [
|
|
1721
|
+
"num-bigint",
|
|
1722
|
+
"num-integer",
|
|
1723
|
+
"num-traits",
|
|
1724
|
+
]
|
|
1725
|
+
|
|
1726
|
+
[[package]]
|
|
1727
|
+
name = "num-traits"
|
|
1728
|
+
version = "0.2.19"
|
|
1729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1731
|
+
dependencies = [
|
|
1732
|
+
"autocfg",
|
|
1733
|
+
"libm",
|
|
1734
|
+
]
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "once_cell"
|
|
1738
|
+
version = "1.21.3"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "once_cell_polyfill"
|
|
1744
|
+
version = "1.70.2"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "oorandom"
|
|
1750
|
+
version = "11.1.5"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "openssl-probe"
|
|
1756
|
+
version = "0.2.1"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1759
|
+
|
|
1760
|
+
[[package]]
|
|
1761
|
+
name = "ordermap"
|
|
1762
|
+
version = "1.1.0"
|
|
1763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
+
checksum = "cfa78c92071bbd3628c22b1a964f7e0eb201dc1456555db072beb1662ecd6715"
|
|
1765
|
+
dependencies = [
|
|
1766
|
+
"indexmap",
|
|
1767
|
+
]
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "page_size"
|
|
1771
|
+
version = "0.6.0"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
|
|
1774
|
+
dependencies = [
|
|
1775
|
+
"libc",
|
|
1776
|
+
"winapi",
|
|
1777
|
+
]
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "papergrid"
|
|
1781
|
+
version = "0.17.0"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "6978128c8b51d8f4080631ceb2302ab51e32cc6e8615f735ee2f83fd269ae3f1"
|
|
1784
|
+
dependencies = [
|
|
1785
|
+
"bytecount",
|
|
1786
|
+
"fnv",
|
|
1787
|
+
"unicode-width",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "parking_lot"
|
|
1792
|
+
version = "0.12.5"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1795
|
+
dependencies = [
|
|
1796
|
+
"lock_api",
|
|
1797
|
+
"parking_lot_core",
|
|
1798
|
+
]
|
|
1799
|
+
|
|
1800
|
+
[[package]]
|
|
1801
|
+
name = "parking_lot_core"
|
|
1802
|
+
version = "0.9.12"
|
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1805
|
+
dependencies = [
|
|
1806
|
+
"cfg-if",
|
|
1807
|
+
"libc",
|
|
1808
|
+
"redox_syscall",
|
|
1809
|
+
"smallvec",
|
|
1810
|
+
"windows-link",
|
|
1811
|
+
]
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "paste"
|
|
1815
|
+
version = "1.0.15"
|
|
1816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1818
|
+
|
|
1819
|
+
[[package]]
|
|
1820
|
+
name = "percent-encoding"
|
|
1821
|
+
version = "2.3.2"
|
|
1822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1824
|
+
|
|
1825
|
+
[[package]]
|
|
1826
|
+
name = "phf"
|
|
1827
|
+
version = "0.11.3"
|
|
1828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1829
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
1830
|
+
dependencies = [
|
|
1831
|
+
"phf_shared",
|
|
1832
|
+
]
|
|
1833
|
+
|
|
1834
|
+
[[package]]
|
|
1835
|
+
name = "phf_codegen"
|
|
1836
|
+
version = "0.11.3"
|
|
1837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
1839
|
+
dependencies = [
|
|
1840
|
+
"phf_generator",
|
|
1841
|
+
"phf_shared",
|
|
1842
|
+
]
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "phf_generator"
|
|
1846
|
+
version = "0.11.3"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
1849
|
+
dependencies = [
|
|
1850
|
+
"phf_shared",
|
|
1851
|
+
"rand 0.8.5",
|
|
1852
|
+
]
|
|
1853
|
+
|
|
1854
|
+
[[package]]
|
|
1855
|
+
name = "phf_shared"
|
|
1856
|
+
version = "0.11.3"
|
|
1857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
1859
|
+
dependencies = [
|
|
1860
|
+
"siphasher",
|
|
1861
|
+
]
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "pin-project-lite"
|
|
1865
|
+
version = "0.2.16"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1868
|
+
|
|
1869
|
+
[[package]]
|
|
1870
|
+
name = "pin-utils"
|
|
1871
|
+
version = "0.1.0"
|
|
1872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1874
|
+
|
|
1875
|
+
[[package]]
|
|
1876
|
+
name = "plotters"
|
|
1877
|
+
version = "0.3.7"
|
|
1878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1879
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1880
|
+
dependencies = [
|
|
1881
|
+
"num-traits",
|
|
1882
|
+
"plotters-backend",
|
|
1883
|
+
"plotters-svg",
|
|
1884
|
+
"wasm-bindgen",
|
|
1885
|
+
"web-sys",
|
|
1886
|
+
]
|
|
1887
|
+
|
|
1888
|
+
[[package]]
|
|
1889
|
+
name = "plotters-backend"
|
|
1890
|
+
version = "0.3.7"
|
|
1891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1892
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
1893
|
+
|
|
1894
|
+
[[package]]
|
|
1895
|
+
name = "plotters-svg"
|
|
1896
|
+
version = "0.3.7"
|
|
1897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
1899
|
+
dependencies = [
|
|
1900
|
+
"plotters-backend",
|
|
1901
|
+
]
|
|
1902
|
+
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "portable-atomic"
|
|
1905
|
+
version = "1.13.1"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1908
|
+
|
|
1909
|
+
[[package]]
|
|
1910
|
+
name = "postcard"
|
|
1911
|
+
version = "1.1.3"
|
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
1914
|
+
dependencies = [
|
|
1915
|
+
"cobs",
|
|
1916
|
+
"embedded-io 0.4.0",
|
|
1917
|
+
"embedded-io 0.6.1",
|
|
1918
|
+
"heapless",
|
|
1919
|
+
"serde",
|
|
1920
|
+
]
|
|
1921
|
+
|
|
1922
|
+
[[package]]
|
|
1923
|
+
name = "potential_utf"
|
|
1924
|
+
version = "0.1.4"
|
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
1927
|
+
dependencies = [
|
|
1928
|
+
"zerovec",
|
|
1929
|
+
]
|
|
1930
|
+
|
|
1931
|
+
[[package]]
|
|
1932
|
+
name = "ppv-lite86"
|
|
1933
|
+
version = "0.2.21"
|
|
1934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1936
|
+
dependencies = [
|
|
1937
|
+
"zerocopy",
|
|
1938
|
+
]
|
|
1939
|
+
|
|
1940
|
+
[[package]]
|
|
1941
|
+
name = "pretty_assertions"
|
|
1942
|
+
version = "1.4.1"
|
|
1943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1944
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
1945
|
+
dependencies = [
|
|
1946
|
+
"diff",
|
|
1947
|
+
"yansi",
|
|
1948
|
+
]
|
|
1949
|
+
|
|
1950
|
+
[[package]]
|
|
1951
|
+
name = "prettyplease"
|
|
1952
|
+
version = "0.2.37"
|
|
1953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1954
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1955
|
+
dependencies = [
|
|
1956
|
+
"proc-macro2",
|
|
1957
|
+
"syn",
|
|
1958
|
+
]
|
|
1959
|
+
|
|
1960
|
+
[[package]]
|
|
1961
|
+
name = "proc-macro-error-attr2"
|
|
1962
|
+
version = "2.0.0"
|
|
1963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
1965
|
+
dependencies = [
|
|
1966
|
+
"proc-macro2",
|
|
1967
|
+
"quote",
|
|
1968
|
+
]
|
|
1969
|
+
|
|
1970
|
+
[[package]]
|
|
1971
|
+
name = "proc-macro-error2"
|
|
1972
|
+
version = "2.0.1"
|
|
1973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1974
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
1975
|
+
dependencies = [
|
|
1976
|
+
"proc-macro-error-attr2",
|
|
1977
|
+
"proc-macro2",
|
|
1978
|
+
"quote",
|
|
1979
|
+
"syn",
|
|
1980
|
+
]
|
|
1981
|
+
|
|
1982
|
+
[[package]]
|
|
1983
|
+
name = "proc-macro-utils"
|
|
1984
|
+
version = "0.10.0"
|
|
1985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
+
checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
|
|
1987
|
+
dependencies = [
|
|
1988
|
+
"proc-macro2",
|
|
1989
|
+
"quote",
|
|
1990
|
+
"smallvec",
|
|
1991
|
+
]
|
|
1992
|
+
|
|
1993
|
+
[[package]]
|
|
1994
|
+
name = "proc-macro2"
|
|
1995
|
+
version = "1.0.106"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1998
|
+
dependencies = [
|
|
1999
|
+
"unicode-ident",
|
|
2000
|
+
]
|
|
2001
|
+
|
|
2002
|
+
[[package]]
|
|
2003
|
+
name = "proptest"
|
|
2004
|
+
version = "1.10.0"
|
|
2005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
+
checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
|
|
2007
|
+
dependencies = [
|
|
2008
|
+
"bit-set",
|
|
2009
|
+
"bit-vec",
|
|
2010
|
+
"bitflags",
|
|
2011
|
+
"num-traits",
|
|
2012
|
+
"rand 0.9.2",
|
|
2013
|
+
"rand_chacha 0.9.0",
|
|
2014
|
+
"rand_xorshift",
|
|
2015
|
+
"regex-syntax",
|
|
2016
|
+
"rusty-fork",
|
|
2017
|
+
"tempfile",
|
|
2018
|
+
"unarray",
|
|
2019
|
+
]
|
|
2020
|
+
|
|
2021
|
+
[[package]]
|
|
2022
|
+
name = "pyo3"
|
|
2023
|
+
version = "0.24.2"
|
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
2026
|
+
dependencies = [
|
|
2027
|
+
"cfg-if",
|
|
2028
|
+
"indoc",
|
|
2029
|
+
"libc",
|
|
2030
|
+
"memoffset",
|
|
2031
|
+
"once_cell",
|
|
2032
|
+
"portable-atomic",
|
|
2033
|
+
"pyo3-build-config",
|
|
2034
|
+
"pyo3-ffi",
|
|
2035
|
+
"pyo3-macros",
|
|
2036
|
+
"unindent",
|
|
2037
|
+
]
|
|
2038
|
+
|
|
2039
|
+
[[package]]
|
|
2040
|
+
name = "pyo3-async-runtimes"
|
|
2041
|
+
version = "0.24.0"
|
|
2042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2043
|
+
checksum = "dd0b83dc42f9d41f50d38180dad65f0c99763b65a3ff2a81bf351dd35a1df8bf"
|
|
2044
|
+
dependencies = [
|
|
2045
|
+
"futures",
|
|
2046
|
+
"once_cell",
|
|
2047
|
+
"pin-project-lite",
|
|
2048
|
+
"pyo3",
|
|
2049
|
+
"tokio",
|
|
2050
|
+
]
|
|
2051
|
+
|
|
2052
|
+
[[package]]
|
|
2053
|
+
name = "pyo3-build-config"
|
|
2054
|
+
version = "0.24.2"
|
|
2055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
2057
|
+
dependencies = [
|
|
2058
|
+
"once_cell",
|
|
2059
|
+
"python3-dll-a",
|
|
2060
|
+
"target-lexicon",
|
|
2061
|
+
]
|
|
2062
|
+
|
|
2063
|
+
[[package]]
|
|
2064
|
+
name = "pyo3-ffi"
|
|
2065
|
+
version = "0.24.2"
|
|
2066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
2068
|
+
dependencies = [
|
|
2069
|
+
"libc",
|
|
2070
|
+
"pyo3-build-config",
|
|
2071
|
+
]
|
|
2072
|
+
|
|
2073
|
+
[[package]]
|
|
2074
|
+
name = "pyo3-macros"
|
|
2075
|
+
version = "0.24.2"
|
|
2076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
2078
|
+
dependencies = [
|
|
2079
|
+
"proc-macro2",
|
|
2080
|
+
"pyo3-macros-backend",
|
|
2081
|
+
"quote",
|
|
2082
|
+
"syn",
|
|
2083
|
+
]
|
|
2084
|
+
|
|
2085
|
+
[[package]]
|
|
2086
|
+
name = "pyo3-macros-backend"
|
|
2087
|
+
version = "0.24.2"
|
|
2088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2089
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
2090
|
+
dependencies = [
|
|
2091
|
+
"heck",
|
|
2092
|
+
"proc-macro2",
|
|
2093
|
+
"pyo3-build-config",
|
|
2094
|
+
"quote",
|
|
2095
|
+
"syn",
|
|
2096
|
+
]
|
|
2097
|
+
|
|
2098
|
+
[[package]]
|
|
2099
|
+
name = "python3-dll-a"
|
|
2100
|
+
version = "0.2.14"
|
|
2101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2102
|
+
checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
|
|
2103
|
+
dependencies = [
|
|
2104
|
+
"cc",
|
|
2105
|
+
]
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "quick-error"
|
|
2109
|
+
version = "1.2.3"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "quinn"
|
|
2115
|
+
version = "0.11.9"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"bytes",
|
|
2120
|
+
"cfg_aliases",
|
|
2121
|
+
"pin-project-lite",
|
|
2122
|
+
"quinn-proto",
|
|
2123
|
+
"quinn-udp",
|
|
2124
|
+
"rustc-hash",
|
|
2125
|
+
"rustls",
|
|
2126
|
+
"socket2",
|
|
2127
|
+
"thiserror 2.0.18",
|
|
2128
|
+
"tokio",
|
|
2129
|
+
"tracing",
|
|
2130
|
+
"web-time",
|
|
2131
|
+
]
|
|
2132
|
+
|
|
2133
|
+
[[package]]
|
|
2134
|
+
name = "quinn-proto"
|
|
2135
|
+
version = "0.11.13"
|
|
2136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
2138
|
+
dependencies = [
|
|
2139
|
+
"aws-lc-rs",
|
|
2140
|
+
"bytes",
|
|
2141
|
+
"getrandom 0.3.4",
|
|
2142
|
+
"lru-slab",
|
|
2143
|
+
"rand 0.9.2",
|
|
2144
|
+
"ring",
|
|
2145
|
+
"rustc-hash",
|
|
2146
|
+
"rustls",
|
|
2147
|
+
"rustls-pki-types",
|
|
2148
|
+
"slab",
|
|
2149
|
+
"thiserror 2.0.18",
|
|
2150
|
+
"tinyvec",
|
|
2151
|
+
"tracing",
|
|
2152
|
+
"web-time",
|
|
2153
|
+
]
|
|
2154
|
+
|
|
2155
|
+
[[package]]
|
|
2156
|
+
name = "quinn-udp"
|
|
2157
|
+
version = "0.5.14"
|
|
2158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2159
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2160
|
+
dependencies = [
|
|
2161
|
+
"cfg_aliases",
|
|
2162
|
+
"libc",
|
|
2163
|
+
"once_cell",
|
|
2164
|
+
"socket2",
|
|
2165
|
+
"tracing",
|
|
2166
|
+
"windows-sys 0.60.2",
|
|
2167
|
+
]
|
|
2168
|
+
|
|
2169
|
+
[[package]]
|
|
2170
|
+
name = "quote"
|
|
2171
|
+
version = "1.0.44"
|
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
2174
|
+
dependencies = [
|
|
2175
|
+
"proc-macro2",
|
|
2176
|
+
]
|
|
2177
|
+
|
|
2178
|
+
[[package]]
|
|
2179
|
+
name = "quote-use"
|
|
2180
|
+
version = "0.8.4"
|
|
2181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
+
checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
|
|
2183
|
+
dependencies = [
|
|
2184
|
+
"quote",
|
|
2185
|
+
"quote-use-macros",
|
|
2186
|
+
]
|
|
2187
|
+
|
|
2188
|
+
[[package]]
|
|
2189
|
+
name = "quote-use-macros"
|
|
2190
|
+
version = "0.8.4"
|
|
2191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
+
checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
|
|
2193
|
+
dependencies = [
|
|
2194
|
+
"proc-macro-utils",
|
|
2195
|
+
"proc-macro2",
|
|
2196
|
+
"quote",
|
|
2197
|
+
"syn",
|
|
2198
|
+
]
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "r-efi"
|
|
2202
|
+
version = "5.3.0"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2205
|
+
|
|
2206
|
+
[[package]]
|
|
2207
|
+
name = "rand"
|
|
2208
|
+
version = "0.8.5"
|
|
2209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2210
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2211
|
+
dependencies = [
|
|
2212
|
+
"libc",
|
|
2213
|
+
"rand_chacha 0.3.1",
|
|
2214
|
+
"rand_core 0.6.4",
|
|
2215
|
+
]
|
|
2216
|
+
|
|
2217
|
+
[[package]]
|
|
2218
|
+
name = "rand"
|
|
2219
|
+
version = "0.9.2"
|
|
2220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2221
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2222
|
+
dependencies = [
|
|
2223
|
+
"rand_chacha 0.9.0",
|
|
2224
|
+
"rand_core 0.9.5",
|
|
2225
|
+
]
|
|
2226
|
+
|
|
2227
|
+
[[package]]
|
|
2228
|
+
name = "rand_chacha"
|
|
2229
|
+
version = "0.3.1"
|
|
2230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2231
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2232
|
+
dependencies = [
|
|
2233
|
+
"ppv-lite86",
|
|
2234
|
+
"rand_core 0.6.4",
|
|
2235
|
+
]
|
|
2236
|
+
|
|
2237
|
+
[[package]]
|
|
2238
|
+
name = "rand_chacha"
|
|
2239
|
+
version = "0.9.0"
|
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2242
|
+
dependencies = [
|
|
2243
|
+
"ppv-lite86",
|
|
2244
|
+
"rand_core 0.9.5",
|
|
2245
|
+
]
|
|
2246
|
+
|
|
2247
|
+
[[package]]
|
|
2248
|
+
name = "rand_core"
|
|
2249
|
+
version = "0.6.4"
|
|
2250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2251
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2252
|
+
dependencies = [
|
|
2253
|
+
"getrandom 0.2.17",
|
|
2254
|
+
]
|
|
2255
|
+
|
|
2256
|
+
[[package]]
|
|
2257
|
+
name = "rand_core"
|
|
2258
|
+
version = "0.9.5"
|
|
2259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2261
|
+
dependencies = [
|
|
2262
|
+
"getrandom 0.3.4",
|
|
2263
|
+
]
|
|
2264
|
+
|
|
2265
|
+
[[package]]
|
|
2266
|
+
name = "rand_distr"
|
|
2267
|
+
version = "0.4.3"
|
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
2270
|
+
dependencies = [
|
|
2271
|
+
"num-traits",
|
|
2272
|
+
"rand 0.8.5",
|
|
2273
|
+
]
|
|
2274
|
+
|
|
2275
|
+
[[package]]
|
|
2276
|
+
name = "rand_xorshift"
|
|
2277
|
+
version = "0.4.0"
|
|
2278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2279
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
2280
|
+
dependencies = [
|
|
2281
|
+
"rand_core 0.9.5",
|
|
2282
|
+
]
|
|
2283
|
+
|
|
2284
|
+
[[package]]
|
|
2285
|
+
name = "rawpointer"
|
|
2286
|
+
version = "0.2.1"
|
|
2287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2288
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
2289
|
+
|
|
2290
|
+
[[package]]
|
|
2291
|
+
name = "rayon"
|
|
2292
|
+
version = "1.11.0"
|
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
2295
|
+
dependencies = [
|
|
2296
|
+
"either",
|
|
2297
|
+
"rayon-core",
|
|
2298
|
+
]
|
|
2299
|
+
|
|
2300
|
+
[[package]]
|
|
2301
|
+
name = "rayon-core"
|
|
2302
|
+
version = "1.13.0"
|
|
2303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2304
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2305
|
+
dependencies = [
|
|
2306
|
+
"crossbeam-deque",
|
|
2307
|
+
"crossbeam-utils",
|
|
2308
|
+
]
|
|
2309
|
+
|
|
2310
|
+
[[package]]
|
|
2311
|
+
name = "redox_syscall"
|
|
2312
|
+
version = "0.5.18"
|
|
2313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2315
|
+
dependencies = [
|
|
2316
|
+
"bitflags",
|
|
2317
|
+
]
|
|
2318
|
+
|
|
2319
|
+
[[package]]
|
|
2320
|
+
name = "ref-cast"
|
|
2321
|
+
version = "1.0.25"
|
|
2322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2323
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
2324
|
+
dependencies = [
|
|
2325
|
+
"ref-cast-impl",
|
|
2326
|
+
]
|
|
2327
|
+
|
|
2328
|
+
[[package]]
|
|
2329
|
+
name = "ref-cast-impl"
|
|
2330
|
+
version = "1.0.25"
|
|
2331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2332
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
2333
|
+
dependencies = [
|
|
2334
|
+
"proc-macro2",
|
|
2335
|
+
"quote",
|
|
2336
|
+
"syn",
|
|
2337
|
+
]
|
|
2338
|
+
|
|
2339
|
+
[[package]]
|
|
2340
|
+
name = "regex"
|
|
2341
|
+
version = "1.12.3"
|
|
2342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2343
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2344
|
+
dependencies = [
|
|
2345
|
+
"aho-corasick",
|
|
2346
|
+
"memchr",
|
|
2347
|
+
"regex-automata",
|
|
2348
|
+
"regex-syntax",
|
|
2349
|
+
]
|
|
2350
|
+
|
|
2351
|
+
[[package]]
|
|
2352
|
+
name = "regex-automata"
|
|
2353
|
+
version = "0.4.14"
|
|
2354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2355
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2356
|
+
dependencies = [
|
|
2357
|
+
"aho-corasick",
|
|
2358
|
+
"memchr",
|
|
2359
|
+
"regex-syntax",
|
|
2360
|
+
]
|
|
2361
|
+
|
|
2362
|
+
[[package]]
|
|
2363
|
+
name = "regex-lite"
|
|
2364
|
+
version = "0.1.9"
|
|
2365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2366
|
+
checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
|
|
2367
|
+
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "regex-syntax"
|
|
2370
|
+
version = "0.8.9"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "reqwest"
|
|
2376
|
+
version = "0.13.2"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"base64",
|
|
2381
|
+
"bytes",
|
|
2382
|
+
"encoding_rs",
|
|
2383
|
+
"futures-core",
|
|
2384
|
+
"futures-util",
|
|
2385
|
+
"h2",
|
|
2386
|
+
"http",
|
|
2387
|
+
"http-body",
|
|
2388
|
+
"http-body-util",
|
|
2389
|
+
"hyper",
|
|
2390
|
+
"hyper-rustls",
|
|
2391
|
+
"hyper-util",
|
|
2392
|
+
"js-sys",
|
|
2393
|
+
"log",
|
|
2394
|
+
"mime",
|
|
2395
|
+
"percent-encoding",
|
|
2396
|
+
"pin-project-lite",
|
|
2397
|
+
"quinn",
|
|
2398
|
+
"rustls",
|
|
2399
|
+
"rustls-pki-types",
|
|
2400
|
+
"rustls-platform-verifier",
|
|
2401
|
+
"serde",
|
|
2402
|
+
"serde_json",
|
|
2403
|
+
"sync_wrapper",
|
|
2404
|
+
"tokio",
|
|
2405
|
+
"tokio-rustls",
|
|
2406
|
+
"tokio-util",
|
|
2407
|
+
"tower",
|
|
2408
|
+
"tower-http",
|
|
2409
|
+
"tower-service",
|
|
2410
|
+
"url",
|
|
2411
|
+
"wasm-bindgen",
|
|
2412
|
+
"wasm-bindgen-futures",
|
|
2413
|
+
"wasm-streams",
|
|
2414
|
+
"web-sys",
|
|
2415
|
+
]
|
|
2416
|
+
|
|
2417
|
+
[[package]]
|
|
2418
|
+
name = "ring"
|
|
2419
|
+
version = "0.17.14"
|
|
2420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2421
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2422
|
+
dependencies = [
|
|
2423
|
+
"cc",
|
|
2424
|
+
"cfg-if",
|
|
2425
|
+
"getrandom 0.2.17",
|
|
2426
|
+
"libc",
|
|
2427
|
+
"untrusted",
|
|
2428
|
+
"windows-sys 0.52.0",
|
|
2429
|
+
]
|
|
2430
|
+
|
|
2431
|
+
[[package]]
|
|
2432
|
+
name = "ruff_python_ast"
|
|
2433
|
+
version = "0.0.0"
|
|
2434
|
+
source = "git+https://github.com/astral-sh/ruff.git?branch=main#20a17411b2e1567eb6ef207f1e35d45d3863f55e"
|
|
2435
|
+
dependencies = [
|
|
2436
|
+
"aho-corasick",
|
|
2437
|
+
"bitflags",
|
|
2438
|
+
"compact_str",
|
|
2439
|
+
"get-size2",
|
|
2440
|
+
"is-macro",
|
|
2441
|
+
"memchr",
|
|
2442
|
+
"ruff_python_trivia",
|
|
2443
|
+
"ruff_source_file",
|
|
2444
|
+
"ruff_text_size",
|
|
2445
|
+
"rustc-hash",
|
|
2446
|
+
"thiserror 2.0.18",
|
|
2447
|
+
]
|
|
2448
|
+
|
|
2449
|
+
[[package]]
|
|
2450
|
+
name = "ruff_python_parser"
|
|
2451
|
+
version = "0.0.0"
|
|
2452
|
+
source = "git+https://github.com/astral-sh/ruff.git?branch=main#20a17411b2e1567eb6ef207f1e35d45d3863f55e"
|
|
2453
|
+
dependencies = [
|
|
2454
|
+
"bitflags",
|
|
2455
|
+
"bstr",
|
|
2456
|
+
"compact_str",
|
|
2457
|
+
"get-size2",
|
|
2458
|
+
"memchr",
|
|
2459
|
+
"ruff_python_ast",
|
|
2460
|
+
"ruff_python_trivia",
|
|
2461
|
+
"ruff_text_size",
|
|
2462
|
+
"rustc-hash",
|
|
2463
|
+
"static_assertions",
|
|
2464
|
+
"unicode-ident",
|
|
2465
|
+
"unicode-normalization",
|
|
2466
|
+
"unicode_names2",
|
|
2467
|
+
]
|
|
2468
|
+
|
|
2469
|
+
[[package]]
|
|
2470
|
+
name = "ruff_python_trivia"
|
|
2471
|
+
version = "0.0.0"
|
|
2472
|
+
source = "git+https://github.com/astral-sh/ruff.git?branch=main#20a17411b2e1567eb6ef207f1e35d45d3863f55e"
|
|
2473
|
+
dependencies = [
|
|
2474
|
+
"itertools 0.14.0",
|
|
2475
|
+
"ruff_source_file",
|
|
2476
|
+
"ruff_text_size",
|
|
2477
|
+
"unicode-ident",
|
|
2478
|
+
]
|
|
2479
|
+
|
|
2480
|
+
[[package]]
|
|
2481
|
+
name = "ruff_source_file"
|
|
2482
|
+
version = "0.0.0"
|
|
2483
|
+
source = "git+https://github.com/astral-sh/ruff.git?branch=main#20a17411b2e1567eb6ef207f1e35d45d3863f55e"
|
|
2484
|
+
dependencies = [
|
|
2485
|
+
"memchr",
|
|
2486
|
+
"ruff_text_size",
|
|
2487
|
+
]
|
|
2488
|
+
|
|
2489
|
+
[[package]]
|
|
2490
|
+
name = "ruff_text_size"
|
|
2491
|
+
version = "0.0.0"
|
|
2492
|
+
source = "git+https://github.com/astral-sh/ruff.git?branch=main#20a17411b2e1567eb6ef207f1e35d45d3863f55e"
|
|
2493
|
+
dependencies = [
|
|
2494
|
+
"get-size2",
|
|
2495
|
+
]
|
|
2496
|
+
|
|
2497
|
+
[[package]]
|
|
2498
|
+
name = "rustc-hash"
|
|
2499
|
+
version = "2.1.1"
|
|
2500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2501
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2502
|
+
|
|
2503
|
+
[[package]]
|
|
2504
|
+
name = "rustc_version"
|
|
2505
|
+
version = "0.4.1"
|
|
2506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2507
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2508
|
+
dependencies = [
|
|
2509
|
+
"semver",
|
|
2510
|
+
]
|
|
2511
|
+
|
|
2512
|
+
[[package]]
|
|
2513
|
+
name = "rustix"
|
|
2514
|
+
version = "1.1.3"
|
|
2515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
2517
|
+
dependencies = [
|
|
2518
|
+
"bitflags",
|
|
2519
|
+
"errno",
|
|
2520
|
+
"libc",
|
|
2521
|
+
"linux-raw-sys",
|
|
2522
|
+
"windows-sys 0.61.2",
|
|
2523
|
+
]
|
|
2524
|
+
|
|
2525
|
+
[[package]]
|
|
2526
|
+
name = "rustls"
|
|
2527
|
+
version = "0.23.36"
|
|
2528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2529
|
+
checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
|
|
2530
|
+
dependencies = [
|
|
2531
|
+
"aws-lc-rs",
|
|
2532
|
+
"once_cell",
|
|
2533
|
+
"rustls-pki-types",
|
|
2534
|
+
"rustls-webpki",
|
|
2535
|
+
"subtle",
|
|
2536
|
+
"zeroize",
|
|
2537
|
+
]
|
|
2538
|
+
|
|
2539
|
+
[[package]]
|
|
2540
|
+
name = "rustls-native-certs"
|
|
2541
|
+
version = "0.8.3"
|
|
2542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
2544
|
+
dependencies = [
|
|
2545
|
+
"openssl-probe",
|
|
2546
|
+
"rustls-pki-types",
|
|
2547
|
+
"schannel",
|
|
2548
|
+
"security-framework",
|
|
2549
|
+
]
|
|
2550
|
+
|
|
2551
|
+
[[package]]
|
|
2552
|
+
name = "rustls-pki-types"
|
|
2553
|
+
version = "1.14.0"
|
|
2554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2555
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
2556
|
+
dependencies = [
|
|
2557
|
+
"web-time",
|
|
2558
|
+
"zeroize",
|
|
2559
|
+
]
|
|
2560
|
+
|
|
2561
|
+
[[package]]
|
|
2562
|
+
name = "rustls-platform-verifier"
|
|
2563
|
+
version = "0.6.2"
|
|
2564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2565
|
+
checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
|
|
2566
|
+
dependencies = [
|
|
2567
|
+
"core-foundation 0.10.1",
|
|
2568
|
+
"core-foundation-sys",
|
|
2569
|
+
"jni",
|
|
2570
|
+
"log",
|
|
2571
|
+
"once_cell",
|
|
2572
|
+
"rustls",
|
|
2573
|
+
"rustls-native-certs",
|
|
2574
|
+
"rustls-platform-verifier-android",
|
|
2575
|
+
"rustls-webpki",
|
|
2576
|
+
"security-framework",
|
|
2577
|
+
"security-framework-sys",
|
|
2578
|
+
"webpki-root-certs",
|
|
2579
|
+
"windows-sys 0.61.2",
|
|
2580
|
+
]
|
|
2581
|
+
|
|
2582
|
+
[[package]]
|
|
2583
|
+
name = "rustls-platform-verifier-android"
|
|
2584
|
+
version = "0.1.1"
|
|
2585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
2587
|
+
|
|
2588
|
+
[[package]]
|
|
2589
|
+
name = "rustls-webpki"
|
|
2590
|
+
version = "0.103.9"
|
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
+
checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
|
|
2593
|
+
dependencies = [
|
|
2594
|
+
"aws-lc-rs",
|
|
2595
|
+
"ring",
|
|
2596
|
+
"rustls-pki-types",
|
|
2597
|
+
"untrusted",
|
|
2598
|
+
]
|
|
2599
|
+
|
|
2600
|
+
[[package]]
|
|
2601
|
+
name = "rustversion"
|
|
2602
|
+
version = "1.0.22"
|
|
2603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2604
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2605
|
+
|
|
2606
|
+
[[package]]
|
|
2607
|
+
name = "rusty-fork"
|
|
2608
|
+
version = "0.3.1"
|
|
2609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
2611
|
+
dependencies = [
|
|
2612
|
+
"fnv",
|
|
2613
|
+
"quick-error",
|
|
2614
|
+
"tempfile",
|
|
2615
|
+
"wait-timeout",
|
|
2616
|
+
]
|
|
2617
|
+
|
|
2618
|
+
[[package]]
|
|
2619
|
+
name = "ryu"
|
|
2620
|
+
version = "1.0.23"
|
|
2621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2623
|
+
|
|
2624
|
+
[[package]]
|
|
2625
|
+
name = "safe_arch"
|
|
2626
|
+
version = "0.7.4"
|
|
2627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
+
checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
|
|
2629
|
+
dependencies = [
|
|
2630
|
+
"bytemuck",
|
|
2631
|
+
]
|
|
2632
|
+
|
|
2633
|
+
[[package]]
|
|
2634
|
+
name = "same-file"
|
|
2635
|
+
version = "1.0.6"
|
|
2636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2637
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2638
|
+
dependencies = [
|
|
2639
|
+
"winapi-util",
|
|
2640
|
+
]
|
|
2641
|
+
|
|
2642
|
+
[[package]]
|
|
2643
|
+
name = "scc"
|
|
2644
|
+
version = "2.4.0"
|
|
2645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
+
checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
|
|
2647
|
+
dependencies = [
|
|
2648
|
+
"sdd",
|
|
2649
|
+
]
|
|
2650
|
+
|
|
2651
|
+
[[package]]
|
|
2652
|
+
name = "schannel"
|
|
2653
|
+
version = "0.1.28"
|
|
2654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2655
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
2656
|
+
dependencies = [
|
|
2657
|
+
"windows-sys 0.61.2",
|
|
2658
|
+
]
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "schemars"
|
|
2662
|
+
version = "1.2.1"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
|
|
2665
|
+
dependencies = [
|
|
2666
|
+
"dyn-clone",
|
|
2667
|
+
"ref-cast",
|
|
2668
|
+
"schemars_derive",
|
|
2669
|
+
"serde",
|
|
2670
|
+
"serde_json",
|
|
2671
|
+
]
|
|
2672
|
+
|
|
2673
|
+
[[package]]
|
|
2674
|
+
name = "schemars_derive"
|
|
2675
|
+
version = "1.2.1"
|
|
2676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2677
|
+
checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
|
|
2678
|
+
dependencies = [
|
|
2679
|
+
"proc-macro2",
|
|
2680
|
+
"quote",
|
|
2681
|
+
"serde_derive_internals",
|
|
2682
|
+
"syn",
|
|
2683
|
+
]
|
|
2684
|
+
|
|
2685
|
+
[[package]]
|
|
2686
|
+
name = "scopeguard"
|
|
2687
|
+
version = "1.2.0"
|
|
2688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2689
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2690
|
+
|
|
2691
|
+
[[package]]
|
|
2692
|
+
name = "sdd"
|
|
2693
|
+
version = "3.0.10"
|
|
2694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2695
|
+
checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
|
|
2696
|
+
|
|
2697
|
+
[[package]]
|
|
2698
|
+
name = "security-framework"
|
|
2699
|
+
version = "3.5.1"
|
|
2700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2701
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
2702
|
+
dependencies = [
|
|
2703
|
+
"bitflags",
|
|
2704
|
+
"core-foundation 0.10.1",
|
|
2705
|
+
"core-foundation-sys",
|
|
2706
|
+
"libc",
|
|
2707
|
+
"security-framework-sys",
|
|
2708
|
+
]
|
|
2709
|
+
|
|
2710
|
+
[[package]]
|
|
2711
|
+
name = "security-framework-sys"
|
|
2712
|
+
version = "2.15.0"
|
|
2713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2714
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
2715
|
+
dependencies = [
|
|
2716
|
+
"core-foundation-sys",
|
|
2717
|
+
"libc",
|
|
2718
|
+
]
|
|
2719
|
+
|
|
2720
|
+
[[package]]
|
|
2721
|
+
name = "semver"
|
|
2722
|
+
version = "1.0.27"
|
|
2723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2724
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2725
|
+
|
|
2726
|
+
[[package]]
|
|
2727
|
+
name = "serde"
|
|
2728
|
+
version = "1.0.228"
|
|
2729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2730
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2731
|
+
dependencies = [
|
|
2732
|
+
"serde_core",
|
|
2733
|
+
"serde_derive",
|
|
2734
|
+
]
|
|
2735
|
+
|
|
2736
|
+
[[package]]
|
|
2737
|
+
name = "serde_core"
|
|
2738
|
+
version = "1.0.228"
|
|
2739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2741
|
+
dependencies = [
|
|
2742
|
+
"serde_derive",
|
|
2743
|
+
]
|
|
2744
|
+
|
|
2745
|
+
[[package]]
|
|
2746
|
+
name = "serde_derive"
|
|
2747
|
+
version = "1.0.228"
|
|
2748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2749
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2750
|
+
dependencies = [
|
|
2751
|
+
"proc-macro2",
|
|
2752
|
+
"quote",
|
|
2753
|
+
"syn",
|
|
2754
|
+
]
|
|
2755
|
+
|
|
2756
|
+
[[package]]
|
|
2757
|
+
name = "serde_derive_internals"
|
|
2758
|
+
version = "0.29.1"
|
|
2759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2760
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
2761
|
+
dependencies = [
|
|
2762
|
+
"proc-macro2",
|
|
2763
|
+
"quote",
|
|
2764
|
+
"syn",
|
|
2765
|
+
]
|
|
2766
|
+
|
|
2767
|
+
[[package]]
|
|
2768
|
+
name = "serde_json"
|
|
2769
|
+
version = "1.0.149"
|
|
2770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2771
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
2772
|
+
dependencies = [
|
|
2773
|
+
"itoa",
|
|
2774
|
+
"memchr",
|
|
2775
|
+
"serde",
|
|
2776
|
+
"serde_core",
|
|
2777
|
+
"zmij",
|
|
2778
|
+
]
|
|
2779
|
+
|
|
2780
|
+
[[package]]
|
|
2781
|
+
name = "serial_test"
|
|
2782
|
+
version = "3.3.1"
|
|
2783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2784
|
+
checksum = "0d0b343e184fc3b7bb44dff0705fffcf4b3756ba6aff420dddd8b24ca145e555"
|
|
2785
|
+
dependencies = [
|
|
2786
|
+
"futures-executor",
|
|
2787
|
+
"futures-util",
|
|
2788
|
+
"log",
|
|
2789
|
+
"once_cell",
|
|
2790
|
+
"parking_lot",
|
|
2791
|
+
"scc",
|
|
2792
|
+
"serial_test_derive",
|
|
2793
|
+
]
|
|
2794
|
+
|
|
2795
|
+
[[package]]
|
|
2796
|
+
name = "serial_test_derive"
|
|
2797
|
+
version = "3.3.1"
|
|
2798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
|
+
checksum = "6f50427f258fb77356e4cd4aa0e87e2bd2c66dbcee41dc405282cae2bfc26c83"
|
|
2800
|
+
dependencies = [
|
|
2801
|
+
"proc-macro2",
|
|
2802
|
+
"quote",
|
|
2803
|
+
"syn",
|
|
2804
|
+
]
|
|
2805
|
+
|
|
2806
|
+
[[package]]
|
|
2807
|
+
name = "shlex"
|
|
2808
|
+
version = "1.3.0"
|
|
2809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2810
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2811
|
+
|
|
2812
|
+
[[package]]
|
|
2813
|
+
name = "signal-hook-registry"
|
|
2814
|
+
version = "1.4.8"
|
|
2815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2816
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2817
|
+
dependencies = [
|
|
2818
|
+
"errno",
|
|
2819
|
+
"libc",
|
|
2820
|
+
]
|
|
2821
|
+
|
|
2822
|
+
[[package]]
|
|
2823
|
+
name = "simba"
|
|
2824
|
+
version = "0.9.1"
|
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
+
checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
|
|
2827
|
+
dependencies = [
|
|
2828
|
+
"approx",
|
|
2829
|
+
"num-complex",
|
|
2830
|
+
"num-traits",
|
|
2831
|
+
"paste",
|
|
2832
|
+
"wide",
|
|
2833
|
+
]
|
|
2834
|
+
|
|
2835
|
+
[[package]]
|
|
2836
|
+
name = "simd-adler32"
|
|
2837
|
+
version = "0.3.8"
|
|
2838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
2840
|
+
|
|
2841
|
+
[[package]]
|
|
2842
|
+
name = "similar"
|
|
2843
|
+
version = "2.7.0"
|
|
2844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2845
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
2846
|
+
|
|
2847
|
+
[[package]]
|
|
2848
|
+
name = "siphasher"
|
|
2849
|
+
version = "1.0.2"
|
|
2850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2851
|
+
checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
|
|
2852
|
+
|
|
2853
|
+
[[package]]
|
|
2854
|
+
name = "slab"
|
|
2855
|
+
version = "0.4.12"
|
|
2856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2857
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2858
|
+
|
|
2859
|
+
[[package]]
|
|
2860
|
+
name = "smallvec"
|
|
2861
|
+
version = "1.15.1"
|
|
2862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2863
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2864
|
+
dependencies = [
|
|
2865
|
+
"serde",
|
|
2866
|
+
]
|
|
2867
|
+
|
|
2868
|
+
[[package]]
|
|
2869
|
+
name = "socket2"
|
|
2870
|
+
version = "0.6.2"
|
|
2871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
|
+
checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
|
|
2873
|
+
dependencies = [
|
|
2874
|
+
"libc",
|
|
2875
|
+
"windows-sys 0.60.2",
|
|
2876
|
+
]
|
|
2877
|
+
|
|
2878
|
+
[[package]]
|
|
2879
|
+
name = "spin"
|
|
2880
|
+
version = "0.9.8"
|
|
2881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2882
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2883
|
+
dependencies = [
|
|
2884
|
+
"lock_api",
|
|
2885
|
+
]
|
|
2886
|
+
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "stable_deref_trait"
|
|
2889
|
+
version = "1.2.1"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2892
|
+
|
|
2893
|
+
[[package]]
|
|
2894
|
+
name = "static_assertions"
|
|
2895
|
+
version = "1.1.0"
|
|
2896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2898
|
+
|
|
2899
|
+
[[package]]
|
|
2900
|
+
name = "statrs"
|
|
2901
|
+
version = "0.18.0"
|
|
2902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2903
|
+
checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
|
|
2904
|
+
dependencies = [
|
|
2905
|
+
"approx",
|
|
2906
|
+
"nalgebra",
|
|
2907
|
+
"num-traits",
|
|
2908
|
+
"rand 0.8.5",
|
|
2909
|
+
]
|
|
2910
|
+
|
|
2911
|
+
[[package]]
|
|
2912
|
+
name = "strsim"
|
|
2913
|
+
version = "0.11.1"
|
|
2914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2915
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2916
|
+
|
|
2917
|
+
[[package]]
|
|
2918
|
+
name = "strum"
|
|
2919
|
+
version = "0.27.2"
|
|
2920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2921
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
2922
|
+
dependencies = [
|
|
2923
|
+
"strum_macros",
|
|
2924
|
+
]
|
|
2925
|
+
|
|
2926
|
+
[[package]]
|
|
2927
|
+
name = "strum_macros"
|
|
2928
|
+
version = "0.27.2"
|
|
2929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2930
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
2931
|
+
dependencies = [
|
|
2932
|
+
"heck",
|
|
2933
|
+
"proc-macro2",
|
|
2934
|
+
"quote",
|
|
2935
|
+
"syn",
|
|
2936
|
+
]
|
|
2937
|
+
|
|
2938
|
+
[[package]]
|
|
2939
|
+
name = "subtle"
|
|
2940
|
+
version = "2.6.1"
|
|
2941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2942
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2943
|
+
|
|
2944
|
+
[[package]]
|
|
2945
|
+
name = "syn"
|
|
2946
|
+
version = "2.0.114"
|
|
2947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2948
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
2949
|
+
dependencies = [
|
|
2950
|
+
"proc-macro2",
|
|
2951
|
+
"quote",
|
|
2952
|
+
"unicode-ident",
|
|
2953
|
+
]
|
|
2954
|
+
|
|
2955
|
+
[[package]]
|
|
2956
|
+
name = "sync_wrapper"
|
|
2957
|
+
version = "1.0.2"
|
|
2958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2959
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2960
|
+
dependencies = [
|
|
2961
|
+
"futures-core",
|
|
2962
|
+
]
|
|
2963
|
+
|
|
2964
|
+
[[package]]
|
|
2965
|
+
name = "synstructure"
|
|
2966
|
+
version = "0.13.2"
|
|
2967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2968
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2969
|
+
dependencies = [
|
|
2970
|
+
"proc-macro2",
|
|
2971
|
+
"quote",
|
|
2972
|
+
"syn",
|
|
2973
|
+
]
|
|
2974
|
+
|
|
2975
|
+
[[package]]
|
|
2976
|
+
name = "system-configuration"
|
|
2977
|
+
version = "0.7.0"
|
|
2978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2979
|
+
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
2980
|
+
dependencies = [
|
|
2981
|
+
"bitflags",
|
|
2982
|
+
"core-foundation 0.9.4",
|
|
2983
|
+
"system-configuration-sys",
|
|
2984
|
+
]
|
|
2985
|
+
|
|
2986
|
+
[[package]]
|
|
2987
|
+
name = "system-configuration-sys"
|
|
2988
|
+
version = "0.6.0"
|
|
2989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
2991
|
+
dependencies = [
|
|
2992
|
+
"core-foundation-sys",
|
|
2993
|
+
"libc",
|
|
2994
|
+
]
|
|
2995
|
+
|
|
2996
|
+
[[package]]
|
|
2997
|
+
name = "tabled"
|
|
2998
|
+
version = "0.20.0"
|
|
2999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3000
|
+
checksum = "e39a2ee1fbcd360805a771e1b300f78cc88fec7b8d3e2f71cd37bbf23e725c7d"
|
|
3001
|
+
dependencies = [
|
|
3002
|
+
"papergrid",
|
|
3003
|
+
"tabled_derive",
|
|
3004
|
+
"testing_table",
|
|
3005
|
+
]
|
|
3006
|
+
|
|
3007
|
+
[[package]]
|
|
3008
|
+
name = "tabled_derive"
|
|
3009
|
+
version = "0.11.0"
|
|
3010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3011
|
+
checksum = "0ea5d1b13ca6cff1f9231ffd62f15eefd72543dab5e468735f1a456728a02846"
|
|
3012
|
+
dependencies = [
|
|
3013
|
+
"heck",
|
|
3014
|
+
"proc-macro-error2",
|
|
3015
|
+
"proc-macro2",
|
|
3016
|
+
"quote",
|
|
3017
|
+
"syn",
|
|
3018
|
+
]
|
|
3019
|
+
|
|
3020
|
+
[[package]]
|
|
3021
|
+
name = "target-lexicon"
|
|
3022
|
+
version = "0.13.4"
|
|
3023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3024
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
3025
|
+
|
|
3026
|
+
[[package]]
|
|
3027
|
+
name = "tempfile"
|
|
3028
|
+
version = "3.25.0"
|
|
3029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3030
|
+
checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
|
|
3031
|
+
dependencies = [
|
|
3032
|
+
"fastrand",
|
|
3033
|
+
"getrandom 0.4.1",
|
|
3034
|
+
"once_cell",
|
|
3035
|
+
"rustix",
|
|
3036
|
+
"windows-sys 0.61.2",
|
|
3037
|
+
]
|
|
3038
|
+
|
|
3039
|
+
[[package]]
|
|
3040
|
+
name = "testing_table"
|
|
3041
|
+
version = "0.3.0"
|
|
3042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3043
|
+
checksum = "0f8daae29995a24f65619e19d8d31dea5b389f3d853d8bf297bbf607cd0014cc"
|
|
3044
|
+
dependencies = [
|
|
3045
|
+
"unicode-width",
|
|
3046
|
+
]
|
|
3047
|
+
|
|
3048
|
+
[[package]]
|
|
3049
|
+
name = "thiserror"
|
|
3050
|
+
version = "1.0.69"
|
|
3051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3052
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3053
|
+
dependencies = [
|
|
3054
|
+
"thiserror-impl 1.0.69",
|
|
3055
|
+
]
|
|
3056
|
+
|
|
3057
|
+
[[package]]
|
|
3058
|
+
name = "thiserror"
|
|
3059
|
+
version = "2.0.18"
|
|
3060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3061
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
3062
|
+
dependencies = [
|
|
3063
|
+
"thiserror-impl 2.0.18",
|
|
3064
|
+
]
|
|
3065
|
+
|
|
3066
|
+
[[package]]
|
|
3067
|
+
name = "thiserror-impl"
|
|
3068
|
+
version = "1.0.69"
|
|
3069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3070
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3071
|
+
dependencies = [
|
|
3072
|
+
"proc-macro2",
|
|
3073
|
+
"quote",
|
|
3074
|
+
"syn",
|
|
3075
|
+
]
|
|
3076
|
+
|
|
3077
|
+
[[package]]
|
|
3078
|
+
name = "thiserror-impl"
|
|
3079
|
+
version = "2.0.18"
|
|
3080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3081
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
3082
|
+
dependencies = [
|
|
3083
|
+
"proc-macro2",
|
|
3084
|
+
"quote",
|
|
3085
|
+
"syn",
|
|
3086
|
+
]
|
|
3087
|
+
|
|
3088
|
+
[[package]]
|
|
3089
|
+
name = "tinystr"
|
|
3090
|
+
version = "0.8.2"
|
|
3091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3092
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
3093
|
+
dependencies = [
|
|
3094
|
+
"displaydoc",
|
|
3095
|
+
"zerovec",
|
|
3096
|
+
]
|
|
3097
|
+
|
|
3098
|
+
[[package]]
|
|
3099
|
+
name = "tinytemplate"
|
|
3100
|
+
version = "1.2.1"
|
|
3101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3102
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
3103
|
+
dependencies = [
|
|
3104
|
+
"serde",
|
|
3105
|
+
"serde_json",
|
|
3106
|
+
]
|
|
3107
|
+
|
|
3108
|
+
[[package]]
|
|
3109
|
+
name = "tinyvec"
|
|
3110
|
+
version = "1.10.0"
|
|
3111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3112
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
3113
|
+
dependencies = [
|
|
3114
|
+
"tinyvec_macros",
|
|
3115
|
+
]
|
|
3116
|
+
|
|
3117
|
+
[[package]]
|
|
3118
|
+
name = "tinyvec_macros"
|
|
3119
|
+
version = "0.1.1"
|
|
3120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3121
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3122
|
+
|
|
3123
|
+
[[package]]
|
|
3124
|
+
name = "tokio"
|
|
3125
|
+
version = "1.49.0"
|
|
3126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3127
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
3128
|
+
dependencies = [
|
|
3129
|
+
"bytes",
|
|
3130
|
+
"libc",
|
|
3131
|
+
"mio",
|
|
3132
|
+
"parking_lot",
|
|
3133
|
+
"pin-project-lite",
|
|
3134
|
+
"signal-hook-registry",
|
|
3135
|
+
"socket2",
|
|
3136
|
+
"tokio-macros",
|
|
3137
|
+
"windows-sys 0.61.2",
|
|
3138
|
+
]
|
|
3139
|
+
|
|
3140
|
+
[[package]]
|
|
3141
|
+
name = "tokio-macros"
|
|
3142
|
+
version = "2.6.0"
|
|
3143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3144
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
3145
|
+
dependencies = [
|
|
3146
|
+
"proc-macro2",
|
|
3147
|
+
"quote",
|
|
3148
|
+
"syn",
|
|
3149
|
+
]
|
|
3150
|
+
|
|
3151
|
+
[[package]]
|
|
3152
|
+
name = "tokio-rustls"
|
|
3153
|
+
version = "0.26.4"
|
|
3154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3155
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
3156
|
+
dependencies = [
|
|
3157
|
+
"rustls",
|
|
3158
|
+
"tokio",
|
|
3159
|
+
]
|
|
3160
|
+
|
|
3161
|
+
[[package]]
|
|
3162
|
+
name = "tokio-stream"
|
|
3163
|
+
version = "0.1.18"
|
|
3164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3165
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
3166
|
+
dependencies = [
|
|
3167
|
+
"futures-core",
|
|
3168
|
+
"pin-project-lite",
|
|
3169
|
+
"tokio",
|
|
3170
|
+
]
|
|
3171
|
+
|
|
3172
|
+
[[package]]
|
|
3173
|
+
name = "tokio-test"
|
|
3174
|
+
version = "0.4.5"
|
|
3175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3176
|
+
checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545"
|
|
3177
|
+
dependencies = [
|
|
3178
|
+
"futures-core",
|
|
3179
|
+
"tokio",
|
|
3180
|
+
"tokio-stream",
|
|
3181
|
+
]
|
|
3182
|
+
|
|
3183
|
+
[[package]]
|
|
3184
|
+
name = "tokio-util"
|
|
3185
|
+
version = "0.7.18"
|
|
3186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3187
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
3188
|
+
dependencies = [
|
|
3189
|
+
"bytes",
|
|
3190
|
+
"futures-core",
|
|
3191
|
+
"futures-sink",
|
|
3192
|
+
"pin-project-lite",
|
|
3193
|
+
"tokio",
|
|
3194
|
+
]
|
|
3195
|
+
|
|
3196
|
+
[[package]]
|
|
3197
|
+
name = "tower"
|
|
3198
|
+
version = "0.5.3"
|
|
3199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3200
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
3201
|
+
dependencies = [
|
|
3202
|
+
"futures-core",
|
|
3203
|
+
"futures-util",
|
|
3204
|
+
"pin-project-lite",
|
|
3205
|
+
"sync_wrapper",
|
|
3206
|
+
"tokio",
|
|
3207
|
+
"tower-layer",
|
|
3208
|
+
"tower-service",
|
|
3209
|
+
]
|
|
3210
|
+
|
|
3211
|
+
[[package]]
|
|
3212
|
+
name = "tower-http"
|
|
3213
|
+
version = "0.6.8"
|
|
3214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3215
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
3216
|
+
dependencies = [
|
|
3217
|
+
"bitflags",
|
|
3218
|
+
"bytes",
|
|
3219
|
+
"futures-util",
|
|
3220
|
+
"http",
|
|
3221
|
+
"http-body",
|
|
3222
|
+
"iri-string",
|
|
3223
|
+
"pin-project-lite",
|
|
3224
|
+
"tower",
|
|
3225
|
+
"tower-layer",
|
|
3226
|
+
"tower-service",
|
|
3227
|
+
]
|
|
3228
|
+
|
|
3229
|
+
[[package]]
|
|
3230
|
+
name = "tower-layer"
|
|
3231
|
+
version = "0.3.3"
|
|
3232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3233
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3234
|
+
|
|
3235
|
+
[[package]]
|
|
3236
|
+
name = "tower-service"
|
|
3237
|
+
version = "0.3.3"
|
|
3238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3239
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3240
|
+
|
|
3241
|
+
[[package]]
|
|
3242
|
+
name = "tracing"
|
|
3243
|
+
version = "0.1.44"
|
|
3244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3245
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3246
|
+
dependencies = [
|
|
3247
|
+
"pin-project-lite",
|
|
3248
|
+
"tracing-attributes",
|
|
3249
|
+
"tracing-core",
|
|
3250
|
+
]
|
|
3251
|
+
|
|
3252
|
+
[[package]]
|
|
3253
|
+
name = "tracing-attributes"
|
|
3254
|
+
version = "0.1.31"
|
|
3255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3256
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3257
|
+
dependencies = [
|
|
3258
|
+
"proc-macro2",
|
|
3259
|
+
"quote",
|
|
3260
|
+
"syn",
|
|
3261
|
+
]
|
|
3262
|
+
|
|
3263
|
+
[[package]]
|
|
3264
|
+
name = "tracing-core"
|
|
3265
|
+
version = "0.1.36"
|
|
3266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3267
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3268
|
+
dependencies = [
|
|
3269
|
+
"once_cell",
|
|
3270
|
+
]
|
|
3271
|
+
|
|
3272
|
+
[[package]]
|
|
3273
|
+
name = "try-lock"
|
|
3274
|
+
version = "0.2.5"
|
|
3275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3276
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3277
|
+
|
|
3278
|
+
[[package]]
|
|
3279
|
+
name = "typed-arena"
|
|
3280
|
+
version = "2.0.2"
|
|
3281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3282
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
3283
|
+
|
|
3284
|
+
[[package]]
|
|
3285
|
+
name = "typenum"
|
|
3286
|
+
version = "1.19.0"
|
|
3287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3288
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3289
|
+
|
|
3290
|
+
[[package]]
|
|
3291
|
+
name = "unarray"
|
|
3292
|
+
version = "0.1.4"
|
|
3293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3294
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
3295
|
+
|
|
3296
|
+
[[package]]
|
|
3297
|
+
name = "unicode-ident"
|
|
3298
|
+
version = "1.0.23"
|
|
3299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3300
|
+
checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
|
|
3301
|
+
|
|
3302
|
+
[[package]]
|
|
3303
|
+
name = "unicode-normalization"
|
|
3304
|
+
version = "0.1.25"
|
|
3305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3306
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
3307
|
+
dependencies = [
|
|
3308
|
+
"tinyvec",
|
|
3309
|
+
]
|
|
3310
|
+
|
|
3311
|
+
[[package]]
|
|
3312
|
+
name = "unicode-width"
|
|
3313
|
+
version = "0.2.2"
|
|
3314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3315
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3316
|
+
|
|
3317
|
+
[[package]]
|
|
3318
|
+
name = "unicode-xid"
|
|
3319
|
+
version = "0.2.6"
|
|
3320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3321
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3322
|
+
|
|
3323
|
+
[[package]]
|
|
3324
|
+
name = "unicode_names2"
|
|
3325
|
+
version = "1.3.0"
|
|
3326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3327
|
+
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
|
|
3328
|
+
dependencies = [
|
|
3329
|
+
"phf",
|
|
3330
|
+
"unicode_names2_generator",
|
|
3331
|
+
]
|
|
3332
|
+
|
|
3333
|
+
[[package]]
|
|
3334
|
+
name = "unicode_names2_generator"
|
|
3335
|
+
version = "1.3.0"
|
|
3336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3337
|
+
checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
|
|
3338
|
+
dependencies = [
|
|
3339
|
+
"getopts",
|
|
3340
|
+
"log",
|
|
3341
|
+
"phf_codegen",
|
|
3342
|
+
"rand 0.8.5",
|
|
3343
|
+
]
|
|
3344
|
+
|
|
3345
|
+
[[package]]
|
|
3346
|
+
name = "unindent"
|
|
3347
|
+
version = "0.2.4"
|
|
3348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3349
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3350
|
+
|
|
3351
|
+
[[package]]
|
|
3352
|
+
name = "untrusted"
|
|
3353
|
+
version = "0.9.0"
|
|
3354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3355
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3356
|
+
|
|
3357
|
+
[[package]]
|
|
3358
|
+
name = "url"
|
|
3359
|
+
version = "2.5.8"
|
|
3360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3361
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
3362
|
+
dependencies = [
|
|
3363
|
+
"form_urlencoded",
|
|
3364
|
+
"idna",
|
|
3365
|
+
"percent-encoding",
|
|
3366
|
+
"serde",
|
|
3367
|
+
]
|
|
3368
|
+
|
|
3369
|
+
[[package]]
|
|
3370
|
+
name = "urlencoding"
|
|
3371
|
+
version = "2.1.3"
|
|
3372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3373
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
3374
|
+
|
|
3375
|
+
[[package]]
|
|
3376
|
+
name = "utf8_iter"
|
|
3377
|
+
version = "1.0.4"
|
|
3378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3379
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3380
|
+
|
|
3381
|
+
[[package]]
|
|
3382
|
+
name = "utf8parse"
|
|
3383
|
+
version = "0.2.2"
|
|
3384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3385
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3386
|
+
|
|
3387
|
+
[[package]]
|
|
3388
|
+
name = "version_check"
|
|
3389
|
+
version = "0.9.5"
|
|
3390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3391
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3392
|
+
|
|
3393
|
+
[[package]]
|
|
3394
|
+
name = "wait-timeout"
|
|
3395
|
+
version = "0.2.1"
|
|
3396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3397
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
3398
|
+
dependencies = [
|
|
3399
|
+
"libc",
|
|
3400
|
+
]
|
|
3401
|
+
|
|
3402
|
+
[[package]]
|
|
3403
|
+
name = "walkdir"
|
|
3404
|
+
version = "2.5.0"
|
|
3405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3406
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3407
|
+
dependencies = [
|
|
3408
|
+
"same-file",
|
|
3409
|
+
"winapi-util",
|
|
3410
|
+
]
|
|
3411
|
+
|
|
3412
|
+
[[package]]
|
|
3413
|
+
name = "want"
|
|
3414
|
+
version = "0.3.1"
|
|
3415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3416
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3417
|
+
dependencies = [
|
|
3418
|
+
"try-lock",
|
|
3419
|
+
]
|
|
3420
|
+
|
|
3421
|
+
[[package]]
|
|
3422
|
+
name = "wasi"
|
|
3423
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3425
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3426
|
+
|
|
3427
|
+
[[package]]
|
|
3428
|
+
name = "wasip2"
|
|
3429
|
+
version = "1.0.2+wasi-0.2.9"
|
|
3430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
3432
|
+
dependencies = [
|
|
3433
|
+
"wit-bindgen",
|
|
3434
|
+
]
|
|
3435
|
+
|
|
3436
|
+
[[package]]
|
|
3437
|
+
name = "wasip3"
|
|
3438
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
3439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3440
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
3441
|
+
dependencies = [
|
|
3442
|
+
"wit-bindgen",
|
|
3443
|
+
]
|
|
3444
|
+
|
|
3445
|
+
[[package]]
|
|
3446
|
+
name = "wasm-bindgen"
|
|
3447
|
+
version = "0.2.108"
|
|
3448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3449
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
3450
|
+
dependencies = [
|
|
3451
|
+
"cfg-if",
|
|
3452
|
+
"once_cell",
|
|
3453
|
+
"rustversion",
|
|
3454
|
+
"wasm-bindgen-macro",
|
|
3455
|
+
"wasm-bindgen-shared",
|
|
3456
|
+
]
|
|
3457
|
+
|
|
3458
|
+
[[package]]
|
|
3459
|
+
name = "wasm-bindgen-futures"
|
|
3460
|
+
version = "0.4.58"
|
|
3461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3462
|
+
checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
|
|
3463
|
+
dependencies = [
|
|
3464
|
+
"cfg-if",
|
|
3465
|
+
"futures-util",
|
|
3466
|
+
"js-sys",
|
|
3467
|
+
"once_cell",
|
|
3468
|
+
"wasm-bindgen",
|
|
3469
|
+
"web-sys",
|
|
3470
|
+
]
|
|
3471
|
+
|
|
3472
|
+
[[package]]
|
|
3473
|
+
name = "wasm-bindgen-macro"
|
|
3474
|
+
version = "0.2.108"
|
|
3475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3476
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
3477
|
+
dependencies = [
|
|
3478
|
+
"quote",
|
|
3479
|
+
"wasm-bindgen-macro-support",
|
|
3480
|
+
]
|
|
3481
|
+
|
|
3482
|
+
[[package]]
|
|
3483
|
+
name = "wasm-bindgen-macro-support"
|
|
3484
|
+
version = "0.2.108"
|
|
3485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3486
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
3487
|
+
dependencies = [
|
|
3488
|
+
"bumpalo",
|
|
3489
|
+
"proc-macro2",
|
|
3490
|
+
"quote",
|
|
3491
|
+
"syn",
|
|
3492
|
+
"wasm-bindgen-shared",
|
|
3493
|
+
]
|
|
3494
|
+
|
|
3495
|
+
[[package]]
|
|
3496
|
+
name = "wasm-bindgen-shared"
|
|
3497
|
+
version = "0.2.108"
|
|
3498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3499
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
3500
|
+
dependencies = [
|
|
3501
|
+
"unicode-ident",
|
|
3502
|
+
]
|
|
3503
|
+
|
|
3504
|
+
[[package]]
|
|
3505
|
+
name = "wasm-encoder"
|
|
3506
|
+
version = "0.244.0"
|
|
3507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3508
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
3509
|
+
dependencies = [
|
|
3510
|
+
"leb128fmt",
|
|
3511
|
+
"wasmparser",
|
|
3512
|
+
]
|
|
3513
|
+
|
|
3514
|
+
[[package]]
|
|
3515
|
+
name = "wasm-metadata"
|
|
3516
|
+
version = "0.244.0"
|
|
3517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3518
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
3519
|
+
dependencies = [
|
|
3520
|
+
"anyhow",
|
|
3521
|
+
"indexmap",
|
|
3522
|
+
"wasm-encoder",
|
|
3523
|
+
"wasmparser",
|
|
3524
|
+
]
|
|
3525
|
+
|
|
3526
|
+
[[package]]
|
|
3527
|
+
name = "wasm-streams"
|
|
3528
|
+
version = "0.5.0"
|
|
3529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3530
|
+
checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
|
|
3531
|
+
dependencies = [
|
|
3532
|
+
"futures-util",
|
|
3533
|
+
"js-sys",
|
|
3534
|
+
"wasm-bindgen",
|
|
3535
|
+
"wasm-bindgen-futures",
|
|
3536
|
+
"web-sys",
|
|
3537
|
+
]
|
|
3538
|
+
|
|
3539
|
+
[[package]]
|
|
3540
|
+
name = "wasmparser"
|
|
3541
|
+
version = "0.244.0"
|
|
3542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3543
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
3544
|
+
dependencies = [
|
|
3545
|
+
"bitflags",
|
|
3546
|
+
"hashbrown 0.15.5",
|
|
3547
|
+
"indexmap",
|
|
3548
|
+
"semver",
|
|
3549
|
+
]
|
|
3550
|
+
|
|
3551
|
+
[[package]]
|
|
3552
|
+
name = "web-sys"
|
|
3553
|
+
version = "0.3.85"
|
|
3554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3555
|
+
checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
|
|
3556
|
+
dependencies = [
|
|
3557
|
+
"js-sys",
|
|
3558
|
+
"wasm-bindgen",
|
|
3559
|
+
]
|
|
3560
|
+
|
|
3561
|
+
[[package]]
|
|
3562
|
+
name = "web-time"
|
|
3563
|
+
version = "1.1.0"
|
|
3564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3566
|
+
dependencies = [
|
|
3567
|
+
"js-sys",
|
|
3568
|
+
"wasm-bindgen",
|
|
3569
|
+
]
|
|
3570
|
+
|
|
3571
|
+
[[package]]
|
|
3572
|
+
name = "webpki-root-certs"
|
|
3573
|
+
version = "1.0.6"
|
|
3574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3575
|
+
checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
|
|
3576
|
+
dependencies = [
|
|
3577
|
+
"rustls-pki-types",
|
|
3578
|
+
]
|
|
3579
|
+
|
|
3580
|
+
[[package]]
|
|
3581
|
+
name = "wide"
|
|
3582
|
+
version = "0.7.33"
|
|
3583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3584
|
+
checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
|
|
3585
|
+
dependencies = [
|
|
3586
|
+
"bytemuck",
|
|
3587
|
+
"safe_arch",
|
|
3588
|
+
]
|
|
3589
|
+
|
|
3590
|
+
[[package]]
|
|
3591
|
+
name = "winapi"
|
|
3592
|
+
version = "0.3.9"
|
|
3593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3594
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3595
|
+
dependencies = [
|
|
3596
|
+
"winapi-i686-pc-windows-gnu",
|
|
3597
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3598
|
+
]
|
|
3599
|
+
|
|
3600
|
+
[[package]]
|
|
3601
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3602
|
+
version = "0.4.0"
|
|
3603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3604
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3605
|
+
|
|
3606
|
+
[[package]]
|
|
3607
|
+
name = "winapi-util"
|
|
3608
|
+
version = "0.1.11"
|
|
3609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3610
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3611
|
+
dependencies = [
|
|
3612
|
+
"windows-sys 0.61.2",
|
|
3613
|
+
]
|
|
3614
|
+
|
|
3615
|
+
[[package]]
|
|
3616
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3617
|
+
version = "0.4.0"
|
|
3618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3620
|
+
|
|
3621
|
+
[[package]]
|
|
3622
|
+
name = "windows-core"
|
|
3623
|
+
version = "0.62.2"
|
|
3624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3625
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3626
|
+
dependencies = [
|
|
3627
|
+
"windows-implement",
|
|
3628
|
+
"windows-interface",
|
|
3629
|
+
"windows-link",
|
|
3630
|
+
"windows-result",
|
|
3631
|
+
"windows-strings",
|
|
3632
|
+
]
|
|
3633
|
+
|
|
3634
|
+
[[package]]
|
|
3635
|
+
name = "windows-implement"
|
|
3636
|
+
version = "0.60.2"
|
|
3637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3638
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3639
|
+
dependencies = [
|
|
3640
|
+
"proc-macro2",
|
|
3641
|
+
"quote",
|
|
3642
|
+
"syn",
|
|
3643
|
+
]
|
|
3644
|
+
|
|
3645
|
+
[[package]]
|
|
3646
|
+
name = "windows-interface"
|
|
3647
|
+
version = "0.59.3"
|
|
3648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3649
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3650
|
+
dependencies = [
|
|
3651
|
+
"proc-macro2",
|
|
3652
|
+
"quote",
|
|
3653
|
+
"syn",
|
|
3654
|
+
]
|
|
3655
|
+
|
|
3656
|
+
[[package]]
|
|
3657
|
+
name = "windows-link"
|
|
3658
|
+
version = "0.2.1"
|
|
3659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3660
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3661
|
+
|
|
3662
|
+
[[package]]
|
|
3663
|
+
name = "windows-registry"
|
|
3664
|
+
version = "0.6.1"
|
|
3665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3666
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
3667
|
+
dependencies = [
|
|
3668
|
+
"windows-link",
|
|
3669
|
+
"windows-result",
|
|
3670
|
+
"windows-strings",
|
|
3671
|
+
]
|
|
3672
|
+
|
|
3673
|
+
[[package]]
|
|
3674
|
+
name = "windows-result"
|
|
3675
|
+
version = "0.4.1"
|
|
3676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3677
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3678
|
+
dependencies = [
|
|
3679
|
+
"windows-link",
|
|
3680
|
+
]
|
|
3681
|
+
|
|
3682
|
+
[[package]]
|
|
3683
|
+
name = "windows-strings"
|
|
3684
|
+
version = "0.5.1"
|
|
3685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3686
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3687
|
+
dependencies = [
|
|
3688
|
+
"windows-link",
|
|
3689
|
+
]
|
|
3690
|
+
|
|
3691
|
+
[[package]]
|
|
3692
|
+
name = "windows-sys"
|
|
3693
|
+
version = "0.45.0"
|
|
3694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3695
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
3696
|
+
dependencies = [
|
|
3697
|
+
"windows-targets 0.42.2",
|
|
3698
|
+
]
|
|
3699
|
+
|
|
3700
|
+
[[package]]
|
|
3701
|
+
name = "windows-sys"
|
|
3702
|
+
version = "0.52.0"
|
|
3703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3704
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3705
|
+
dependencies = [
|
|
3706
|
+
"windows-targets 0.52.6",
|
|
3707
|
+
]
|
|
3708
|
+
|
|
3709
|
+
[[package]]
|
|
3710
|
+
name = "windows-sys"
|
|
3711
|
+
version = "0.59.0"
|
|
3712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3713
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3714
|
+
dependencies = [
|
|
3715
|
+
"windows-targets 0.52.6",
|
|
3716
|
+
]
|
|
3717
|
+
|
|
3718
|
+
[[package]]
|
|
3719
|
+
name = "windows-sys"
|
|
3720
|
+
version = "0.60.2"
|
|
3721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3722
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3723
|
+
dependencies = [
|
|
3724
|
+
"windows-targets 0.53.5",
|
|
3725
|
+
]
|
|
3726
|
+
|
|
3727
|
+
[[package]]
|
|
3728
|
+
name = "windows-sys"
|
|
3729
|
+
version = "0.61.2"
|
|
3730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3731
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3732
|
+
dependencies = [
|
|
3733
|
+
"windows-link",
|
|
3734
|
+
]
|
|
3735
|
+
|
|
3736
|
+
[[package]]
|
|
3737
|
+
name = "windows-targets"
|
|
3738
|
+
version = "0.42.2"
|
|
3739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3740
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
3741
|
+
dependencies = [
|
|
3742
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
3743
|
+
"windows_aarch64_msvc 0.42.2",
|
|
3744
|
+
"windows_i686_gnu 0.42.2",
|
|
3745
|
+
"windows_i686_msvc 0.42.2",
|
|
3746
|
+
"windows_x86_64_gnu 0.42.2",
|
|
3747
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
3748
|
+
"windows_x86_64_msvc 0.42.2",
|
|
3749
|
+
]
|
|
3750
|
+
|
|
3751
|
+
[[package]]
|
|
3752
|
+
name = "windows-targets"
|
|
3753
|
+
version = "0.52.6"
|
|
3754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3755
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3756
|
+
dependencies = [
|
|
3757
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3758
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3759
|
+
"windows_i686_gnu 0.52.6",
|
|
3760
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3761
|
+
"windows_i686_msvc 0.52.6",
|
|
3762
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3763
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3764
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3765
|
+
]
|
|
3766
|
+
|
|
3767
|
+
[[package]]
|
|
3768
|
+
name = "windows-targets"
|
|
3769
|
+
version = "0.53.5"
|
|
3770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3771
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3772
|
+
dependencies = [
|
|
3773
|
+
"windows-link",
|
|
3774
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3775
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3776
|
+
"windows_i686_gnu 0.53.1",
|
|
3777
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3778
|
+
"windows_i686_msvc 0.53.1",
|
|
3779
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3780
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3781
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3782
|
+
]
|
|
3783
|
+
|
|
3784
|
+
[[package]]
|
|
3785
|
+
name = "windows_aarch64_gnullvm"
|
|
3786
|
+
version = "0.42.2"
|
|
3787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3788
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
3789
|
+
|
|
3790
|
+
[[package]]
|
|
3791
|
+
name = "windows_aarch64_gnullvm"
|
|
3792
|
+
version = "0.52.6"
|
|
3793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3794
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3795
|
+
|
|
3796
|
+
[[package]]
|
|
3797
|
+
name = "windows_aarch64_gnullvm"
|
|
3798
|
+
version = "0.53.1"
|
|
3799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3800
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3801
|
+
|
|
3802
|
+
[[package]]
|
|
3803
|
+
name = "windows_aarch64_msvc"
|
|
3804
|
+
version = "0.42.2"
|
|
3805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3806
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
3807
|
+
|
|
3808
|
+
[[package]]
|
|
3809
|
+
name = "windows_aarch64_msvc"
|
|
3810
|
+
version = "0.52.6"
|
|
3811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3812
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3813
|
+
|
|
3814
|
+
[[package]]
|
|
3815
|
+
name = "windows_aarch64_msvc"
|
|
3816
|
+
version = "0.53.1"
|
|
3817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3818
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3819
|
+
|
|
3820
|
+
[[package]]
|
|
3821
|
+
name = "windows_i686_gnu"
|
|
3822
|
+
version = "0.42.2"
|
|
3823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3824
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
3825
|
+
|
|
3826
|
+
[[package]]
|
|
3827
|
+
name = "windows_i686_gnu"
|
|
3828
|
+
version = "0.52.6"
|
|
3829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3830
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3831
|
+
|
|
3832
|
+
[[package]]
|
|
3833
|
+
name = "windows_i686_gnu"
|
|
3834
|
+
version = "0.53.1"
|
|
3835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3836
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3837
|
+
|
|
3838
|
+
[[package]]
|
|
3839
|
+
name = "windows_i686_gnullvm"
|
|
3840
|
+
version = "0.52.6"
|
|
3841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3842
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3843
|
+
|
|
3844
|
+
[[package]]
|
|
3845
|
+
name = "windows_i686_gnullvm"
|
|
3846
|
+
version = "0.53.1"
|
|
3847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3848
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3849
|
+
|
|
3850
|
+
[[package]]
|
|
3851
|
+
name = "windows_i686_msvc"
|
|
3852
|
+
version = "0.42.2"
|
|
3853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3854
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
3855
|
+
|
|
3856
|
+
[[package]]
|
|
3857
|
+
name = "windows_i686_msvc"
|
|
3858
|
+
version = "0.52.6"
|
|
3859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3860
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3861
|
+
|
|
3862
|
+
[[package]]
|
|
3863
|
+
name = "windows_i686_msvc"
|
|
3864
|
+
version = "0.53.1"
|
|
3865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3866
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3867
|
+
|
|
3868
|
+
[[package]]
|
|
3869
|
+
name = "windows_x86_64_gnu"
|
|
3870
|
+
version = "0.42.2"
|
|
3871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3872
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
3873
|
+
|
|
3874
|
+
[[package]]
|
|
3875
|
+
name = "windows_x86_64_gnu"
|
|
3876
|
+
version = "0.52.6"
|
|
3877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3878
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3879
|
+
|
|
3880
|
+
[[package]]
|
|
3881
|
+
name = "windows_x86_64_gnu"
|
|
3882
|
+
version = "0.53.1"
|
|
3883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3884
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3885
|
+
|
|
3886
|
+
[[package]]
|
|
3887
|
+
name = "windows_x86_64_gnullvm"
|
|
3888
|
+
version = "0.42.2"
|
|
3889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3890
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
3891
|
+
|
|
3892
|
+
[[package]]
|
|
3893
|
+
name = "windows_x86_64_gnullvm"
|
|
3894
|
+
version = "0.52.6"
|
|
3895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3896
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3897
|
+
|
|
3898
|
+
[[package]]
|
|
3899
|
+
name = "windows_x86_64_gnullvm"
|
|
3900
|
+
version = "0.53.1"
|
|
3901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3902
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3903
|
+
|
|
3904
|
+
[[package]]
|
|
3905
|
+
name = "windows_x86_64_msvc"
|
|
3906
|
+
version = "0.42.2"
|
|
3907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3908
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
3909
|
+
|
|
3910
|
+
[[package]]
|
|
3911
|
+
name = "windows_x86_64_msvc"
|
|
3912
|
+
version = "0.52.6"
|
|
3913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3914
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3915
|
+
|
|
3916
|
+
[[package]]
|
|
3917
|
+
name = "windows_x86_64_msvc"
|
|
3918
|
+
version = "0.53.1"
|
|
3919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3920
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3921
|
+
|
|
3922
|
+
[[package]]
|
|
3923
|
+
name = "wit-bindgen"
|
|
3924
|
+
version = "0.51.0"
|
|
3925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3926
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
3927
|
+
dependencies = [
|
|
3928
|
+
"wit-bindgen-rust-macro",
|
|
3929
|
+
]
|
|
3930
|
+
|
|
3931
|
+
[[package]]
|
|
3932
|
+
name = "wit-bindgen-core"
|
|
3933
|
+
version = "0.51.0"
|
|
3934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3935
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
3936
|
+
dependencies = [
|
|
3937
|
+
"anyhow",
|
|
3938
|
+
"heck",
|
|
3939
|
+
"wit-parser",
|
|
3940
|
+
]
|
|
3941
|
+
|
|
3942
|
+
[[package]]
|
|
3943
|
+
name = "wit-bindgen-rust"
|
|
3944
|
+
version = "0.51.0"
|
|
3945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3946
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
3947
|
+
dependencies = [
|
|
3948
|
+
"anyhow",
|
|
3949
|
+
"heck",
|
|
3950
|
+
"indexmap",
|
|
3951
|
+
"prettyplease",
|
|
3952
|
+
"syn",
|
|
3953
|
+
"wasm-metadata",
|
|
3954
|
+
"wit-bindgen-core",
|
|
3955
|
+
"wit-component",
|
|
3956
|
+
]
|
|
3957
|
+
|
|
3958
|
+
[[package]]
|
|
3959
|
+
name = "wit-bindgen-rust-macro"
|
|
3960
|
+
version = "0.51.0"
|
|
3961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3962
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
3963
|
+
dependencies = [
|
|
3964
|
+
"anyhow",
|
|
3965
|
+
"prettyplease",
|
|
3966
|
+
"proc-macro2",
|
|
3967
|
+
"quote",
|
|
3968
|
+
"syn",
|
|
3969
|
+
"wit-bindgen-core",
|
|
3970
|
+
"wit-bindgen-rust",
|
|
3971
|
+
]
|
|
3972
|
+
|
|
3973
|
+
[[package]]
|
|
3974
|
+
name = "wit-component"
|
|
3975
|
+
version = "0.244.0"
|
|
3976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3977
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
3978
|
+
dependencies = [
|
|
3979
|
+
"anyhow",
|
|
3980
|
+
"bitflags",
|
|
3981
|
+
"indexmap",
|
|
3982
|
+
"log",
|
|
3983
|
+
"serde",
|
|
3984
|
+
"serde_derive",
|
|
3985
|
+
"serde_json",
|
|
3986
|
+
"wasm-encoder",
|
|
3987
|
+
"wasm-metadata",
|
|
3988
|
+
"wasmparser",
|
|
3989
|
+
"wit-parser",
|
|
3990
|
+
]
|
|
3991
|
+
|
|
3992
|
+
[[package]]
|
|
3993
|
+
name = "wit-parser"
|
|
3994
|
+
version = "0.244.0"
|
|
3995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3996
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
3997
|
+
dependencies = [
|
|
3998
|
+
"anyhow",
|
|
3999
|
+
"id-arena",
|
|
4000
|
+
"indexmap",
|
|
4001
|
+
"log",
|
|
4002
|
+
"semver",
|
|
4003
|
+
"serde",
|
|
4004
|
+
"serde_derive",
|
|
4005
|
+
"serde_json",
|
|
4006
|
+
"unicode-xid",
|
|
4007
|
+
"wasmparser",
|
|
4008
|
+
]
|
|
4009
|
+
|
|
4010
|
+
[[package]]
|
|
4011
|
+
name = "writeable"
|
|
4012
|
+
version = "0.6.2"
|
|
4013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4014
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
4015
|
+
|
|
4016
|
+
[[package]]
|
|
4017
|
+
name = "yansi"
|
|
4018
|
+
version = "1.0.1"
|
|
4019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4020
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
4021
|
+
|
|
4022
|
+
[[package]]
|
|
4023
|
+
name = "yoke"
|
|
4024
|
+
version = "0.8.1"
|
|
4025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4026
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
4027
|
+
dependencies = [
|
|
4028
|
+
"stable_deref_trait",
|
|
4029
|
+
"yoke-derive",
|
|
4030
|
+
"zerofrom",
|
|
4031
|
+
]
|
|
4032
|
+
|
|
4033
|
+
[[package]]
|
|
4034
|
+
name = "yoke-derive"
|
|
4035
|
+
version = "0.8.1"
|
|
4036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4037
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
4038
|
+
dependencies = [
|
|
4039
|
+
"proc-macro2",
|
|
4040
|
+
"quote",
|
|
4041
|
+
"syn",
|
|
4042
|
+
"synstructure",
|
|
4043
|
+
]
|
|
4044
|
+
|
|
4045
|
+
[[package]]
|
|
4046
|
+
name = "zerocopy"
|
|
4047
|
+
version = "0.8.39"
|
|
4048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4049
|
+
checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
|
|
4050
|
+
dependencies = [
|
|
4051
|
+
"zerocopy-derive",
|
|
4052
|
+
]
|
|
4053
|
+
|
|
4054
|
+
[[package]]
|
|
4055
|
+
name = "zerocopy-derive"
|
|
4056
|
+
version = "0.8.39"
|
|
4057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4058
|
+
checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
|
|
4059
|
+
dependencies = [
|
|
4060
|
+
"proc-macro2",
|
|
4061
|
+
"quote",
|
|
4062
|
+
"syn",
|
|
4063
|
+
]
|
|
4064
|
+
|
|
4065
|
+
[[package]]
|
|
4066
|
+
name = "zerofrom"
|
|
4067
|
+
version = "0.1.6"
|
|
4068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4069
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4070
|
+
dependencies = [
|
|
4071
|
+
"zerofrom-derive",
|
|
4072
|
+
]
|
|
4073
|
+
|
|
4074
|
+
[[package]]
|
|
4075
|
+
name = "zerofrom-derive"
|
|
4076
|
+
version = "0.1.6"
|
|
4077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4078
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4079
|
+
dependencies = [
|
|
4080
|
+
"proc-macro2",
|
|
4081
|
+
"quote",
|
|
4082
|
+
"syn",
|
|
4083
|
+
"synstructure",
|
|
4084
|
+
]
|
|
4085
|
+
|
|
4086
|
+
[[package]]
|
|
4087
|
+
name = "zeroize"
|
|
4088
|
+
version = "1.8.2"
|
|
4089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4090
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4091
|
+
|
|
4092
|
+
[[package]]
|
|
4093
|
+
name = "zerotrie"
|
|
4094
|
+
version = "0.2.3"
|
|
4095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4096
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
4097
|
+
dependencies = [
|
|
4098
|
+
"displaydoc",
|
|
4099
|
+
"yoke",
|
|
4100
|
+
"zerofrom",
|
|
4101
|
+
]
|
|
4102
|
+
|
|
4103
|
+
[[package]]
|
|
4104
|
+
name = "zerovec"
|
|
4105
|
+
version = "0.11.5"
|
|
4106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4107
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
4108
|
+
dependencies = [
|
|
4109
|
+
"yoke",
|
|
4110
|
+
"zerofrom",
|
|
4111
|
+
"zerovec-derive",
|
|
4112
|
+
]
|
|
4113
|
+
|
|
4114
|
+
[[package]]
|
|
4115
|
+
name = "zerovec-derive"
|
|
4116
|
+
version = "0.11.2"
|
|
4117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4118
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
4119
|
+
dependencies = [
|
|
4120
|
+
"proc-macro2",
|
|
4121
|
+
"quote",
|
|
4122
|
+
"syn",
|
|
4123
|
+
]
|
|
4124
|
+
|
|
4125
|
+
[[package]]
|
|
4126
|
+
name = "zmij"
|
|
4127
|
+
version = "1.0.20"
|
|
4128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4129
|
+
checksum = "4de98dfa5d5b7fef4ee834d0073d560c9ca7b6c46a71d058c48db7960f8cfaf7"
|