clayers 0.1.3__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.
- clayers-0.1.3/Cargo.lock +4409 -0
- clayers-0.1.3/Cargo.toml +10 -0
- clayers-0.1.3/PKG-INFO +19 -0
- clayers-0.1.3/crates/clayers/Cargo.toml +46 -0
- clayers-0.1.3/crates/clayers/agent-guidance.xml +1558 -0
- clayers-0.1.3/crates/clayers/schemas/artifact.xsd +225 -0
- clayers-0.1.3/crates/clayers/schemas/catalog.xml +32 -0
- clayers-0.1.3/crates/clayers/schemas/decision.xsd +162 -0
- clayers-0.1.3/crates/clayers/schemas/doc/artifact.xslt +87 -0
- clayers-0.1.3/crates/clayers/schemas/doc/catchall.xslt +22 -0
- clayers-0.1.3/crates/clayers/schemas/doc/decision.xslt +77 -0
- clayers-0.1.3/crates/clayers/schemas/doc/graph.xslt +142 -0
- clayers-0.1.3/crates/clayers/schemas/doc/llm.xslt +49 -0
- clayers-0.1.3/crates/clayers/schemas/doc/main.xslt +2702 -0
- clayers-0.1.3/crates/clayers/schemas/doc/markdown.xslt +423 -0
- clayers-0.1.3/crates/clayers/schemas/doc/organization.xslt +112 -0
- clayers-0.1.3/crates/clayers/schemas/doc/plan.xslt +124 -0
- clayers-0.1.3/crates/clayers/schemas/doc/prose.xslt +237 -0
- clayers-0.1.3/crates/clayers/schemas/doc/python.xslt +359 -0
- clayers-0.1.3/crates/clayers/schemas/doc/relation.xslt +102 -0
- clayers-0.1.3/crates/clayers/schemas/doc/revision.xslt +23 -0
- clayers-0.1.3/crates/clayers/schemas/doc/source.xslt +50 -0
- clayers-0.1.3/crates/clayers/schemas/doc/terminology.xslt +28 -0
- clayers-0.1.3/crates/clayers/schemas/index.xsd +54 -0
- clayers-0.1.3/crates/clayers/schemas/llm.xsd +119 -0
- clayers-0.1.3/crates/clayers/schemas/organization.xsd +223 -0
- clayers-0.1.3/crates/clayers/schemas/plan.xsd +365 -0
- clayers-0.1.3/crates/clayers/schemas/postprocess.xslt +176 -0
- clayers-0.1.3/crates/clayers/schemas/prose.xsd +193 -0
- clayers-0.1.3/crates/clayers/schemas/python.xsd +505 -0
- clayers-0.1.3/crates/clayers/schemas/relation.xsd +164 -0
- clayers-0.1.3/crates/clayers/schemas/repository.xsd +109 -0
- clayers-0.1.3/crates/clayers/schemas/revision.xsd +70 -0
- clayers-0.1.3/crates/clayers/schemas/source.xsd +243 -0
- clayers-0.1.3/crates/clayers/schemas/spec.xsd +112 -0
- clayers-0.1.3/crates/clayers/schemas/terminology.xsd +83 -0
- clayers-0.1.3/crates/clayers/schemas/uml-permissive.xsd +33 -0
- clayers-0.1.3/crates/clayers/src/adopt.rs +790 -0
- clayers-0.1.3/crates/clayers/src/cli.rs +878 -0
- clayers-0.1.3/crates/clayers/src/doc.rs +434 -0
- clayers-0.1.3/crates/clayers/src/embedded.rs +73 -0
- clayers-0.1.3/crates/clayers/src/lib.rs +20 -0
- clayers-0.1.3/crates/clayers/src/main.rs +3 -0
- clayers-0.1.3/crates/clayers/src/repo/branch.rs +249 -0
- clayers-0.1.3/crates/clayers/src/repo/commit.rs +99 -0
- clayers-0.1.3/crates/clayers/src/repo/diff.rs +238 -0
- clayers-0.1.3/crates/clayers/src/repo/history.rs +53 -0
- clayers-0.1.3/crates/clayers/src/repo/init.rs +270 -0
- clayers-0.1.3/crates/clayers/src/repo/mod.rs +125 -0
- clayers-0.1.3/crates/clayers/src/repo/remote.rs +292 -0
- clayers-0.1.3/crates/clayers/src/repo/revert.rs +94 -0
- clayers-0.1.3/crates/clayers/src/repo/schema.rs +133 -0
- clayers-0.1.3/crates/clayers/src/repo/staging.rs +435 -0
- clayers-0.1.3/crates/clayers/src/serve.rs +366 -0
- clayers-0.1.3/crates/clayers/tests/cli_integration.rs +2236 -0
- clayers-0.1.3/crates/clayers/tests/corpus_roundtrip.rs +888 -0
- clayers-0.1.3/crates/clayers/tests/remote_integration.rs +175 -0
- clayers-0.1.3/crates/clayers-py/.gitignore +8 -0
- clayers-0.1.3/crates/clayers-py/Cargo.toml +32 -0
- clayers-0.1.3/crates/clayers-py/src/errors.rs +23 -0
- clayers-0.1.3/crates/clayers-py/src/knowledge_model.rs +148 -0
- clayers-0.1.3/crates/clayers-py/src/lib.rs +45 -0
- clayers-0.1.3/crates/clayers-py/src/query.rs +97 -0
- clayers-0.1.3/crates/clayers-py/src/repo/compliance.rs +913 -0
- clayers-0.1.3/crates/clayers-py/src/repo/inner.rs +37 -0
- clayers-0.1.3/crates/clayers-py/src/repo/mod.rs +60 -0
- clayers-0.1.3/crates/clayers-py/src/repo/objects.rs +111 -0
- clayers-0.1.3/crates/clayers-py/src/repo/py_objects.rs +910 -0
- clayers-0.1.3/crates/clayers-py/src/repo/py_store.rs +359 -0
- clayers-0.1.3/crates/clayers-py/src/repo/repo_async.rs +230 -0
- clayers-0.1.3/crates/clayers-py/src/repo/repo_sync.rs +250 -0
- clayers-0.1.3/crates/clayers-py/src/repo/store.rs +65 -0
- clayers-0.1.3/crates/clayers-py/src/spec/mod.rs +3 -0
- clayers-0.1.3/crates/clayers-py/src/spec/types.rs +400 -0
- clayers-0.1.3/crates/clayers-py/src/xml/hash.rs +78 -0
- clayers-0.1.3/crates/clayers-py/src/xml/mod.rs +20 -0
- clayers-0.1.3/crates/clayers-py/tests/conftest.py +30 -0
- clayers-0.1.3/crates/clayers-py/tests/test_compliance.py +34 -0
- clayers-0.1.3/crates/clayers-py/tests/test_content_hash.py +99 -0
- clayers-0.1.3/crates/clayers-py/tests/test_errors.py +47 -0
- clayers-0.1.3/crates/clayers-py/tests/test_imports.py +58 -0
- clayers-0.1.3/crates/clayers-py/tests/test_knowledge_model.py +190 -0
- clayers-0.1.3/crates/clayers-py/tests/test_repo_async.py +136 -0
- clayers-0.1.3/crates/clayers-py/tests/test_repo_sync.py +231 -0
- clayers-0.1.3/crates/clayers-py/tests/test_sqlite_store.py +52 -0
- clayers-0.1.3/crates/clayers-repo/Cargo.toml +41 -0
- clayers-0.1.3/crates/clayers-repo/src/conflict.rs +214 -0
- clayers-0.1.3/crates/clayers-repo/src/diff.rs +399 -0
- clayers-0.1.3/crates/clayers-repo/src/error.rs +44 -0
- clayers-0.1.3/crates/clayers-repo/src/export.rs +756 -0
- clayers-0.1.3/crates/clayers-repo/src/graph.rs +637 -0
- clayers-0.1.3/crates/clayers-repo/src/hash.rs +106 -0
- clayers-0.1.3/crates/clayers-repo/src/import.rs +285 -0
- clayers-0.1.3/crates/clayers-repo/src/lib.rs +48 -0
- clayers-0.1.3/crates/clayers-repo/src/object.rs +557 -0
- clayers-0.1.3/crates/clayers-repo/src/query/mod.rs +448 -0
- clayers-0.1.3/crates/clayers-repo/src/query/tests.rs +1155 -0
- clayers-0.1.3/crates/clayers-repo/src/refs.rs +120 -0
- clayers-0.1.3/crates/clayers-repo/src/repo.rs +484 -0
- clayers-0.1.3/crates/clayers-repo/src/store/memory.rs +226 -0
- clayers-0.1.3/crates/clayers-repo/src/store/mod.rs +150 -0
- clayers-0.1.3/crates/clayers-repo/src/store/prop_strategies.rs +1195 -0
- clayers-0.1.3/crates/clayers-repo/src/store/prop_tests.rs +958 -0
- clayers-0.1.3/crates/clayers-repo/src/store/remote/client.rs +522 -0
- clayers-0.1.3/crates/clayers-repo/src/store/remote/codec.rs +43 -0
- clayers-0.1.3/crates/clayers-repo/src/store/remote/mod.rs +216 -0
- clayers-0.1.3/crates/clayers-repo/src/store/remote/server.rs +431 -0
- clayers-0.1.3/crates/clayers-repo/src/store/remote/transport.rs +28 -0
- clayers-0.1.3/crates/clayers-repo/src/store/remote/websocket.rs +528 -0
- clayers-0.1.3/crates/clayers-repo/src/store/sqlite.rs +390 -0
- clayers-0.1.3/crates/clayers-repo/src/store/tests.rs +696 -0
- clayers-0.1.3/crates/clayers-repo/src/sync.rs +1089 -0
- clayers-0.1.3/crates/clayers-spec/Cargo.toml +20 -0
- clayers-0.1.3/crates/clayers-spec/src/artifact.rs +351 -0
- clayers-0.1.3/crates/clayers-spec/src/assembly.rs +135 -0
- clayers-0.1.3/crates/clayers-spec/src/connectivity.rs +648 -0
- clayers-0.1.3/crates/clayers-spec/src/coverage.rs +661 -0
- clayers-0.1.3/crates/clayers-spec/src/discovery.rs +234 -0
- clayers-0.1.3/crates/clayers-spec/src/drift.rs +238 -0
- clayers-0.1.3/crates/clayers-spec/src/fix.rs +822 -0
- clayers-0.1.3/crates/clayers-spec/src/lib.rs +34 -0
- clayers-0.1.3/crates/clayers-spec/src/namespace.rs +116 -0
- clayers-0.1.3/crates/clayers-spec/src/query.rs +244 -0
- clayers-0.1.3/crates/clayers-spec/src/rnc.rs +290 -0
- clayers-0.1.3/crates/clayers-spec/src/schema.rs +256 -0
- clayers-0.1.3/crates/clayers-spec/src/validate.rs +340 -0
- clayers-0.1.3/crates/clayers-xml/Cargo.toml +27 -0
- clayers-0.1.3/crates/clayers-xml/src/c14n.rs +121 -0
- clayers-0.1.3/crates/clayers-xml/src/catalog.rs +111 -0
- clayers-0.1.3/crates/clayers-xml/src/diff.rs +1016 -0
- clayers-0.1.3/crates/clayers-xml/src/error.rs +54 -0
- clayers-0.1.3/crates/clayers-xml/src/hash.rs +173 -0
- clayers-0.1.3/crates/clayers-xml/src/lib.rs +13 -0
- clayers-0.1.3/crates/clayers-xml/src/query.rs +219 -0
- clayers-0.1.3/crates/clayers-xml/src/rnc/convert.rs +1221 -0
- clayers-0.1.3/crates/clayers-xml/src/rnc/mod.rs +10 -0
- clayers-0.1.3/crates/clayers-xml/src/rnc/model.rs +537 -0
- clayers-0.1.3/crates/clayers-xml/src/xslt.rs +103 -0
- clayers-0.1.3/pyproject.toml +36 -0
- clayers-0.1.3/python/clayers/__init__.py +25 -0
- clayers-0.1.3/python/clayers/_cli.py +17 -0
- clayers-0.1.3/python/clayers/compliance/__init__.py +419 -0
- clayers-0.1.3/python/clayers/protocols.py +6 -0
- clayers-0.1.3/python/clayers/repo/__init__.py +8 -0
- clayers-0.1.3/python/clayers/repo/aio.py +3 -0
- clayers-0.1.3/python/clayers/xml/__init__.py +3 -0
clayers-0.1.3/Cargo.lock
ADDED
|
@@ -0,0 +1,4409 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.7.8"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"getrandom 0.2.17",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[[package]]
|
|
17
|
+
name = "ahash"
|
|
18
|
+
version = "0.8.12"
|
|
19
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
20
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
21
|
+
dependencies = [
|
|
22
|
+
"cfg-if",
|
|
23
|
+
"getrandom 0.3.4",
|
|
24
|
+
"once_cell",
|
|
25
|
+
"version_check",
|
|
26
|
+
"zerocopy",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "aho-corasick"
|
|
31
|
+
version = "1.1.4"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"memchr",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "allocator-api2"
|
|
40
|
+
version = "0.2.21"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "android_system_properties"
|
|
46
|
+
version = "0.1.5"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"libc",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "anstream"
|
|
55
|
+
version = "1.0.0"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"anstyle",
|
|
60
|
+
"anstyle-parse",
|
|
61
|
+
"anstyle-query",
|
|
62
|
+
"anstyle-wincon",
|
|
63
|
+
"colorchoice",
|
|
64
|
+
"is_terminal_polyfill",
|
|
65
|
+
"utf8parse",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "anstyle"
|
|
70
|
+
version = "1.0.14"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "anstyle-parse"
|
|
76
|
+
version = "1.0.0"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"utf8parse",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "anstyle-query"
|
|
85
|
+
version = "1.1.5"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"windows-sys 0.61.2",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "anstyle-wincon"
|
|
94
|
+
version = "3.0.11"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
97
|
+
dependencies = [
|
|
98
|
+
"anstyle",
|
|
99
|
+
"once_cell_polyfill",
|
|
100
|
+
"windows-sys 0.61.2",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "anyhow"
|
|
105
|
+
version = "1.0.102"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "ar_archive_writer"
|
|
111
|
+
version = "0.5.1"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"object",
|
|
116
|
+
]
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "arrayvec"
|
|
120
|
+
version = "0.7.6"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "assert_cmd"
|
|
126
|
+
version = "2.2.0"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "9a686bbee5efb88a82df0621b236e74d925f470e5445d3220a5648b892ec99c9"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"anstyle",
|
|
131
|
+
"bstr",
|
|
132
|
+
"libc",
|
|
133
|
+
"predicates",
|
|
134
|
+
"predicates-core",
|
|
135
|
+
"predicates-tree",
|
|
136
|
+
"wait-timeout",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "async-stream"
|
|
141
|
+
version = "0.3.6"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"async-stream-impl",
|
|
146
|
+
"futures-core",
|
|
147
|
+
"pin-project-lite",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "async-stream-impl"
|
|
152
|
+
version = "0.3.6"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
155
|
+
dependencies = [
|
|
156
|
+
"proc-macro2",
|
|
157
|
+
"quote",
|
|
158
|
+
"syn 2.0.117",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "async-trait"
|
|
163
|
+
version = "0.1.89"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"proc-macro2",
|
|
168
|
+
"quote",
|
|
169
|
+
"syn 2.0.117",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "atomic-waker"
|
|
174
|
+
version = "1.1.2"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "autocfg"
|
|
180
|
+
version = "1.5.0"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "base64"
|
|
186
|
+
version = "0.22.1"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "beef"
|
|
192
|
+
version = "0.5.2"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "bergshamra-c14n"
|
|
198
|
+
version = "0.3.1"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "827ebdf4f369f70c5c4401e30d381147c7fdc9ff00e540f85a1c41c89fcc21ed"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"bergshamra-core",
|
|
203
|
+
"bergshamra-xml",
|
|
204
|
+
"uppsala",
|
|
205
|
+
]
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "bergshamra-core"
|
|
209
|
+
version = "0.3.1"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "0b204c2ccef3c8d51ecb685de865e9fdbb76af11792435cccd4b697a2fb12818"
|
|
212
|
+
dependencies = [
|
|
213
|
+
"thiserror",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "bergshamra-xml"
|
|
218
|
+
version = "0.3.1"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "728be7c1ce772d87807d1727b3b32726b5850f20a004e962b7d3ccff26cb01ba"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"bergshamra-core",
|
|
223
|
+
"uppsala",
|
|
224
|
+
]
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "bit-set"
|
|
228
|
+
version = "0.8.0"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"bit-vec",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "bit-vec"
|
|
237
|
+
version = "0.8.0"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "bitflags"
|
|
243
|
+
version = "1.3.2"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "bitflags"
|
|
249
|
+
version = "2.11.0"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "bitvec"
|
|
255
|
+
version = "1.0.1"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"funty",
|
|
260
|
+
"radium",
|
|
261
|
+
"tap",
|
|
262
|
+
"wyz",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "blanket"
|
|
267
|
+
version = "0.4.0"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "56791e4bd64c99fc361e01008f45c984baa93f12a0957d1b3c51dd2c6baab453"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"proc-macro2",
|
|
272
|
+
"quote",
|
|
273
|
+
"syn 2.0.117",
|
|
274
|
+
]
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "block-buffer"
|
|
278
|
+
version = "0.10.4"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
281
|
+
dependencies = [
|
|
282
|
+
"generic-array",
|
|
283
|
+
]
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "borsh"
|
|
287
|
+
version = "1.6.1"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a"
|
|
290
|
+
dependencies = [
|
|
291
|
+
"borsh-derive",
|
|
292
|
+
"bytes",
|
|
293
|
+
"cfg_aliases",
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "borsh-derive"
|
|
298
|
+
version = "1.6.1"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "bfcfdc083699101d5a7965e49925975f2f55060f94f9a05e7187be95d530ca59"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"once_cell",
|
|
303
|
+
"proc-macro-crate",
|
|
304
|
+
"proc-macro2",
|
|
305
|
+
"quote",
|
|
306
|
+
"syn 2.0.117",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "bstr"
|
|
311
|
+
version = "1.12.1"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"memchr",
|
|
316
|
+
"regex-automata 0.4.14",
|
|
317
|
+
"serde",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "bumpalo"
|
|
322
|
+
version = "3.20.2"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "bytecheck"
|
|
328
|
+
version = "0.6.12"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"bytecheck_derive",
|
|
333
|
+
"ptr_meta",
|
|
334
|
+
"simdutf8",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "bytecheck_derive"
|
|
339
|
+
version = "0.6.12"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"proc-macro2",
|
|
344
|
+
"quote",
|
|
345
|
+
"syn 1.0.109",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "bytes"
|
|
350
|
+
version = "1.11.1"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "calendrical_calculations"
|
|
356
|
+
version = "0.1.3"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "e97f73e95d668625c9b28a3072e6326773785a0cf807de9f3d632778438f3d38"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"core_maths",
|
|
361
|
+
"displaydoc",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "cc"
|
|
366
|
+
version = "1.2.57"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
|
|
369
|
+
dependencies = [
|
|
370
|
+
"find-msvc-tools",
|
|
371
|
+
"shlex",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "cfg-if"
|
|
376
|
+
version = "1.0.4"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "cfg_aliases"
|
|
382
|
+
version = "0.2.1"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "chrono"
|
|
388
|
+
version = "0.4.44"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"iana-time-zone",
|
|
393
|
+
"js-sys",
|
|
394
|
+
"num-traits",
|
|
395
|
+
"serde",
|
|
396
|
+
"wasm-bindgen",
|
|
397
|
+
"windows-link",
|
|
398
|
+
]
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "chumsky"
|
|
402
|
+
version = "1.0.0-alpha.8"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "0e82d74e6c83060ec269fe9e0d408d6de4a1645d525f9a0bbbb841ba4efd91ac"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"hashbrown 0.15.5",
|
|
407
|
+
"regex-automata 0.3.9",
|
|
408
|
+
"serde",
|
|
409
|
+
"stacker",
|
|
410
|
+
"unicode-ident",
|
|
411
|
+
"unicode-segmentation",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "clap"
|
|
416
|
+
version = "4.6.0"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
419
|
+
dependencies = [
|
|
420
|
+
"clap_builder",
|
|
421
|
+
"clap_derive",
|
|
422
|
+
]
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "clap_builder"
|
|
426
|
+
version = "4.6.0"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
429
|
+
dependencies = [
|
|
430
|
+
"anstream",
|
|
431
|
+
"anstyle",
|
|
432
|
+
"clap_lex",
|
|
433
|
+
"strsim",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "clap_derive"
|
|
438
|
+
version = "4.6.0"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"heck",
|
|
443
|
+
"proc-macro2",
|
|
444
|
+
"quote",
|
|
445
|
+
"syn 2.0.117",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "clap_lex"
|
|
450
|
+
version = "1.1.0"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "clayers"
|
|
456
|
+
version = "0.1.3"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"anyhow",
|
|
459
|
+
"assert_cmd",
|
|
460
|
+
"async-trait",
|
|
461
|
+
"base64",
|
|
462
|
+
"chrono",
|
|
463
|
+
"clap",
|
|
464
|
+
"clayers-repo",
|
|
465
|
+
"clayers-spec",
|
|
466
|
+
"clayers-xml",
|
|
467
|
+
"getrandom 0.4.2",
|
|
468
|
+
"notify",
|
|
469
|
+
"predicates",
|
|
470
|
+
"rayon",
|
|
471
|
+
"regex",
|
|
472
|
+
"reqwest",
|
|
473
|
+
"rusqlite",
|
|
474
|
+
"serde",
|
|
475
|
+
"serde_json",
|
|
476
|
+
"serde_yml",
|
|
477
|
+
"tempfile",
|
|
478
|
+
"tokio",
|
|
479
|
+
"xot",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "clayers-py"
|
|
484
|
+
version = "0.1.3"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"async-stream",
|
|
487
|
+
"async-trait",
|
|
488
|
+
"chrono",
|
|
489
|
+
"clayers",
|
|
490
|
+
"clayers-repo",
|
|
491
|
+
"clayers-spec",
|
|
492
|
+
"clayers-xml",
|
|
493
|
+
"futures-core",
|
|
494
|
+
"proptest",
|
|
495
|
+
"pyo3",
|
|
496
|
+
"pyo3-async-runtimes",
|
|
497
|
+
"serde_json",
|
|
498
|
+
"tokio",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "clayers-repo"
|
|
503
|
+
version = "0.1.3"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"async-stream",
|
|
506
|
+
"async-trait",
|
|
507
|
+
"chrono",
|
|
508
|
+
"clayers-xml",
|
|
509
|
+
"futures-core",
|
|
510
|
+
"futures-util",
|
|
511
|
+
"http",
|
|
512
|
+
"proptest",
|
|
513
|
+
"rusqlite",
|
|
514
|
+
"serde",
|
|
515
|
+
"serde_json",
|
|
516
|
+
"thiserror",
|
|
517
|
+
"tokio",
|
|
518
|
+
"tokio-stream",
|
|
519
|
+
"tokio-tungstenite",
|
|
520
|
+
"xot",
|
|
521
|
+
]
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "clayers-spec"
|
|
525
|
+
version = "0.1.3"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"clayers-xml",
|
|
528
|
+
"petgraph",
|
|
529
|
+
"sha2",
|
|
530
|
+
"tempfile",
|
|
531
|
+
"thiserror",
|
|
532
|
+
"xot",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "clayers-xml"
|
|
537
|
+
version = "0.1.3"
|
|
538
|
+
dependencies = [
|
|
539
|
+
"bergshamra-c14n",
|
|
540
|
+
"bytes",
|
|
541
|
+
"serde",
|
|
542
|
+
"serde_json",
|
|
543
|
+
"sha2",
|
|
544
|
+
"tempfile",
|
|
545
|
+
"thiserror",
|
|
546
|
+
"xee-xpath",
|
|
547
|
+
"xot",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "colorchoice"
|
|
552
|
+
version = "1.0.5"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "core-foundation"
|
|
558
|
+
version = "0.10.1"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"core-foundation-sys",
|
|
563
|
+
"libc",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "core-foundation-sys"
|
|
568
|
+
version = "0.8.7"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "core_maths"
|
|
574
|
+
version = "0.1.1"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"libm",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "cpufeatures"
|
|
583
|
+
version = "0.2.17"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"libc",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "crossbeam-deque"
|
|
592
|
+
version = "0.8.6"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"crossbeam-epoch",
|
|
597
|
+
"crossbeam-utils",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "crossbeam-epoch"
|
|
602
|
+
version = "0.9.18"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"crossbeam-utils",
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "crossbeam-utils"
|
|
611
|
+
version = "0.8.21"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "crypto-common"
|
|
617
|
+
version = "0.1.7"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
620
|
+
dependencies = [
|
|
621
|
+
"generic-array",
|
|
622
|
+
"typenum",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "data-encoding"
|
|
627
|
+
version = "2.10.0"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "difflib"
|
|
633
|
+
version = "0.4.0"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "digest"
|
|
639
|
+
version = "0.10.7"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"block-buffer",
|
|
644
|
+
"crypto-common",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "displaydoc"
|
|
649
|
+
version = "0.2.5"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"proc-macro2",
|
|
654
|
+
"quote",
|
|
655
|
+
"syn 2.0.117",
|
|
656
|
+
]
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "either"
|
|
660
|
+
version = "1.15.0"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "encoding_rs"
|
|
666
|
+
version = "0.8.35"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
669
|
+
dependencies = [
|
|
670
|
+
"cfg-if",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "enum_dispatch"
|
|
675
|
+
version = "0.3.13"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
|
678
|
+
dependencies = [
|
|
679
|
+
"once_cell",
|
|
680
|
+
"proc-macro2",
|
|
681
|
+
"quote",
|
|
682
|
+
"syn 2.0.117",
|
|
683
|
+
]
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "equivalent"
|
|
687
|
+
version = "1.0.2"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "errno"
|
|
693
|
+
version = "0.3.14"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"libc",
|
|
698
|
+
"windows-sys 0.61.2",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "fallible-iterator"
|
|
703
|
+
version = "0.3.0"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "fallible-streaming-iterator"
|
|
709
|
+
version = "0.1.9"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "fastrand"
|
|
715
|
+
version = "2.3.0"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "find-msvc-tools"
|
|
721
|
+
version = "0.1.9"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "fixed_decimal"
|
|
727
|
+
version = "0.5.6"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "0febbeb1118a9ecdee6e4520ead6b54882e843dd0592ad233247dbee84c53db8"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"displaydoc",
|
|
732
|
+
"smallvec",
|
|
733
|
+
"writeable 0.5.5",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "fixedbitset"
|
|
738
|
+
version = "0.5.7"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "float-cmp"
|
|
744
|
+
version = "0.10.0"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"num-traits",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "fnv"
|
|
753
|
+
version = "1.0.7"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "foldhash"
|
|
759
|
+
version = "0.1.5"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "foldhash"
|
|
765
|
+
version = "0.2.0"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "foreign-types"
|
|
771
|
+
version = "0.3.2"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"foreign-types-shared",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "foreign-types-shared"
|
|
780
|
+
version = "0.1.1"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "form_urlencoded"
|
|
786
|
+
version = "1.2.2"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"percent-encoding",
|
|
791
|
+
]
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "fsevent-sys"
|
|
795
|
+
version = "4.1.0"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"libc",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "funty"
|
|
804
|
+
version = "2.0.0"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "futures-channel"
|
|
810
|
+
version = "0.3.32"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"futures-core",
|
|
815
|
+
"futures-sink",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "futures-core"
|
|
820
|
+
version = "0.3.32"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "futures-io"
|
|
826
|
+
version = "0.3.32"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "futures-macro"
|
|
832
|
+
version = "0.3.32"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
835
|
+
dependencies = [
|
|
836
|
+
"proc-macro2",
|
|
837
|
+
"quote",
|
|
838
|
+
"syn 2.0.117",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "futures-sink"
|
|
843
|
+
version = "0.3.32"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "futures-task"
|
|
849
|
+
version = "0.3.32"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "futures-util"
|
|
855
|
+
version = "0.3.32"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
858
|
+
dependencies = [
|
|
859
|
+
"futures-core",
|
|
860
|
+
"futures-io",
|
|
861
|
+
"futures-macro",
|
|
862
|
+
"futures-sink",
|
|
863
|
+
"futures-task",
|
|
864
|
+
"memchr",
|
|
865
|
+
"pin-project-lite",
|
|
866
|
+
"slab",
|
|
867
|
+
]
|
|
868
|
+
|
|
869
|
+
[[package]]
|
|
870
|
+
name = "genawaiter"
|
|
871
|
+
version = "0.99.1"
|
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
+
checksum = "c86bd0361bcbde39b13475e6e36cb24c329964aa2611be285289d1e4b751c1a0"
|
|
874
|
+
dependencies = [
|
|
875
|
+
"genawaiter-macro",
|
|
876
|
+
"genawaiter-proc-macro",
|
|
877
|
+
"proc-macro-hack",
|
|
878
|
+
]
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "genawaiter-macro"
|
|
882
|
+
version = "0.99.1"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "0b32dfe1fdfc0bbde1f22a5da25355514b5e450c33a6af6770884c8750aedfbc"
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "genawaiter-proc-macro"
|
|
888
|
+
version = "0.99.1"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "784f84eebc366e15251c4a8c3acee82a6a6f427949776ecb88377362a9621738"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"proc-macro-error",
|
|
893
|
+
"proc-macro-hack",
|
|
894
|
+
"proc-macro2",
|
|
895
|
+
"quote",
|
|
896
|
+
"syn 1.0.109",
|
|
897
|
+
]
|
|
898
|
+
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "generic-array"
|
|
901
|
+
version = "0.14.7"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
904
|
+
dependencies = [
|
|
905
|
+
"typenum",
|
|
906
|
+
"version_check",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "getrandom"
|
|
911
|
+
version = "0.2.17"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"cfg-if",
|
|
916
|
+
"libc",
|
|
917
|
+
"wasi",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "getrandom"
|
|
922
|
+
version = "0.3.4"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"cfg-if",
|
|
927
|
+
"libc",
|
|
928
|
+
"r-efi 5.3.0",
|
|
929
|
+
"wasip2",
|
|
930
|
+
]
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "getrandom"
|
|
934
|
+
version = "0.4.2"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"cfg-if",
|
|
939
|
+
"libc",
|
|
940
|
+
"r-efi 6.0.0",
|
|
941
|
+
"wasip2",
|
|
942
|
+
"wasip3",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "hashbrown"
|
|
947
|
+
version = "0.12.3"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"ahash 0.7.8",
|
|
952
|
+
]
|
|
953
|
+
|
|
954
|
+
[[package]]
|
|
955
|
+
name = "hashbrown"
|
|
956
|
+
version = "0.15.5"
|
|
957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
959
|
+
dependencies = [
|
|
960
|
+
"allocator-api2",
|
|
961
|
+
"equivalent",
|
|
962
|
+
"foldhash 0.1.5",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "hashbrown"
|
|
967
|
+
version = "0.16.1"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"foldhash 0.2.0",
|
|
972
|
+
]
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "hashlink"
|
|
976
|
+
version = "0.11.0"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "ea0b22561a9c04a7cb1a302c013e0259cd3b4bb619f145b32f72b8b4bcbed230"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"hashbrown 0.16.1",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "heck"
|
|
985
|
+
version = "0.5.0"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "hex"
|
|
991
|
+
version = "0.4.3"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "http"
|
|
997
|
+
version = "1.4.0"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"bytes",
|
|
1002
|
+
"itoa",
|
|
1003
|
+
]
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "http-body"
|
|
1007
|
+
version = "1.0.1"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"bytes",
|
|
1012
|
+
"http",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "http-body-util"
|
|
1017
|
+
version = "0.1.3"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"bytes",
|
|
1022
|
+
"futures-core",
|
|
1023
|
+
"http",
|
|
1024
|
+
"http-body",
|
|
1025
|
+
"pin-project-lite",
|
|
1026
|
+
]
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "httparse"
|
|
1030
|
+
version = "1.10.1"
|
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "hyper"
|
|
1036
|
+
version = "1.8.1"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
1039
|
+
dependencies = [
|
|
1040
|
+
"atomic-waker",
|
|
1041
|
+
"bytes",
|
|
1042
|
+
"futures-channel",
|
|
1043
|
+
"futures-core",
|
|
1044
|
+
"http",
|
|
1045
|
+
"http-body",
|
|
1046
|
+
"httparse",
|
|
1047
|
+
"itoa",
|
|
1048
|
+
"pin-project-lite",
|
|
1049
|
+
"pin-utils",
|
|
1050
|
+
"smallvec",
|
|
1051
|
+
"tokio",
|
|
1052
|
+
"want",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "hyper-tls"
|
|
1057
|
+
version = "0.6.0"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"bytes",
|
|
1062
|
+
"http-body-util",
|
|
1063
|
+
"hyper",
|
|
1064
|
+
"hyper-util",
|
|
1065
|
+
"native-tls",
|
|
1066
|
+
"tokio",
|
|
1067
|
+
"tokio-native-tls",
|
|
1068
|
+
"tower-service",
|
|
1069
|
+
]
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "hyper-util"
|
|
1073
|
+
version = "0.1.20"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1076
|
+
dependencies = [
|
|
1077
|
+
"base64",
|
|
1078
|
+
"bytes",
|
|
1079
|
+
"futures-channel",
|
|
1080
|
+
"futures-util",
|
|
1081
|
+
"http",
|
|
1082
|
+
"http-body",
|
|
1083
|
+
"hyper",
|
|
1084
|
+
"ipnet",
|
|
1085
|
+
"libc",
|
|
1086
|
+
"percent-encoding",
|
|
1087
|
+
"pin-project-lite",
|
|
1088
|
+
"socket2",
|
|
1089
|
+
"tokio",
|
|
1090
|
+
"tower-service",
|
|
1091
|
+
"tracing",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "iana-time-zone"
|
|
1096
|
+
version = "0.1.65"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1099
|
+
dependencies = [
|
|
1100
|
+
"android_system_properties",
|
|
1101
|
+
"core-foundation-sys",
|
|
1102
|
+
"iana-time-zone-haiku",
|
|
1103
|
+
"js-sys",
|
|
1104
|
+
"log",
|
|
1105
|
+
"wasm-bindgen",
|
|
1106
|
+
"windows-core",
|
|
1107
|
+
]
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "iana-time-zone-haiku"
|
|
1111
|
+
version = "0.1.2"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"cc",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "ibig"
|
|
1120
|
+
version = "0.3.6"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "d1fcc7f316b2c079dde77564a1360639c1a956a23fa96122732e416cb10717bb"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"cfg-if",
|
|
1125
|
+
"num-traits",
|
|
1126
|
+
"rand 0.8.5",
|
|
1127
|
+
"static_assertions",
|
|
1128
|
+
]
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "icu"
|
|
1132
|
+
version = "1.5.0"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "dff5e3018d703f168b00dcefa540a65f1bbc50754ae32f3f5f0e43fe5ee51502"
|
|
1135
|
+
dependencies = [
|
|
1136
|
+
"icu_calendar",
|
|
1137
|
+
"icu_casemap",
|
|
1138
|
+
"icu_collator",
|
|
1139
|
+
"icu_collections 1.5.0",
|
|
1140
|
+
"icu_datetime",
|
|
1141
|
+
"icu_decimal",
|
|
1142
|
+
"icu_experimental",
|
|
1143
|
+
"icu_list",
|
|
1144
|
+
"icu_locid",
|
|
1145
|
+
"icu_locid_transform",
|
|
1146
|
+
"icu_normalizer 1.5.0",
|
|
1147
|
+
"icu_plurals",
|
|
1148
|
+
"icu_properties 1.5.1",
|
|
1149
|
+
"icu_provider 1.5.0",
|
|
1150
|
+
"icu_segmenter",
|
|
1151
|
+
"icu_timezone",
|
|
1152
|
+
]
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "icu_calendar"
|
|
1156
|
+
version = "1.5.2"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "7265b2137f9a36f7634a308d91f984574bbdba8cfd95ceffe1c345552275a8ff"
|
|
1159
|
+
dependencies = [
|
|
1160
|
+
"calendrical_calculations",
|
|
1161
|
+
"displaydoc",
|
|
1162
|
+
"icu_calendar_data",
|
|
1163
|
+
"icu_locid",
|
|
1164
|
+
"icu_locid_transform",
|
|
1165
|
+
"icu_provider 1.5.0",
|
|
1166
|
+
"tinystr 0.7.6",
|
|
1167
|
+
"writeable 0.5.5",
|
|
1168
|
+
"zerovec 0.10.4",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "icu_calendar_data"
|
|
1173
|
+
version = "1.5.1"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "820499e77e852162190608b4f444e7b4552619150eafc39a9e39333d9efae9e1"
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "icu_casemap"
|
|
1179
|
+
version = "1.5.1"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "9ff0c8ae9f8d31b12e27fc385ff9ab1f3cd9b17417c665c49e4ec958c37da75f"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"displaydoc",
|
|
1184
|
+
"icu_casemap_data",
|
|
1185
|
+
"icu_collections 1.5.0",
|
|
1186
|
+
"icu_locid",
|
|
1187
|
+
"icu_properties 1.5.1",
|
|
1188
|
+
"icu_provider 1.5.0",
|
|
1189
|
+
"writeable 0.5.5",
|
|
1190
|
+
"zerovec 0.10.4",
|
|
1191
|
+
]
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "icu_casemap_data"
|
|
1195
|
+
version = "1.5.1"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "02bd9f6276270c85a5cd54611adbbf94e993ec464a2a86a452a6c565b7ded5d9"
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "icu_collator"
|
|
1201
|
+
version = "1.5.0"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "d370371887d31d56f361c3eaa15743e54f13bc677059c9191c77e099ed6966b2"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"displaydoc",
|
|
1206
|
+
"icu_collator_data",
|
|
1207
|
+
"icu_collections 1.5.0",
|
|
1208
|
+
"icu_locid_transform",
|
|
1209
|
+
"icu_normalizer 1.5.0",
|
|
1210
|
+
"icu_properties 1.5.1",
|
|
1211
|
+
"icu_provider 1.5.0",
|
|
1212
|
+
"smallvec",
|
|
1213
|
+
"utf16_iter",
|
|
1214
|
+
"utf8_iter",
|
|
1215
|
+
"zerovec 0.10.4",
|
|
1216
|
+
]
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "icu_collator_data"
|
|
1220
|
+
version = "1.5.1"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "7b353986d77d28991eca4dea5ef2b8982f639342ae19ca81edc44f048bc38ebb"
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "icu_collections"
|
|
1226
|
+
version = "1.5.0"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
1229
|
+
dependencies = [
|
|
1230
|
+
"displaydoc",
|
|
1231
|
+
"yoke 0.7.5",
|
|
1232
|
+
"zerofrom",
|
|
1233
|
+
"zerovec 0.10.4",
|
|
1234
|
+
]
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "icu_collections"
|
|
1238
|
+
version = "2.1.1"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1241
|
+
dependencies = [
|
|
1242
|
+
"displaydoc",
|
|
1243
|
+
"potential_utf",
|
|
1244
|
+
"yoke 0.8.1",
|
|
1245
|
+
"zerofrom",
|
|
1246
|
+
"zerovec 0.11.5",
|
|
1247
|
+
]
|
|
1248
|
+
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "icu_datetime"
|
|
1251
|
+
version = "1.5.1"
|
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
+
checksum = "d115efb85e08df3fd77e77f52e7e087545a783fffba8be80bfa2102f306b1780"
|
|
1254
|
+
dependencies = [
|
|
1255
|
+
"displaydoc",
|
|
1256
|
+
"either",
|
|
1257
|
+
"fixed_decimal",
|
|
1258
|
+
"icu_calendar",
|
|
1259
|
+
"icu_datetime_data",
|
|
1260
|
+
"icu_decimal",
|
|
1261
|
+
"icu_locid",
|
|
1262
|
+
"icu_locid_transform",
|
|
1263
|
+
"icu_plurals",
|
|
1264
|
+
"icu_provider 1.5.0",
|
|
1265
|
+
"icu_timezone",
|
|
1266
|
+
"smallvec",
|
|
1267
|
+
"tinystr 0.7.6",
|
|
1268
|
+
"writeable 0.5.5",
|
|
1269
|
+
"zerovec 0.10.4",
|
|
1270
|
+
]
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "icu_datetime_data"
|
|
1274
|
+
version = "1.5.1"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "bef5f04076123cab1b7a926a7083db27fe0d7a0e575adb984854aae3f3a6507d"
|
|
1277
|
+
|
|
1278
|
+
[[package]]
|
|
1279
|
+
name = "icu_decimal"
|
|
1280
|
+
version = "1.5.0"
|
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
+
checksum = "fb8fd98f86ec0448d85e1edf8884e4e318bb2e121bd733ec929a05c0a5e8b0eb"
|
|
1283
|
+
dependencies = [
|
|
1284
|
+
"displaydoc",
|
|
1285
|
+
"fixed_decimal",
|
|
1286
|
+
"icu_decimal_data",
|
|
1287
|
+
"icu_locid_transform",
|
|
1288
|
+
"icu_provider 1.5.0",
|
|
1289
|
+
"writeable 0.5.5",
|
|
1290
|
+
]
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "icu_decimal_data"
|
|
1294
|
+
version = "1.5.1"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "67c95dd97f5ccf6d837a9c115496ec7d36646fa86ca18e7f1412115b4c820ae2"
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "icu_experimental"
|
|
1300
|
+
version = "0.1.0"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "844ad7b682a165c758065d694bc4d74ac67f176da1c499a04d85d492c0f193b7"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"displaydoc",
|
|
1305
|
+
"fixed_decimal",
|
|
1306
|
+
"icu_collections 1.5.0",
|
|
1307
|
+
"icu_decimal",
|
|
1308
|
+
"icu_experimental_data",
|
|
1309
|
+
"icu_locid",
|
|
1310
|
+
"icu_locid_transform",
|
|
1311
|
+
"icu_normalizer 1.5.0",
|
|
1312
|
+
"icu_pattern",
|
|
1313
|
+
"icu_plurals",
|
|
1314
|
+
"icu_properties 1.5.1",
|
|
1315
|
+
"icu_provider 1.5.0",
|
|
1316
|
+
"litemap 0.7.5",
|
|
1317
|
+
"num-bigint",
|
|
1318
|
+
"num-rational",
|
|
1319
|
+
"num-traits",
|
|
1320
|
+
"smallvec",
|
|
1321
|
+
"tinystr 0.7.6",
|
|
1322
|
+
"writeable 0.5.5",
|
|
1323
|
+
"zerofrom",
|
|
1324
|
+
"zerotrie 0.1.3",
|
|
1325
|
+
"zerovec 0.10.4",
|
|
1326
|
+
]
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "icu_experimental_data"
|
|
1330
|
+
version = "0.1.1"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "121df92eafb8f5286d4e8ff401c1e7db8384377f806db3f8db77b91e5b7bd4dd"
|
|
1333
|
+
|
|
1334
|
+
[[package]]
|
|
1335
|
+
name = "icu_list"
|
|
1336
|
+
version = "1.5.0"
|
|
1337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
+
checksum = "bbfeda1d7775b6548edd4e8b7562304a559a91ed56ab56e18961a053f367c365"
|
|
1339
|
+
dependencies = [
|
|
1340
|
+
"displaydoc",
|
|
1341
|
+
"icu_list_data",
|
|
1342
|
+
"icu_locid_transform",
|
|
1343
|
+
"icu_provider 1.5.0",
|
|
1344
|
+
"regex-automata 0.2.0",
|
|
1345
|
+
"writeable 0.5.5",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "icu_list_data"
|
|
1350
|
+
version = "1.5.1"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "52b1a7fbdbf3958f1be8354cb59ac73f165b7b7082d447ff2090355c9a069120"
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "icu_locale_core"
|
|
1356
|
+
version = "2.1.1"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"displaydoc",
|
|
1361
|
+
"litemap 0.8.1",
|
|
1362
|
+
"tinystr 0.8.2",
|
|
1363
|
+
"writeable 0.6.2",
|
|
1364
|
+
"zerovec 0.11.5",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "icu_locid"
|
|
1369
|
+
version = "1.5.0"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"displaydoc",
|
|
1374
|
+
"litemap 0.7.5",
|
|
1375
|
+
"tinystr 0.7.6",
|
|
1376
|
+
"writeable 0.5.5",
|
|
1377
|
+
"zerovec 0.10.4",
|
|
1378
|
+
]
|
|
1379
|
+
|
|
1380
|
+
[[package]]
|
|
1381
|
+
name = "icu_locid_transform"
|
|
1382
|
+
version = "1.5.0"
|
|
1383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
1385
|
+
dependencies = [
|
|
1386
|
+
"displaydoc",
|
|
1387
|
+
"icu_locid",
|
|
1388
|
+
"icu_locid_transform_data",
|
|
1389
|
+
"icu_provider 1.5.0",
|
|
1390
|
+
"tinystr 0.7.6",
|
|
1391
|
+
"zerovec 0.10.4",
|
|
1392
|
+
]
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "icu_locid_transform_data"
|
|
1396
|
+
version = "1.5.1"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
1399
|
+
|
|
1400
|
+
[[package]]
|
|
1401
|
+
name = "icu_normalizer"
|
|
1402
|
+
version = "1.5.0"
|
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
1405
|
+
dependencies = [
|
|
1406
|
+
"displaydoc",
|
|
1407
|
+
"icu_collections 1.5.0",
|
|
1408
|
+
"icu_normalizer_data 1.5.1",
|
|
1409
|
+
"icu_properties 1.5.1",
|
|
1410
|
+
"icu_provider 1.5.0",
|
|
1411
|
+
"smallvec",
|
|
1412
|
+
"utf16_iter",
|
|
1413
|
+
"utf8_iter",
|
|
1414
|
+
"write16",
|
|
1415
|
+
"zerovec 0.10.4",
|
|
1416
|
+
]
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "icu_normalizer"
|
|
1420
|
+
version = "2.1.1"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1423
|
+
dependencies = [
|
|
1424
|
+
"icu_collections 2.1.1",
|
|
1425
|
+
"icu_normalizer_data 2.1.1",
|
|
1426
|
+
"icu_properties 2.1.2",
|
|
1427
|
+
"icu_provider 2.1.1",
|
|
1428
|
+
"smallvec",
|
|
1429
|
+
"zerovec 0.11.5",
|
|
1430
|
+
]
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "icu_normalizer_data"
|
|
1434
|
+
version = "1.5.1"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "icu_normalizer_data"
|
|
1440
|
+
version = "2.1.1"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1443
|
+
|
|
1444
|
+
[[package]]
|
|
1445
|
+
name = "icu_pattern"
|
|
1446
|
+
version = "0.2.0"
|
|
1447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
+
checksum = "cb7f36aafd098d6717de34e668a8120822275c1fba22b936e757b7de8a2fd7e4"
|
|
1449
|
+
dependencies = [
|
|
1450
|
+
"displaydoc",
|
|
1451
|
+
"either",
|
|
1452
|
+
"writeable 0.5.5",
|
|
1453
|
+
"yoke 0.7.5",
|
|
1454
|
+
"zerofrom",
|
|
1455
|
+
]
|
|
1456
|
+
|
|
1457
|
+
[[package]]
|
|
1458
|
+
name = "icu_plurals"
|
|
1459
|
+
version = "1.5.0"
|
|
1460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
+
checksum = "ba5a70e7c025dbd5c501b0a5c188cd11666a424f0dadcd4f0a95b7dafde3b114"
|
|
1462
|
+
dependencies = [
|
|
1463
|
+
"displaydoc",
|
|
1464
|
+
"fixed_decimal",
|
|
1465
|
+
"icu_locid_transform",
|
|
1466
|
+
"icu_plurals_data",
|
|
1467
|
+
"icu_provider 1.5.0",
|
|
1468
|
+
"zerovec 0.10.4",
|
|
1469
|
+
]
|
|
1470
|
+
|
|
1471
|
+
[[package]]
|
|
1472
|
+
name = "icu_plurals_data"
|
|
1473
|
+
version = "1.5.1"
|
|
1474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1475
|
+
checksum = "a483403238cb7d6a876a77a5f8191780336d80fe7b8b00bfdeb20be6abbfd112"
|
|
1476
|
+
|
|
1477
|
+
[[package]]
|
|
1478
|
+
name = "icu_properties"
|
|
1479
|
+
version = "1.5.1"
|
|
1480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
1482
|
+
dependencies = [
|
|
1483
|
+
"displaydoc",
|
|
1484
|
+
"icu_collections 1.5.0",
|
|
1485
|
+
"icu_locid_transform",
|
|
1486
|
+
"icu_properties_data 1.5.1",
|
|
1487
|
+
"icu_provider 1.5.0",
|
|
1488
|
+
"tinystr 0.7.6",
|
|
1489
|
+
"zerovec 0.10.4",
|
|
1490
|
+
]
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "icu_properties"
|
|
1494
|
+
version = "2.1.2"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"icu_collections 2.1.1",
|
|
1499
|
+
"icu_locale_core",
|
|
1500
|
+
"icu_properties_data 2.1.2",
|
|
1501
|
+
"icu_provider 2.1.1",
|
|
1502
|
+
"zerotrie 0.2.3",
|
|
1503
|
+
"zerovec 0.11.5",
|
|
1504
|
+
]
|
|
1505
|
+
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "icu_properties_data"
|
|
1508
|
+
version = "1.5.1"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "icu_properties_data"
|
|
1514
|
+
version = "2.1.2"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "icu_provider"
|
|
1520
|
+
version = "1.5.0"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"displaydoc",
|
|
1525
|
+
"icu_locid",
|
|
1526
|
+
"icu_provider_macros",
|
|
1527
|
+
"stable_deref_trait",
|
|
1528
|
+
"tinystr 0.7.6",
|
|
1529
|
+
"writeable 0.5.5",
|
|
1530
|
+
"yoke 0.7.5",
|
|
1531
|
+
"zerofrom",
|
|
1532
|
+
"zerovec 0.10.4",
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "icu_provider"
|
|
1537
|
+
version = "2.1.1"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"displaydoc",
|
|
1542
|
+
"icu_locale_core",
|
|
1543
|
+
"writeable 0.6.2",
|
|
1544
|
+
"yoke 0.8.1",
|
|
1545
|
+
"zerofrom",
|
|
1546
|
+
"zerotrie 0.2.3",
|
|
1547
|
+
"zerovec 0.11.5",
|
|
1548
|
+
]
|
|
1549
|
+
|
|
1550
|
+
[[package]]
|
|
1551
|
+
name = "icu_provider_adapters"
|
|
1552
|
+
version = "1.5.0"
|
|
1553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
+
checksum = "d6324dfd08348a8e0374a447ebd334044d766b1839bb8d5ccf2482a99a77c0bc"
|
|
1555
|
+
dependencies = [
|
|
1556
|
+
"icu_locid",
|
|
1557
|
+
"icu_locid_transform",
|
|
1558
|
+
"icu_provider 1.5.0",
|
|
1559
|
+
"tinystr 0.7.6",
|
|
1560
|
+
"zerovec 0.10.4",
|
|
1561
|
+
]
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "icu_provider_macros"
|
|
1565
|
+
version = "1.5.0"
|
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1568
|
+
dependencies = [
|
|
1569
|
+
"proc-macro2",
|
|
1570
|
+
"quote",
|
|
1571
|
+
"syn 2.0.117",
|
|
1572
|
+
]
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "icu_segmenter"
|
|
1576
|
+
version = "1.5.0"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "a717725612346ffc2d7b42c94b820db6908048f39434504cb130e8b46256b0de"
|
|
1579
|
+
dependencies = [
|
|
1580
|
+
"core_maths",
|
|
1581
|
+
"displaydoc",
|
|
1582
|
+
"icu_collections 1.5.0",
|
|
1583
|
+
"icu_locid",
|
|
1584
|
+
"icu_provider 1.5.0",
|
|
1585
|
+
"icu_segmenter_data",
|
|
1586
|
+
"utf8_iter",
|
|
1587
|
+
"zerovec 0.10.4",
|
|
1588
|
+
]
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "icu_segmenter_data"
|
|
1592
|
+
version = "1.5.1"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "a1e52775179941363cc594e49ce99284d13d6948928d8e72c755f55e98caa1eb"
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "icu_timezone"
|
|
1598
|
+
version = "1.5.0"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "aa91ba6a585939a020c787235daa8aee856d9bceebd6355e283c0c310bc6de96"
|
|
1601
|
+
dependencies = [
|
|
1602
|
+
"displaydoc",
|
|
1603
|
+
"icu_calendar",
|
|
1604
|
+
"icu_provider 1.5.0",
|
|
1605
|
+
"icu_timezone_data",
|
|
1606
|
+
"tinystr 0.7.6",
|
|
1607
|
+
"zerotrie 0.1.3",
|
|
1608
|
+
"zerovec 0.10.4",
|
|
1609
|
+
]
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "icu_timezone_data"
|
|
1613
|
+
version = "1.5.1"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "1adcf7b613a268af025bc2a2532b4b9ee294e6051c5c0832d8bff20ac0232e68"
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "id-arena"
|
|
1619
|
+
version = "2.3.0"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1622
|
+
|
|
1623
|
+
[[package]]
|
|
1624
|
+
name = "idna"
|
|
1625
|
+
version = "1.1.0"
|
|
1626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1628
|
+
dependencies = [
|
|
1629
|
+
"idna_adapter",
|
|
1630
|
+
"smallvec",
|
|
1631
|
+
"utf8_iter",
|
|
1632
|
+
]
|
|
1633
|
+
|
|
1634
|
+
[[package]]
|
|
1635
|
+
name = "idna_adapter"
|
|
1636
|
+
version = "1.2.1"
|
|
1637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1639
|
+
dependencies = [
|
|
1640
|
+
"icu_normalizer 2.1.1",
|
|
1641
|
+
"icu_properties 2.1.2",
|
|
1642
|
+
]
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "indexmap"
|
|
1646
|
+
version = "2.13.0"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
1649
|
+
dependencies = [
|
|
1650
|
+
"equivalent",
|
|
1651
|
+
"hashbrown 0.16.1",
|
|
1652
|
+
"serde",
|
|
1653
|
+
"serde_core",
|
|
1654
|
+
]
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "indextree"
|
|
1658
|
+
version = "4.7.4"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "cb9e21e48c85fa6643a38caca564645a3bbc9211edf506fc8ed690c7e7b4d3c7"
|
|
1661
|
+
dependencies = [
|
|
1662
|
+
"indextree-macros",
|
|
1663
|
+
]
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "indextree-macros"
|
|
1667
|
+
version = "0.1.3"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "f85dac6c239acc85fd61934c572292d93adfd2de459d9c032aa22b553506e915"
|
|
1670
|
+
dependencies = [
|
|
1671
|
+
"either",
|
|
1672
|
+
"itertools",
|
|
1673
|
+
"proc-macro2",
|
|
1674
|
+
"quote",
|
|
1675
|
+
"strum",
|
|
1676
|
+
"syn 2.0.117",
|
|
1677
|
+
"thiserror",
|
|
1678
|
+
]
|
|
1679
|
+
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "inotify"
|
|
1682
|
+
version = "0.11.1"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "bd5b3eaf1a28b758ac0faa5a4254e8ab2705605496f1b1f3fbbc3988ad73d199"
|
|
1685
|
+
dependencies = [
|
|
1686
|
+
"bitflags 2.11.0",
|
|
1687
|
+
"inotify-sys",
|
|
1688
|
+
"libc",
|
|
1689
|
+
]
|
|
1690
|
+
|
|
1691
|
+
[[package]]
|
|
1692
|
+
name = "inotify-sys"
|
|
1693
|
+
version = "0.1.5"
|
|
1694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
+
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
|
|
1696
|
+
dependencies = [
|
|
1697
|
+
"libc",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "ipnet"
|
|
1702
|
+
version = "2.12.0"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "iri-string"
|
|
1708
|
+
version = "0.7.10"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
1711
|
+
dependencies = [
|
|
1712
|
+
"memchr",
|
|
1713
|
+
"serde",
|
|
1714
|
+
]
|
|
1715
|
+
|
|
1716
|
+
[[package]]
|
|
1717
|
+
name = "is_terminal_polyfill"
|
|
1718
|
+
version = "1.70.2"
|
|
1719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1720
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "itertools"
|
|
1724
|
+
version = "0.14.0"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1727
|
+
dependencies = [
|
|
1728
|
+
"either",
|
|
1729
|
+
]
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "itoa"
|
|
1733
|
+
version = "1.0.17"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
1736
|
+
|
|
1737
|
+
[[package]]
|
|
1738
|
+
name = "js-sys"
|
|
1739
|
+
version = "0.3.91"
|
|
1740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
1742
|
+
dependencies = [
|
|
1743
|
+
"once_cell",
|
|
1744
|
+
"wasm-bindgen",
|
|
1745
|
+
]
|
|
1746
|
+
|
|
1747
|
+
[[package]]
|
|
1748
|
+
name = "json"
|
|
1749
|
+
version = "0.12.4"
|
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
+
checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd"
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "kqueue"
|
|
1755
|
+
version = "1.1.1"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
|
|
1758
|
+
dependencies = [
|
|
1759
|
+
"kqueue-sys",
|
|
1760
|
+
"libc",
|
|
1761
|
+
]
|
|
1762
|
+
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "kqueue-sys"
|
|
1765
|
+
version = "1.0.4"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
|
|
1768
|
+
dependencies = [
|
|
1769
|
+
"bitflags 1.3.2",
|
|
1770
|
+
"libc",
|
|
1771
|
+
]
|
|
1772
|
+
|
|
1773
|
+
[[package]]
|
|
1774
|
+
name = "lazy_static"
|
|
1775
|
+
version = "1.5.0"
|
|
1776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "leb128fmt"
|
|
1781
|
+
version = "0.1.0"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1784
|
+
|
|
1785
|
+
[[package]]
|
|
1786
|
+
name = "lexical"
|
|
1787
|
+
version = "7.0.5"
|
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
+
checksum = "1bc8a009b2ff1f419ccc62706f04fe0ca6e67b37460513964a3dfdb919bb37d6"
|
|
1790
|
+
dependencies = [
|
|
1791
|
+
"lexical-core",
|
|
1792
|
+
]
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "lexical-core"
|
|
1796
|
+
version = "1.0.6"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
1799
|
+
dependencies = [
|
|
1800
|
+
"lexical-parse-float",
|
|
1801
|
+
"lexical-parse-integer",
|
|
1802
|
+
"lexical-util",
|
|
1803
|
+
"lexical-write-float",
|
|
1804
|
+
"lexical-write-integer",
|
|
1805
|
+
]
|
|
1806
|
+
|
|
1807
|
+
[[package]]
|
|
1808
|
+
name = "lexical-parse-float"
|
|
1809
|
+
version = "1.0.6"
|
|
1810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1811
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
1812
|
+
dependencies = [
|
|
1813
|
+
"lexical-parse-integer",
|
|
1814
|
+
"lexical-util",
|
|
1815
|
+
]
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "lexical-parse-integer"
|
|
1819
|
+
version = "1.0.6"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
1822
|
+
dependencies = [
|
|
1823
|
+
"lexical-util",
|
|
1824
|
+
]
|
|
1825
|
+
|
|
1826
|
+
[[package]]
|
|
1827
|
+
name = "lexical-util"
|
|
1828
|
+
version = "1.0.7"
|
|
1829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
1831
|
+
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "lexical-write-float"
|
|
1834
|
+
version = "1.0.6"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
1837
|
+
dependencies = [
|
|
1838
|
+
"lexical-util",
|
|
1839
|
+
"lexical-write-integer",
|
|
1840
|
+
]
|
|
1841
|
+
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "lexical-write-integer"
|
|
1844
|
+
version = "1.0.6"
|
|
1845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
1847
|
+
dependencies = [
|
|
1848
|
+
"lexical-util",
|
|
1849
|
+
]
|
|
1850
|
+
|
|
1851
|
+
[[package]]
|
|
1852
|
+
name = "libc"
|
|
1853
|
+
version = "0.2.183"
|
|
1854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1855
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "libm"
|
|
1859
|
+
version = "0.2.16"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "libsqlite3-sys"
|
|
1865
|
+
version = "0.37.0"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "b1f111c8c41e7c61a49cd34e44c7619462967221a6443b0ec299e0ac30cfb9b1"
|
|
1868
|
+
dependencies = [
|
|
1869
|
+
"cc",
|
|
1870
|
+
"pkg-config",
|
|
1871
|
+
"vcpkg",
|
|
1872
|
+
]
|
|
1873
|
+
|
|
1874
|
+
[[package]]
|
|
1875
|
+
name = "libyml"
|
|
1876
|
+
version = "0.0.5"
|
|
1877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1878
|
+
checksum = "3302702afa434ffa30847a83305f0a69d6abd74293b6554c18ec85c7ef30c980"
|
|
1879
|
+
dependencies = [
|
|
1880
|
+
"anyhow",
|
|
1881
|
+
"version_check",
|
|
1882
|
+
]
|
|
1883
|
+
|
|
1884
|
+
[[package]]
|
|
1885
|
+
name = "linux-raw-sys"
|
|
1886
|
+
version = "0.12.1"
|
|
1887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1888
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1889
|
+
|
|
1890
|
+
[[package]]
|
|
1891
|
+
name = "litemap"
|
|
1892
|
+
version = "0.7.5"
|
|
1893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
1895
|
+
|
|
1896
|
+
[[package]]
|
|
1897
|
+
name = "litemap"
|
|
1898
|
+
version = "0.8.1"
|
|
1899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1900
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1901
|
+
|
|
1902
|
+
[[package]]
|
|
1903
|
+
name = "lock_api"
|
|
1904
|
+
version = "0.4.14"
|
|
1905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1907
|
+
dependencies = [
|
|
1908
|
+
"scopeguard",
|
|
1909
|
+
]
|
|
1910
|
+
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "log"
|
|
1913
|
+
version = "0.4.29"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1916
|
+
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "logos"
|
|
1919
|
+
version = "0.15.1"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "ff472f899b4ec2d99161c51f60ff7075eeb3097069a36050d8037a6325eb8154"
|
|
1922
|
+
dependencies = [
|
|
1923
|
+
"logos-derive",
|
|
1924
|
+
]
|
|
1925
|
+
|
|
1926
|
+
[[package]]
|
|
1927
|
+
name = "logos-codegen"
|
|
1928
|
+
version = "0.15.1"
|
|
1929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1930
|
+
checksum = "192a3a2b90b0c05b27a0b2c43eecdb7c415e29243acc3f89cc8247a5b693045c"
|
|
1931
|
+
dependencies = [
|
|
1932
|
+
"beef",
|
|
1933
|
+
"fnv",
|
|
1934
|
+
"lazy_static",
|
|
1935
|
+
"proc-macro2",
|
|
1936
|
+
"quote",
|
|
1937
|
+
"regex-syntax 0.8.10",
|
|
1938
|
+
"rustc_version",
|
|
1939
|
+
"syn 2.0.117",
|
|
1940
|
+
]
|
|
1941
|
+
|
|
1942
|
+
[[package]]
|
|
1943
|
+
name = "logos-derive"
|
|
1944
|
+
version = "0.15.1"
|
|
1945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1946
|
+
checksum = "605d9697bcd5ef3a42d38efc51541aa3d6a4a25f7ab6d1ed0da5ac632a26b470"
|
|
1947
|
+
dependencies = [
|
|
1948
|
+
"logos-codegen",
|
|
1949
|
+
]
|
|
1950
|
+
|
|
1951
|
+
[[package]]
|
|
1952
|
+
name = "memchr"
|
|
1953
|
+
version = "2.8.0"
|
|
1954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1955
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1956
|
+
|
|
1957
|
+
[[package]]
|
|
1958
|
+
name = "mio"
|
|
1959
|
+
version = "1.1.1"
|
|
1960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1962
|
+
dependencies = [
|
|
1963
|
+
"libc",
|
|
1964
|
+
"log",
|
|
1965
|
+
"wasi",
|
|
1966
|
+
"windows-sys 0.61.2",
|
|
1967
|
+
]
|
|
1968
|
+
|
|
1969
|
+
[[package]]
|
|
1970
|
+
name = "native-tls"
|
|
1971
|
+
version = "0.2.18"
|
|
1972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
+
checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
|
|
1974
|
+
dependencies = [
|
|
1975
|
+
"libc",
|
|
1976
|
+
"log",
|
|
1977
|
+
"openssl",
|
|
1978
|
+
"openssl-probe",
|
|
1979
|
+
"openssl-sys",
|
|
1980
|
+
"schannel",
|
|
1981
|
+
"security-framework",
|
|
1982
|
+
"security-framework-sys",
|
|
1983
|
+
"tempfile",
|
|
1984
|
+
]
|
|
1985
|
+
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "next-gen"
|
|
1988
|
+
version = "0.1.1"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "1962f0b64c859f27f9551c74afbdbec7090fa83518daf6c5eb5b31d153455beb"
|
|
1991
|
+
dependencies = [
|
|
1992
|
+
"next-gen-proc_macros",
|
|
1993
|
+
"unwind_safe",
|
|
1994
|
+
]
|
|
1995
|
+
|
|
1996
|
+
[[package]]
|
|
1997
|
+
name = "next-gen-proc_macros"
|
|
1998
|
+
version = "0.1.1"
|
|
1999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
|
+
checksum = "a59395d2ffdd03894479cdd1ce4b7e0700d379d517f2d396cee2a4828707c5a0"
|
|
2001
|
+
dependencies = [
|
|
2002
|
+
"proc-macro2",
|
|
2003
|
+
"quote",
|
|
2004
|
+
"syn 1.0.109",
|
|
2005
|
+
]
|
|
2006
|
+
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "normalize-line-endings"
|
|
2009
|
+
version = "0.3.0"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
2012
|
+
|
|
2013
|
+
[[package]]
|
|
2014
|
+
name = "notify"
|
|
2015
|
+
version = "8.2.0"
|
|
2016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2017
|
+
checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
|
|
2018
|
+
dependencies = [
|
|
2019
|
+
"bitflags 2.11.0",
|
|
2020
|
+
"fsevent-sys",
|
|
2021
|
+
"inotify",
|
|
2022
|
+
"kqueue",
|
|
2023
|
+
"libc",
|
|
2024
|
+
"log",
|
|
2025
|
+
"mio",
|
|
2026
|
+
"notify-types",
|
|
2027
|
+
"walkdir",
|
|
2028
|
+
"windows-sys 0.60.2",
|
|
2029
|
+
]
|
|
2030
|
+
|
|
2031
|
+
[[package]]
|
|
2032
|
+
name = "notify-types"
|
|
2033
|
+
version = "2.1.0"
|
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
|
+
checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
|
|
2036
|
+
dependencies = [
|
|
2037
|
+
"bitflags 2.11.0",
|
|
2038
|
+
]
|
|
2039
|
+
|
|
2040
|
+
[[package]]
|
|
2041
|
+
name = "num"
|
|
2042
|
+
version = "0.4.3"
|
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
2045
|
+
dependencies = [
|
|
2046
|
+
"num-bigint",
|
|
2047
|
+
"num-complex",
|
|
2048
|
+
"num-integer",
|
|
2049
|
+
"num-iter",
|
|
2050
|
+
"num-rational",
|
|
2051
|
+
"num-traits",
|
|
2052
|
+
]
|
|
2053
|
+
|
|
2054
|
+
[[package]]
|
|
2055
|
+
name = "num-bigint"
|
|
2056
|
+
version = "0.4.6"
|
|
2057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2058
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
2059
|
+
dependencies = [
|
|
2060
|
+
"num-integer",
|
|
2061
|
+
"num-traits",
|
|
2062
|
+
]
|
|
2063
|
+
|
|
2064
|
+
[[package]]
|
|
2065
|
+
name = "num-complex"
|
|
2066
|
+
version = "0.4.6"
|
|
2067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
2069
|
+
dependencies = [
|
|
2070
|
+
"num-traits",
|
|
2071
|
+
]
|
|
2072
|
+
|
|
2073
|
+
[[package]]
|
|
2074
|
+
name = "num-derive"
|
|
2075
|
+
version = "0.4.2"
|
|
2076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
2078
|
+
dependencies = [
|
|
2079
|
+
"proc-macro2",
|
|
2080
|
+
"quote",
|
|
2081
|
+
"syn 2.0.117",
|
|
2082
|
+
]
|
|
2083
|
+
|
|
2084
|
+
[[package]]
|
|
2085
|
+
name = "num-integer"
|
|
2086
|
+
version = "0.1.46"
|
|
2087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2089
|
+
dependencies = [
|
|
2090
|
+
"num-traits",
|
|
2091
|
+
]
|
|
2092
|
+
|
|
2093
|
+
[[package]]
|
|
2094
|
+
name = "num-iter"
|
|
2095
|
+
version = "0.1.45"
|
|
2096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2097
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
2098
|
+
dependencies = [
|
|
2099
|
+
"autocfg",
|
|
2100
|
+
"num-integer",
|
|
2101
|
+
"num-traits",
|
|
2102
|
+
]
|
|
2103
|
+
|
|
2104
|
+
[[package]]
|
|
2105
|
+
name = "num-rational"
|
|
2106
|
+
version = "0.4.2"
|
|
2107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2108
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
2109
|
+
dependencies = [
|
|
2110
|
+
"num-bigint",
|
|
2111
|
+
"num-integer",
|
|
2112
|
+
"num-traits",
|
|
2113
|
+
]
|
|
2114
|
+
|
|
2115
|
+
[[package]]
|
|
2116
|
+
name = "num-traits"
|
|
2117
|
+
version = "0.2.19"
|
|
2118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2120
|
+
dependencies = [
|
|
2121
|
+
"autocfg",
|
|
2122
|
+
]
|
|
2123
|
+
|
|
2124
|
+
[[package]]
|
|
2125
|
+
name = "object"
|
|
2126
|
+
version = "0.37.3"
|
|
2127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2128
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
2129
|
+
dependencies = [
|
|
2130
|
+
"memchr",
|
|
2131
|
+
]
|
|
2132
|
+
|
|
2133
|
+
[[package]]
|
|
2134
|
+
name = "once_cell"
|
|
2135
|
+
version = "1.21.4"
|
|
2136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
2138
|
+
|
|
2139
|
+
[[package]]
|
|
2140
|
+
name = "once_cell_polyfill"
|
|
2141
|
+
version = "1.70.2"
|
|
2142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "openssl"
|
|
2147
|
+
version = "0.10.76"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"bitflags 2.11.0",
|
|
2152
|
+
"cfg-if",
|
|
2153
|
+
"foreign-types",
|
|
2154
|
+
"libc",
|
|
2155
|
+
"once_cell",
|
|
2156
|
+
"openssl-macros",
|
|
2157
|
+
"openssl-sys",
|
|
2158
|
+
]
|
|
2159
|
+
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "openssl-macros"
|
|
2162
|
+
version = "0.1.1"
|
|
2163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
2165
|
+
dependencies = [
|
|
2166
|
+
"proc-macro2",
|
|
2167
|
+
"quote",
|
|
2168
|
+
"syn 2.0.117",
|
|
2169
|
+
]
|
|
2170
|
+
|
|
2171
|
+
[[package]]
|
|
2172
|
+
name = "openssl-probe"
|
|
2173
|
+
version = "0.2.1"
|
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
2176
|
+
|
|
2177
|
+
[[package]]
|
|
2178
|
+
name = "openssl-src"
|
|
2179
|
+
version = "300.5.5+3.5.5"
|
|
2180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2181
|
+
checksum = "3f1787d533e03597a7934fd0a765f0d28e94ecc5fb7789f8053b1e699a56f709"
|
|
2182
|
+
dependencies = [
|
|
2183
|
+
"cc",
|
|
2184
|
+
]
|
|
2185
|
+
|
|
2186
|
+
[[package]]
|
|
2187
|
+
name = "openssl-sys"
|
|
2188
|
+
version = "0.9.112"
|
|
2189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
+
checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb"
|
|
2191
|
+
dependencies = [
|
|
2192
|
+
"cc",
|
|
2193
|
+
"libc",
|
|
2194
|
+
"openssl-src",
|
|
2195
|
+
"pkg-config",
|
|
2196
|
+
"vcpkg",
|
|
2197
|
+
]
|
|
2198
|
+
|
|
2199
|
+
[[package]]
|
|
2200
|
+
name = "ordered-float"
|
|
2201
|
+
version = "5.1.0"
|
|
2202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
+
checksum = "7f4779c6901a562440c3786d08192c6fbda7c1c2060edd10006b05ee35d10f2d"
|
|
2204
|
+
dependencies = [
|
|
2205
|
+
"num-traits",
|
|
2206
|
+
]
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "parking_lot"
|
|
2210
|
+
version = "0.12.5"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2213
|
+
dependencies = [
|
|
2214
|
+
"lock_api",
|
|
2215
|
+
"parking_lot_core",
|
|
2216
|
+
]
|
|
2217
|
+
|
|
2218
|
+
[[package]]
|
|
2219
|
+
name = "parking_lot_core"
|
|
2220
|
+
version = "0.9.12"
|
|
2221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2222
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2223
|
+
dependencies = [
|
|
2224
|
+
"cfg-if",
|
|
2225
|
+
"libc",
|
|
2226
|
+
"redox_syscall",
|
|
2227
|
+
"smallvec",
|
|
2228
|
+
"windows-link",
|
|
2229
|
+
]
|
|
2230
|
+
|
|
2231
|
+
[[package]]
|
|
2232
|
+
name = "percent-encoding"
|
|
2233
|
+
version = "2.3.2"
|
|
2234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2235
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2236
|
+
|
|
2237
|
+
[[package]]
|
|
2238
|
+
name = "petgraph"
|
|
2239
|
+
version = "0.8.3"
|
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
2242
|
+
dependencies = [
|
|
2243
|
+
"fixedbitset",
|
|
2244
|
+
"hashbrown 0.15.5",
|
|
2245
|
+
"indexmap",
|
|
2246
|
+
"serde",
|
|
2247
|
+
]
|
|
2248
|
+
|
|
2249
|
+
[[package]]
|
|
2250
|
+
name = "pin-project-lite"
|
|
2251
|
+
version = "0.2.17"
|
|
2252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2253
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2254
|
+
|
|
2255
|
+
[[package]]
|
|
2256
|
+
name = "pin-utils"
|
|
2257
|
+
version = "0.1.0"
|
|
2258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2259
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2260
|
+
|
|
2261
|
+
[[package]]
|
|
2262
|
+
name = "pkg-config"
|
|
2263
|
+
version = "0.3.32"
|
|
2264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2265
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2266
|
+
|
|
2267
|
+
[[package]]
|
|
2268
|
+
name = "portable-atomic"
|
|
2269
|
+
version = "1.13.1"
|
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2271
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
2272
|
+
|
|
2273
|
+
[[package]]
|
|
2274
|
+
name = "potential_utf"
|
|
2275
|
+
version = "0.1.4"
|
|
2276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2277
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
2278
|
+
dependencies = [
|
|
2279
|
+
"zerovec 0.11.5",
|
|
2280
|
+
]
|
|
2281
|
+
|
|
2282
|
+
[[package]]
|
|
2283
|
+
name = "ppv-lite86"
|
|
2284
|
+
version = "0.2.21"
|
|
2285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2286
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2287
|
+
dependencies = [
|
|
2288
|
+
"zerocopy",
|
|
2289
|
+
]
|
|
2290
|
+
|
|
2291
|
+
[[package]]
|
|
2292
|
+
name = "predicates"
|
|
2293
|
+
version = "3.1.4"
|
|
2294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
2296
|
+
dependencies = [
|
|
2297
|
+
"anstyle",
|
|
2298
|
+
"difflib",
|
|
2299
|
+
"float-cmp",
|
|
2300
|
+
"normalize-line-endings",
|
|
2301
|
+
"predicates-core",
|
|
2302
|
+
"regex",
|
|
2303
|
+
]
|
|
2304
|
+
|
|
2305
|
+
[[package]]
|
|
2306
|
+
name = "predicates-core"
|
|
2307
|
+
version = "1.0.10"
|
|
2308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
2310
|
+
|
|
2311
|
+
[[package]]
|
|
2312
|
+
name = "predicates-tree"
|
|
2313
|
+
version = "1.0.13"
|
|
2314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2315
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
2316
|
+
dependencies = [
|
|
2317
|
+
"predicates-core",
|
|
2318
|
+
"termtree",
|
|
2319
|
+
]
|
|
2320
|
+
|
|
2321
|
+
[[package]]
|
|
2322
|
+
name = "prettyplease"
|
|
2323
|
+
version = "0.2.37"
|
|
2324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2325
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2326
|
+
dependencies = [
|
|
2327
|
+
"proc-macro2",
|
|
2328
|
+
"syn 2.0.117",
|
|
2329
|
+
]
|
|
2330
|
+
|
|
2331
|
+
[[package]]
|
|
2332
|
+
name = "proc-macro-crate"
|
|
2333
|
+
version = "3.5.0"
|
|
2334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
+
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
|
2336
|
+
dependencies = [
|
|
2337
|
+
"toml_edit",
|
|
2338
|
+
]
|
|
2339
|
+
|
|
2340
|
+
[[package]]
|
|
2341
|
+
name = "proc-macro-error"
|
|
2342
|
+
version = "0.4.12"
|
|
2343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2344
|
+
checksum = "18f33027081eba0a6d8aba6d1b1c3a3be58cbb12106341c2d5759fcd9b5277e7"
|
|
2345
|
+
dependencies = [
|
|
2346
|
+
"proc-macro-error-attr",
|
|
2347
|
+
"proc-macro2",
|
|
2348
|
+
"quote",
|
|
2349
|
+
"syn 1.0.109",
|
|
2350
|
+
"version_check",
|
|
2351
|
+
]
|
|
2352
|
+
|
|
2353
|
+
[[package]]
|
|
2354
|
+
name = "proc-macro-error-attr"
|
|
2355
|
+
version = "0.4.12"
|
|
2356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
+
checksum = "8a5b4b77fdb63c1eca72173d68d24501c54ab1269409f6b672c85deb18af69de"
|
|
2358
|
+
dependencies = [
|
|
2359
|
+
"proc-macro2",
|
|
2360
|
+
"quote",
|
|
2361
|
+
"syn 1.0.109",
|
|
2362
|
+
"syn-mid",
|
|
2363
|
+
"version_check",
|
|
2364
|
+
]
|
|
2365
|
+
|
|
2366
|
+
[[package]]
|
|
2367
|
+
name = "proc-macro-hack"
|
|
2368
|
+
version = "0.5.20+deprecated"
|
|
2369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2370
|
+
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
2371
|
+
|
|
2372
|
+
[[package]]
|
|
2373
|
+
name = "proc-macro2"
|
|
2374
|
+
version = "1.0.106"
|
|
2375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2376
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
2377
|
+
dependencies = [
|
|
2378
|
+
"unicode-ident",
|
|
2379
|
+
]
|
|
2380
|
+
|
|
2381
|
+
[[package]]
|
|
2382
|
+
name = "proptest"
|
|
2383
|
+
version = "1.10.0"
|
|
2384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
+
checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
|
|
2386
|
+
dependencies = [
|
|
2387
|
+
"bit-set",
|
|
2388
|
+
"bit-vec",
|
|
2389
|
+
"bitflags 2.11.0",
|
|
2390
|
+
"num-traits",
|
|
2391
|
+
"rand 0.9.2",
|
|
2392
|
+
"rand_chacha 0.9.0",
|
|
2393
|
+
"rand_xorshift",
|
|
2394
|
+
"regex-syntax 0.8.10",
|
|
2395
|
+
"rusty-fork",
|
|
2396
|
+
"tempfile",
|
|
2397
|
+
"unarray",
|
|
2398
|
+
]
|
|
2399
|
+
|
|
2400
|
+
[[package]]
|
|
2401
|
+
name = "psm"
|
|
2402
|
+
version = "0.1.30"
|
|
2403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2404
|
+
checksum = "3852766467df634d74f0b2d7819bf8dc483a0eb2e3b0f50f756f9cfe8b0d18d8"
|
|
2405
|
+
dependencies = [
|
|
2406
|
+
"ar_archive_writer",
|
|
2407
|
+
"cc",
|
|
2408
|
+
]
|
|
2409
|
+
|
|
2410
|
+
[[package]]
|
|
2411
|
+
name = "ptr_meta"
|
|
2412
|
+
version = "0.1.4"
|
|
2413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2414
|
+
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
|
|
2415
|
+
dependencies = [
|
|
2416
|
+
"ptr_meta_derive",
|
|
2417
|
+
]
|
|
2418
|
+
|
|
2419
|
+
[[package]]
|
|
2420
|
+
name = "ptr_meta_derive"
|
|
2421
|
+
version = "0.1.4"
|
|
2422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2423
|
+
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
2424
|
+
dependencies = [
|
|
2425
|
+
"proc-macro2",
|
|
2426
|
+
"quote",
|
|
2427
|
+
"syn 1.0.109",
|
|
2428
|
+
]
|
|
2429
|
+
|
|
2430
|
+
[[package]]
|
|
2431
|
+
name = "pyo3"
|
|
2432
|
+
version = "0.28.2"
|
|
2433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2434
|
+
checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
|
|
2435
|
+
dependencies = [
|
|
2436
|
+
"libc",
|
|
2437
|
+
"once_cell",
|
|
2438
|
+
"portable-atomic",
|
|
2439
|
+
"pyo3-build-config",
|
|
2440
|
+
"pyo3-ffi",
|
|
2441
|
+
"pyo3-macros",
|
|
2442
|
+
]
|
|
2443
|
+
|
|
2444
|
+
[[package]]
|
|
2445
|
+
name = "pyo3-async-runtimes"
|
|
2446
|
+
version = "0.28.0"
|
|
2447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2448
|
+
checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
|
|
2449
|
+
dependencies = [
|
|
2450
|
+
"futures-channel",
|
|
2451
|
+
"futures-util",
|
|
2452
|
+
"once_cell",
|
|
2453
|
+
"pin-project-lite",
|
|
2454
|
+
"pyo3",
|
|
2455
|
+
"tokio",
|
|
2456
|
+
]
|
|
2457
|
+
|
|
2458
|
+
[[package]]
|
|
2459
|
+
name = "pyo3-build-config"
|
|
2460
|
+
version = "0.28.2"
|
|
2461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2462
|
+
checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
|
|
2463
|
+
dependencies = [
|
|
2464
|
+
"target-lexicon",
|
|
2465
|
+
]
|
|
2466
|
+
|
|
2467
|
+
[[package]]
|
|
2468
|
+
name = "pyo3-ffi"
|
|
2469
|
+
version = "0.28.2"
|
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
|
+
checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
|
|
2472
|
+
dependencies = [
|
|
2473
|
+
"libc",
|
|
2474
|
+
"pyo3-build-config",
|
|
2475
|
+
]
|
|
2476
|
+
|
|
2477
|
+
[[package]]
|
|
2478
|
+
name = "pyo3-macros"
|
|
2479
|
+
version = "0.28.2"
|
|
2480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2481
|
+
checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
|
|
2482
|
+
dependencies = [
|
|
2483
|
+
"proc-macro2",
|
|
2484
|
+
"pyo3-macros-backend",
|
|
2485
|
+
"quote",
|
|
2486
|
+
"syn 2.0.117",
|
|
2487
|
+
]
|
|
2488
|
+
|
|
2489
|
+
[[package]]
|
|
2490
|
+
name = "pyo3-macros-backend"
|
|
2491
|
+
version = "0.28.2"
|
|
2492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2493
|
+
checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
|
|
2494
|
+
dependencies = [
|
|
2495
|
+
"heck",
|
|
2496
|
+
"proc-macro2",
|
|
2497
|
+
"pyo3-build-config",
|
|
2498
|
+
"quote",
|
|
2499
|
+
"syn 2.0.117",
|
|
2500
|
+
]
|
|
2501
|
+
|
|
2502
|
+
[[package]]
|
|
2503
|
+
name = "quick-error"
|
|
2504
|
+
version = "1.2.3"
|
|
2505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
2507
|
+
|
|
2508
|
+
[[package]]
|
|
2509
|
+
name = "quote"
|
|
2510
|
+
version = "1.0.45"
|
|
2511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2512
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
2513
|
+
dependencies = [
|
|
2514
|
+
"proc-macro2",
|
|
2515
|
+
]
|
|
2516
|
+
|
|
2517
|
+
[[package]]
|
|
2518
|
+
name = "r-efi"
|
|
2519
|
+
version = "5.3.0"
|
|
2520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2521
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2522
|
+
|
|
2523
|
+
[[package]]
|
|
2524
|
+
name = "r-efi"
|
|
2525
|
+
version = "6.0.0"
|
|
2526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2527
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2528
|
+
|
|
2529
|
+
[[package]]
|
|
2530
|
+
name = "radium"
|
|
2531
|
+
version = "0.7.0"
|
|
2532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2533
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
2534
|
+
|
|
2535
|
+
[[package]]
|
|
2536
|
+
name = "rand"
|
|
2537
|
+
version = "0.8.5"
|
|
2538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2539
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2540
|
+
dependencies = [
|
|
2541
|
+
"libc",
|
|
2542
|
+
"rand_chacha 0.3.1",
|
|
2543
|
+
"rand_core 0.6.4",
|
|
2544
|
+
]
|
|
2545
|
+
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "rand"
|
|
2548
|
+
version = "0.9.2"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2551
|
+
dependencies = [
|
|
2552
|
+
"rand_chacha 0.9.0",
|
|
2553
|
+
"rand_core 0.9.5",
|
|
2554
|
+
]
|
|
2555
|
+
|
|
2556
|
+
[[package]]
|
|
2557
|
+
name = "rand_chacha"
|
|
2558
|
+
version = "0.3.1"
|
|
2559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2560
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2561
|
+
dependencies = [
|
|
2562
|
+
"ppv-lite86",
|
|
2563
|
+
"rand_core 0.6.4",
|
|
2564
|
+
]
|
|
2565
|
+
|
|
2566
|
+
[[package]]
|
|
2567
|
+
name = "rand_chacha"
|
|
2568
|
+
version = "0.9.0"
|
|
2569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2571
|
+
dependencies = [
|
|
2572
|
+
"ppv-lite86",
|
|
2573
|
+
"rand_core 0.9.5",
|
|
2574
|
+
]
|
|
2575
|
+
|
|
2576
|
+
[[package]]
|
|
2577
|
+
name = "rand_core"
|
|
2578
|
+
version = "0.6.4"
|
|
2579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2581
|
+
dependencies = [
|
|
2582
|
+
"getrandom 0.2.17",
|
|
2583
|
+
]
|
|
2584
|
+
|
|
2585
|
+
[[package]]
|
|
2586
|
+
name = "rand_core"
|
|
2587
|
+
version = "0.9.5"
|
|
2588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2589
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2590
|
+
dependencies = [
|
|
2591
|
+
"getrandom 0.3.4",
|
|
2592
|
+
]
|
|
2593
|
+
|
|
2594
|
+
[[package]]
|
|
2595
|
+
name = "rand_xorshift"
|
|
2596
|
+
version = "0.4.0"
|
|
2597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
2599
|
+
dependencies = [
|
|
2600
|
+
"rand_core 0.9.5",
|
|
2601
|
+
]
|
|
2602
|
+
|
|
2603
|
+
[[package]]
|
|
2604
|
+
name = "rand_xoshiro"
|
|
2605
|
+
version = "0.6.0"
|
|
2606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2607
|
+
checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
|
|
2608
|
+
dependencies = [
|
|
2609
|
+
"rand_core 0.6.4",
|
|
2610
|
+
]
|
|
2611
|
+
|
|
2612
|
+
[[package]]
|
|
2613
|
+
name = "rayon"
|
|
2614
|
+
version = "1.11.0"
|
|
2615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2616
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
2617
|
+
dependencies = [
|
|
2618
|
+
"either",
|
|
2619
|
+
"rayon-core",
|
|
2620
|
+
]
|
|
2621
|
+
|
|
2622
|
+
[[package]]
|
|
2623
|
+
name = "rayon-core"
|
|
2624
|
+
version = "1.13.0"
|
|
2625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2626
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2627
|
+
dependencies = [
|
|
2628
|
+
"crossbeam-deque",
|
|
2629
|
+
"crossbeam-utils",
|
|
2630
|
+
]
|
|
2631
|
+
|
|
2632
|
+
[[package]]
|
|
2633
|
+
name = "redox_syscall"
|
|
2634
|
+
version = "0.5.18"
|
|
2635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2637
|
+
dependencies = [
|
|
2638
|
+
"bitflags 2.11.0",
|
|
2639
|
+
]
|
|
2640
|
+
|
|
2641
|
+
[[package]]
|
|
2642
|
+
name = "regex"
|
|
2643
|
+
version = "1.12.3"
|
|
2644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2645
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2646
|
+
dependencies = [
|
|
2647
|
+
"aho-corasick",
|
|
2648
|
+
"memchr",
|
|
2649
|
+
"regex-automata 0.4.14",
|
|
2650
|
+
"regex-syntax 0.8.10",
|
|
2651
|
+
]
|
|
2652
|
+
|
|
2653
|
+
[[package]]
|
|
2654
|
+
name = "regex-automata"
|
|
2655
|
+
version = "0.2.0"
|
|
2656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2657
|
+
checksum = "e9368763f5a9b804326f3af749e16f9abf378d227bcdee7634b13d8f17793782"
|
|
2658
|
+
dependencies = [
|
|
2659
|
+
"memchr",
|
|
2660
|
+
]
|
|
2661
|
+
|
|
2662
|
+
[[package]]
|
|
2663
|
+
name = "regex-automata"
|
|
2664
|
+
version = "0.3.9"
|
|
2665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2666
|
+
checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9"
|
|
2667
|
+
dependencies = [
|
|
2668
|
+
"aho-corasick",
|
|
2669
|
+
"memchr",
|
|
2670
|
+
"regex-syntax 0.7.5",
|
|
2671
|
+
]
|
|
2672
|
+
|
|
2673
|
+
[[package]]
|
|
2674
|
+
name = "regex-automata"
|
|
2675
|
+
version = "0.4.14"
|
|
2676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2677
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2678
|
+
dependencies = [
|
|
2679
|
+
"aho-corasick",
|
|
2680
|
+
"memchr",
|
|
2681
|
+
"regex-syntax 0.8.10",
|
|
2682
|
+
]
|
|
2683
|
+
|
|
2684
|
+
[[package]]
|
|
2685
|
+
name = "regex-syntax"
|
|
2686
|
+
version = "0.7.5"
|
|
2687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
+
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
|
|
2689
|
+
|
|
2690
|
+
[[package]]
|
|
2691
|
+
name = "regex-syntax"
|
|
2692
|
+
version = "0.8.10"
|
|
2693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
2695
|
+
|
|
2696
|
+
[[package]]
|
|
2697
|
+
name = "regexml"
|
|
2698
|
+
version = "0.2.1"
|
|
2699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
+
checksum = "628f32da9824d0fd8f2c30b1128ddcccc5a8d9de807133e6236c0020ea6f3dca"
|
|
2701
|
+
dependencies = [
|
|
2702
|
+
"ahash 0.8.12",
|
|
2703
|
+
"enum_dispatch",
|
|
2704
|
+
"icu_casemap",
|
|
2705
|
+
"icu_collections 1.5.0",
|
|
2706
|
+
"icu_properties 1.5.1",
|
|
2707
|
+
]
|
|
2708
|
+
|
|
2709
|
+
[[package]]
|
|
2710
|
+
name = "rend"
|
|
2711
|
+
version = "0.4.2"
|
|
2712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2713
|
+
checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
|
|
2714
|
+
dependencies = [
|
|
2715
|
+
"bytecheck",
|
|
2716
|
+
]
|
|
2717
|
+
|
|
2718
|
+
[[package]]
|
|
2719
|
+
name = "reqwest"
|
|
2720
|
+
version = "0.13.2"
|
|
2721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2722
|
+
checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
|
|
2723
|
+
dependencies = [
|
|
2724
|
+
"base64",
|
|
2725
|
+
"bytes",
|
|
2726
|
+
"futures-channel",
|
|
2727
|
+
"futures-core",
|
|
2728
|
+
"futures-util",
|
|
2729
|
+
"http",
|
|
2730
|
+
"http-body",
|
|
2731
|
+
"http-body-util",
|
|
2732
|
+
"hyper",
|
|
2733
|
+
"hyper-tls",
|
|
2734
|
+
"hyper-util",
|
|
2735
|
+
"js-sys",
|
|
2736
|
+
"log",
|
|
2737
|
+
"native-tls",
|
|
2738
|
+
"percent-encoding",
|
|
2739
|
+
"pin-project-lite",
|
|
2740
|
+
"rustls-pki-types",
|
|
2741
|
+
"sync_wrapper",
|
|
2742
|
+
"tokio",
|
|
2743
|
+
"tokio-native-tls",
|
|
2744
|
+
"tower",
|
|
2745
|
+
"tower-http",
|
|
2746
|
+
"tower-service",
|
|
2747
|
+
"url",
|
|
2748
|
+
"wasm-bindgen",
|
|
2749
|
+
"wasm-bindgen-futures",
|
|
2750
|
+
"web-sys",
|
|
2751
|
+
]
|
|
2752
|
+
|
|
2753
|
+
[[package]]
|
|
2754
|
+
name = "rkyv"
|
|
2755
|
+
version = "0.7.46"
|
|
2756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2757
|
+
checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
|
|
2758
|
+
dependencies = [
|
|
2759
|
+
"bitvec",
|
|
2760
|
+
"bytecheck",
|
|
2761
|
+
"bytes",
|
|
2762
|
+
"hashbrown 0.12.3",
|
|
2763
|
+
"ptr_meta",
|
|
2764
|
+
"rend",
|
|
2765
|
+
"rkyv_derive",
|
|
2766
|
+
"seahash",
|
|
2767
|
+
"tinyvec",
|
|
2768
|
+
"uuid",
|
|
2769
|
+
]
|
|
2770
|
+
|
|
2771
|
+
[[package]]
|
|
2772
|
+
name = "rkyv_derive"
|
|
2773
|
+
version = "0.7.46"
|
|
2774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2775
|
+
checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
|
|
2776
|
+
dependencies = [
|
|
2777
|
+
"proc-macro2",
|
|
2778
|
+
"quote",
|
|
2779
|
+
"syn 1.0.109",
|
|
2780
|
+
]
|
|
2781
|
+
|
|
2782
|
+
[[package]]
|
|
2783
|
+
name = "rsqlite-vfs"
|
|
2784
|
+
version = "0.1.0"
|
|
2785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2786
|
+
checksum = "a8a1f2315036ef6b1fbacd1972e8ee7688030b0a2121edfc2a6550febd41574d"
|
|
2787
|
+
dependencies = [
|
|
2788
|
+
"hashbrown 0.16.1",
|
|
2789
|
+
"thiserror",
|
|
2790
|
+
]
|
|
2791
|
+
|
|
2792
|
+
[[package]]
|
|
2793
|
+
name = "rusqlite"
|
|
2794
|
+
version = "0.39.0"
|
|
2795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2796
|
+
checksum = "a0d2b0146dd9661bf67bb107c0bb2a55064d556eeb3fc314151b957f313bcd4e"
|
|
2797
|
+
dependencies = [
|
|
2798
|
+
"bitflags 2.11.0",
|
|
2799
|
+
"fallible-iterator",
|
|
2800
|
+
"fallible-streaming-iterator",
|
|
2801
|
+
"hashlink",
|
|
2802
|
+
"libsqlite3-sys",
|
|
2803
|
+
"smallvec",
|
|
2804
|
+
"sqlite-wasm-rs",
|
|
2805
|
+
]
|
|
2806
|
+
|
|
2807
|
+
[[package]]
|
|
2808
|
+
name = "rust_decimal"
|
|
2809
|
+
version = "1.40.0"
|
|
2810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2811
|
+
checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0"
|
|
2812
|
+
dependencies = [
|
|
2813
|
+
"arrayvec",
|
|
2814
|
+
"borsh",
|
|
2815
|
+
"bytes",
|
|
2816
|
+
"num-traits",
|
|
2817
|
+
"rand 0.8.5",
|
|
2818
|
+
"rkyv",
|
|
2819
|
+
"serde",
|
|
2820
|
+
"serde_json",
|
|
2821
|
+
]
|
|
2822
|
+
|
|
2823
|
+
[[package]]
|
|
2824
|
+
name = "rustc_version"
|
|
2825
|
+
version = "0.4.1"
|
|
2826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2827
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2828
|
+
dependencies = [
|
|
2829
|
+
"semver",
|
|
2830
|
+
]
|
|
2831
|
+
|
|
2832
|
+
[[package]]
|
|
2833
|
+
name = "rustix"
|
|
2834
|
+
version = "1.1.4"
|
|
2835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2836
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2837
|
+
dependencies = [
|
|
2838
|
+
"bitflags 2.11.0",
|
|
2839
|
+
"errno",
|
|
2840
|
+
"libc",
|
|
2841
|
+
"linux-raw-sys",
|
|
2842
|
+
"windows-sys 0.61.2",
|
|
2843
|
+
]
|
|
2844
|
+
|
|
2845
|
+
[[package]]
|
|
2846
|
+
name = "rustls-pki-types"
|
|
2847
|
+
version = "1.14.0"
|
|
2848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
2850
|
+
dependencies = [
|
|
2851
|
+
"zeroize",
|
|
2852
|
+
]
|
|
2853
|
+
|
|
2854
|
+
[[package]]
|
|
2855
|
+
name = "rustversion"
|
|
2856
|
+
version = "1.0.22"
|
|
2857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2858
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2859
|
+
|
|
2860
|
+
[[package]]
|
|
2861
|
+
name = "rusty-fork"
|
|
2862
|
+
version = "0.3.1"
|
|
2863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2864
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
2865
|
+
dependencies = [
|
|
2866
|
+
"fnv",
|
|
2867
|
+
"quick-error",
|
|
2868
|
+
"tempfile",
|
|
2869
|
+
"wait-timeout",
|
|
2870
|
+
]
|
|
2871
|
+
|
|
2872
|
+
[[package]]
|
|
2873
|
+
name = "ryu"
|
|
2874
|
+
version = "1.0.23"
|
|
2875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2876
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2877
|
+
|
|
2878
|
+
[[package]]
|
|
2879
|
+
name = "same-file"
|
|
2880
|
+
version = "1.0.6"
|
|
2881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2882
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2883
|
+
dependencies = [
|
|
2884
|
+
"winapi-util",
|
|
2885
|
+
]
|
|
2886
|
+
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "schannel"
|
|
2889
|
+
version = "0.1.29"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
2892
|
+
dependencies = [
|
|
2893
|
+
"windows-sys 0.61.2",
|
|
2894
|
+
]
|
|
2895
|
+
|
|
2896
|
+
[[package]]
|
|
2897
|
+
name = "scopeguard"
|
|
2898
|
+
version = "1.2.0"
|
|
2899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2900
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2901
|
+
|
|
2902
|
+
[[package]]
|
|
2903
|
+
name = "seahash"
|
|
2904
|
+
version = "4.1.0"
|
|
2905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2906
|
+
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
|
2907
|
+
|
|
2908
|
+
[[package]]
|
|
2909
|
+
name = "security-framework"
|
|
2910
|
+
version = "3.7.0"
|
|
2911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2912
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
2913
|
+
dependencies = [
|
|
2914
|
+
"bitflags 2.11.0",
|
|
2915
|
+
"core-foundation",
|
|
2916
|
+
"core-foundation-sys",
|
|
2917
|
+
"libc",
|
|
2918
|
+
"security-framework-sys",
|
|
2919
|
+
]
|
|
2920
|
+
|
|
2921
|
+
[[package]]
|
|
2922
|
+
name = "security-framework-sys"
|
|
2923
|
+
version = "2.17.0"
|
|
2924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2925
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
2926
|
+
dependencies = [
|
|
2927
|
+
"core-foundation-sys",
|
|
2928
|
+
"libc",
|
|
2929
|
+
]
|
|
2930
|
+
|
|
2931
|
+
[[package]]
|
|
2932
|
+
name = "semver"
|
|
2933
|
+
version = "1.0.27"
|
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2936
|
+
|
|
2937
|
+
[[package]]
|
|
2938
|
+
name = "serde"
|
|
2939
|
+
version = "1.0.228"
|
|
2940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2941
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2942
|
+
dependencies = [
|
|
2943
|
+
"serde_core",
|
|
2944
|
+
"serde_derive",
|
|
2945
|
+
]
|
|
2946
|
+
|
|
2947
|
+
[[package]]
|
|
2948
|
+
name = "serde_core"
|
|
2949
|
+
version = "1.0.228"
|
|
2950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2951
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2952
|
+
dependencies = [
|
|
2953
|
+
"serde_derive",
|
|
2954
|
+
]
|
|
2955
|
+
|
|
2956
|
+
[[package]]
|
|
2957
|
+
name = "serde_derive"
|
|
2958
|
+
version = "1.0.228"
|
|
2959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2961
|
+
dependencies = [
|
|
2962
|
+
"proc-macro2",
|
|
2963
|
+
"quote",
|
|
2964
|
+
"syn 2.0.117",
|
|
2965
|
+
]
|
|
2966
|
+
|
|
2967
|
+
[[package]]
|
|
2968
|
+
name = "serde_json"
|
|
2969
|
+
version = "1.0.149"
|
|
2970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
2972
|
+
dependencies = [
|
|
2973
|
+
"itoa",
|
|
2974
|
+
"memchr",
|
|
2975
|
+
"serde",
|
|
2976
|
+
"serde_core",
|
|
2977
|
+
"zmij",
|
|
2978
|
+
]
|
|
2979
|
+
|
|
2980
|
+
[[package]]
|
|
2981
|
+
name = "serde_yml"
|
|
2982
|
+
version = "0.0.12"
|
|
2983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
+
checksum = "59e2dd588bf1597a252c3b920e0143eb99b0f76e4e082f4c92ce34fbc9e71ddd"
|
|
2985
|
+
dependencies = [
|
|
2986
|
+
"indexmap",
|
|
2987
|
+
"itoa",
|
|
2988
|
+
"libyml",
|
|
2989
|
+
"memchr",
|
|
2990
|
+
"ryu",
|
|
2991
|
+
"serde",
|
|
2992
|
+
"version_check",
|
|
2993
|
+
]
|
|
2994
|
+
|
|
2995
|
+
[[package]]
|
|
2996
|
+
name = "sha1"
|
|
2997
|
+
version = "0.10.6"
|
|
2998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2999
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3000
|
+
dependencies = [
|
|
3001
|
+
"cfg-if",
|
|
3002
|
+
"cpufeatures",
|
|
3003
|
+
"digest",
|
|
3004
|
+
]
|
|
3005
|
+
|
|
3006
|
+
[[package]]
|
|
3007
|
+
name = "sha2"
|
|
3008
|
+
version = "0.10.9"
|
|
3009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3010
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3011
|
+
dependencies = [
|
|
3012
|
+
"cfg-if",
|
|
3013
|
+
"cpufeatures",
|
|
3014
|
+
"digest",
|
|
3015
|
+
]
|
|
3016
|
+
|
|
3017
|
+
[[package]]
|
|
3018
|
+
name = "shlex"
|
|
3019
|
+
version = "1.3.0"
|
|
3020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3021
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3022
|
+
|
|
3023
|
+
[[package]]
|
|
3024
|
+
name = "signal-hook-registry"
|
|
3025
|
+
version = "1.4.8"
|
|
3026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3027
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
3028
|
+
dependencies = [
|
|
3029
|
+
"errno",
|
|
3030
|
+
"libc",
|
|
3031
|
+
]
|
|
3032
|
+
|
|
3033
|
+
[[package]]
|
|
3034
|
+
name = "simdutf8"
|
|
3035
|
+
version = "0.1.5"
|
|
3036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3037
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
3038
|
+
|
|
3039
|
+
[[package]]
|
|
3040
|
+
name = "slab"
|
|
3041
|
+
version = "0.4.12"
|
|
3042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3043
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
3044
|
+
|
|
3045
|
+
[[package]]
|
|
3046
|
+
name = "smallvec"
|
|
3047
|
+
version = "1.15.1"
|
|
3048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3049
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3050
|
+
|
|
3051
|
+
[[package]]
|
|
3052
|
+
name = "socket2"
|
|
3053
|
+
version = "0.6.3"
|
|
3054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3055
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
3056
|
+
dependencies = [
|
|
3057
|
+
"libc",
|
|
3058
|
+
"windows-sys 0.61.2",
|
|
3059
|
+
]
|
|
3060
|
+
|
|
3061
|
+
[[package]]
|
|
3062
|
+
name = "sqlite-wasm-rs"
|
|
3063
|
+
version = "0.5.2"
|
|
3064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3065
|
+
checksum = "2f4206ed3a67690b9c29b77d728f6acc3ce78f16bf846d83c94f76400320181b"
|
|
3066
|
+
dependencies = [
|
|
3067
|
+
"cc",
|
|
3068
|
+
"js-sys",
|
|
3069
|
+
"rsqlite-vfs",
|
|
3070
|
+
"wasm-bindgen",
|
|
3071
|
+
]
|
|
3072
|
+
|
|
3073
|
+
[[package]]
|
|
3074
|
+
name = "stable_deref_trait"
|
|
3075
|
+
version = "1.2.1"
|
|
3076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3078
|
+
|
|
3079
|
+
[[package]]
|
|
3080
|
+
name = "stacker"
|
|
3081
|
+
version = "0.1.23"
|
|
3082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3083
|
+
checksum = "08d74a23609d509411d10e2176dc2a4346e3b4aea2e7b1869f19fdedbc71c013"
|
|
3084
|
+
dependencies = [
|
|
3085
|
+
"cc",
|
|
3086
|
+
"cfg-if",
|
|
3087
|
+
"libc",
|
|
3088
|
+
"psm",
|
|
3089
|
+
"windows-sys 0.59.0",
|
|
3090
|
+
]
|
|
3091
|
+
|
|
3092
|
+
[[package]]
|
|
3093
|
+
name = "static_assertions"
|
|
3094
|
+
version = "1.1.0"
|
|
3095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3096
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3097
|
+
|
|
3098
|
+
[[package]]
|
|
3099
|
+
name = "strsim"
|
|
3100
|
+
version = "0.11.1"
|
|
3101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3102
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3103
|
+
|
|
3104
|
+
[[package]]
|
|
3105
|
+
name = "strum"
|
|
3106
|
+
version = "0.27.2"
|
|
3107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3108
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
3109
|
+
dependencies = [
|
|
3110
|
+
"strum_macros",
|
|
3111
|
+
]
|
|
3112
|
+
|
|
3113
|
+
[[package]]
|
|
3114
|
+
name = "strum_macros"
|
|
3115
|
+
version = "0.27.2"
|
|
3116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3117
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
3118
|
+
dependencies = [
|
|
3119
|
+
"heck",
|
|
3120
|
+
"proc-macro2",
|
|
3121
|
+
"quote",
|
|
3122
|
+
"syn 2.0.117",
|
|
3123
|
+
]
|
|
3124
|
+
|
|
3125
|
+
[[package]]
|
|
3126
|
+
name = "syn"
|
|
3127
|
+
version = "1.0.109"
|
|
3128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3129
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
3130
|
+
dependencies = [
|
|
3131
|
+
"proc-macro2",
|
|
3132
|
+
"quote",
|
|
3133
|
+
"unicode-ident",
|
|
3134
|
+
]
|
|
3135
|
+
|
|
3136
|
+
[[package]]
|
|
3137
|
+
name = "syn"
|
|
3138
|
+
version = "2.0.117"
|
|
3139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3140
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
3141
|
+
dependencies = [
|
|
3142
|
+
"proc-macro2",
|
|
3143
|
+
"quote",
|
|
3144
|
+
"unicode-ident",
|
|
3145
|
+
]
|
|
3146
|
+
|
|
3147
|
+
[[package]]
|
|
3148
|
+
name = "syn-mid"
|
|
3149
|
+
version = "0.5.4"
|
|
3150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3151
|
+
checksum = "fea305d57546cc8cd04feb14b62ec84bf17f50e3f7b12560d7bfa9265f39d9ed"
|
|
3152
|
+
dependencies = [
|
|
3153
|
+
"proc-macro2",
|
|
3154
|
+
"quote",
|
|
3155
|
+
"syn 1.0.109",
|
|
3156
|
+
]
|
|
3157
|
+
|
|
3158
|
+
[[package]]
|
|
3159
|
+
name = "sync_wrapper"
|
|
3160
|
+
version = "1.0.2"
|
|
3161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3163
|
+
dependencies = [
|
|
3164
|
+
"futures-core",
|
|
3165
|
+
]
|
|
3166
|
+
|
|
3167
|
+
[[package]]
|
|
3168
|
+
name = "synstructure"
|
|
3169
|
+
version = "0.13.2"
|
|
3170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3171
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3172
|
+
dependencies = [
|
|
3173
|
+
"proc-macro2",
|
|
3174
|
+
"quote",
|
|
3175
|
+
"syn 2.0.117",
|
|
3176
|
+
]
|
|
3177
|
+
|
|
3178
|
+
[[package]]
|
|
3179
|
+
name = "tap"
|
|
3180
|
+
version = "1.0.1"
|
|
3181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3182
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
3183
|
+
|
|
3184
|
+
[[package]]
|
|
3185
|
+
name = "target-lexicon"
|
|
3186
|
+
version = "0.13.5"
|
|
3187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3188
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
3189
|
+
|
|
3190
|
+
[[package]]
|
|
3191
|
+
name = "tempfile"
|
|
3192
|
+
version = "3.27.0"
|
|
3193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3195
|
+
dependencies = [
|
|
3196
|
+
"fastrand",
|
|
3197
|
+
"getrandom 0.4.2",
|
|
3198
|
+
"once_cell",
|
|
3199
|
+
"rustix",
|
|
3200
|
+
"windows-sys 0.61.2",
|
|
3201
|
+
]
|
|
3202
|
+
|
|
3203
|
+
[[package]]
|
|
3204
|
+
name = "termtree"
|
|
3205
|
+
version = "0.5.1"
|
|
3206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3207
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
3208
|
+
|
|
3209
|
+
[[package]]
|
|
3210
|
+
name = "thiserror"
|
|
3211
|
+
version = "2.0.18"
|
|
3212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3213
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
3214
|
+
dependencies = [
|
|
3215
|
+
"thiserror-impl",
|
|
3216
|
+
]
|
|
3217
|
+
|
|
3218
|
+
[[package]]
|
|
3219
|
+
name = "thiserror-impl"
|
|
3220
|
+
version = "2.0.18"
|
|
3221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3222
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
3223
|
+
dependencies = [
|
|
3224
|
+
"proc-macro2",
|
|
3225
|
+
"quote",
|
|
3226
|
+
"syn 2.0.117",
|
|
3227
|
+
]
|
|
3228
|
+
|
|
3229
|
+
[[package]]
|
|
3230
|
+
name = "tinystr"
|
|
3231
|
+
version = "0.7.6"
|
|
3232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3233
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
3234
|
+
dependencies = [
|
|
3235
|
+
"displaydoc",
|
|
3236
|
+
"zerovec 0.10.4",
|
|
3237
|
+
]
|
|
3238
|
+
|
|
3239
|
+
[[package]]
|
|
3240
|
+
name = "tinystr"
|
|
3241
|
+
version = "0.8.2"
|
|
3242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
3244
|
+
dependencies = [
|
|
3245
|
+
"displaydoc",
|
|
3246
|
+
"zerovec 0.11.5",
|
|
3247
|
+
]
|
|
3248
|
+
|
|
3249
|
+
[[package]]
|
|
3250
|
+
name = "tinyvec"
|
|
3251
|
+
version = "1.11.0"
|
|
3252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3253
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
3254
|
+
dependencies = [
|
|
3255
|
+
"tinyvec_macros",
|
|
3256
|
+
]
|
|
3257
|
+
|
|
3258
|
+
[[package]]
|
|
3259
|
+
name = "tinyvec_macros"
|
|
3260
|
+
version = "0.1.1"
|
|
3261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3262
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3263
|
+
|
|
3264
|
+
[[package]]
|
|
3265
|
+
name = "tokio"
|
|
3266
|
+
version = "1.50.0"
|
|
3267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3268
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
3269
|
+
dependencies = [
|
|
3270
|
+
"bytes",
|
|
3271
|
+
"libc",
|
|
3272
|
+
"mio",
|
|
3273
|
+
"parking_lot",
|
|
3274
|
+
"pin-project-lite",
|
|
3275
|
+
"signal-hook-registry",
|
|
3276
|
+
"socket2",
|
|
3277
|
+
"tokio-macros",
|
|
3278
|
+
"windows-sys 0.61.2",
|
|
3279
|
+
]
|
|
3280
|
+
|
|
3281
|
+
[[package]]
|
|
3282
|
+
name = "tokio-macros"
|
|
3283
|
+
version = "2.6.1"
|
|
3284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3285
|
+
checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
|
|
3286
|
+
dependencies = [
|
|
3287
|
+
"proc-macro2",
|
|
3288
|
+
"quote",
|
|
3289
|
+
"syn 2.0.117",
|
|
3290
|
+
]
|
|
3291
|
+
|
|
3292
|
+
[[package]]
|
|
3293
|
+
name = "tokio-native-tls"
|
|
3294
|
+
version = "0.3.1"
|
|
3295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3296
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
3297
|
+
dependencies = [
|
|
3298
|
+
"native-tls",
|
|
3299
|
+
"tokio",
|
|
3300
|
+
]
|
|
3301
|
+
|
|
3302
|
+
[[package]]
|
|
3303
|
+
name = "tokio-stream"
|
|
3304
|
+
version = "0.1.18"
|
|
3305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3306
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
3307
|
+
dependencies = [
|
|
3308
|
+
"futures-core",
|
|
3309
|
+
"pin-project-lite",
|
|
3310
|
+
"tokio",
|
|
3311
|
+
]
|
|
3312
|
+
|
|
3313
|
+
[[package]]
|
|
3314
|
+
name = "tokio-tungstenite"
|
|
3315
|
+
version = "0.29.0"
|
|
3316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3317
|
+
checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
|
|
3318
|
+
dependencies = [
|
|
3319
|
+
"futures-util",
|
|
3320
|
+
"log",
|
|
3321
|
+
"tokio",
|
|
3322
|
+
"tungstenite",
|
|
3323
|
+
]
|
|
3324
|
+
|
|
3325
|
+
[[package]]
|
|
3326
|
+
name = "toml_datetime"
|
|
3327
|
+
version = "1.0.1+spec-1.1.0"
|
|
3328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3329
|
+
checksum = "9b320e741db58cac564e26c607d3cc1fdc4a88fd36c879568c07856ed83ff3e9"
|
|
3330
|
+
dependencies = [
|
|
3331
|
+
"serde_core",
|
|
3332
|
+
]
|
|
3333
|
+
|
|
3334
|
+
[[package]]
|
|
3335
|
+
name = "toml_edit"
|
|
3336
|
+
version = "0.25.5+spec-1.1.0"
|
|
3337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3338
|
+
checksum = "8ca1a40644a28bce036923f6a431df0b34236949d111cc07cb6dca830c9ef2e1"
|
|
3339
|
+
dependencies = [
|
|
3340
|
+
"indexmap",
|
|
3341
|
+
"toml_datetime",
|
|
3342
|
+
"toml_parser",
|
|
3343
|
+
"winnow",
|
|
3344
|
+
]
|
|
3345
|
+
|
|
3346
|
+
[[package]]
|
|
3347
|
+
name = "toml_parser"
|
|
3348
|
+
version = "1.0.10+spec-1.1.0"
|
|
3349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3350
|
+
checksum = "7df25b4befd31c4816df190124375d5a20c6b6921e2cad937316de3fccd63420"
|
|
3351
|
+
dependencies = [
|
|
3352
|
+
"winnow",
|
|
3353
|
+
]
|
|
3354
|
+
|
|
3355
|
+
[[package]]
|
|
3356
|
+
name = "tower"
|
|
3357
|
+
version = "0.5.3"
|
|
3358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3359
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
3360
|
+
dependencies = [
|
|
3361
|
+
"futures-core",
|
|
3362
|
+
"futures-util",
|
|
3363
|
+
"pin-project-lite",
|
|
3364
|
+
"sync_wrapper",
|
|
3365
|
+
"tokio",
|
|
3366
|
+
"tower-layer",
|
|
3367
|
+
"tower-service",
|
|
3368
|
+
]
|
|
3369
|
+
|
|
3370
|
+
[[package]]
|
|
3371
|
+
name = "tower-http"
|
|
3372
|
+
version = "0.6.8"
|
|
3373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3374
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
3375
|
+
dependencies = [
|
|
3376
|
+
"bitflags 2.11.0",
|
|
3377
|
+
"bytes",
|
|
3378
|
+
"futures-util",
|
|
3379
|
+
"http",
|
|
3380
|
+
"http-body",
|
|
3381
|
+
"iri-string",
|
|
3382
|
+
"pin-project-lite",
|
|
3383
|
+
"tower",
|
|
3384
|
+
"tower-layer",
|
|
3385
|
+
"tower-service",
|
|
3386
|
+
]
|
|
3387
|
+
|
|
3388
|
+
[[package]]
|
|
3389
|
+
name = "tower-layer"
|
|
3390
|
+
version = "0.3.3"
|
|
3391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3392
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3393
|
+
|
|
3394
|
+
[[package]]
|
|
3395
|
+
name = "tower-service"
|
|
3396
|
+
version = "0.3.3"
|
|
3397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3398
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3399
|
+
|
|
3400
|
+
[[package]]
|
|
3401
|
+
name = "tracing"
|
|
3402
|
+
version = "0.1.44"
|
|
3403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3404
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3405
|
+
dependencies = [
|
|
3406
|
+
"pin-project-lite",
|
|
3407
|
+
"tracing-core",
|
|
3408
|
+
]
|
|
3409
|
+
|
|
3410
|
+
[[package]]
|
|
3411
|
+
name = "tracing-core"
|
|
3412
|
+
version = "0.1.36"
|
|
3413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3414
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3415
|
+
dependencies = [
|
|
3416
|
+
"once_cell",
|
|
3417
|
+
]
|
|
3418
|
+
|
|
3419
|
+
[[package]]
|
|
3420
|
+
name = "try-lock"
|
|
3421
|
+
version = "0.2.5"
|
|
3422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3423
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3424
|
+
|
|
3425
|
+
[[package]]
|
|
3426
|
+
name = "tungstenite"
|
|
3427
|
+
version = "0.29.0"
|
|
3428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3429
|
+
checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
|
|
3430
|
+
dependencies = [
|
|
3431
|
+
"bytes",
|
|
3432
|
+
"data-encoding",
|
|
3433
|
+
"http",
|
|
3434
|
+
"httparse",
|
|
3435
|
+
"log",
|
|
3436
|
+
"rand 0.9.2",
|
|
3437
|
+
"sha1",
|
|
3438
|
+
"thiserror",
|
|
3439
|
+
]
|
|
3440
|
+
|
|
3441
|
+
[[package]]
|
|
3442
|
+
name = "typenum"
|
|
3443
|
+
version = "1.19.0"
|
|
3444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3445
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3446
|
+
|
|
3447
|
+
[[package]]
|
|
3448
|
+
name = "unarray"
|
|
3449
|
+
version = "0.1.4"
|
|
3450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3451
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
3452
|
+
|
|
3453
|
+
[[package]]
|
|
3454
|
+
name = "unicode-ident"
|
|
3455
|
+
version = "1.0.24"
|
|
3456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3457
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3458
|
+
|
|
3459
|
+
[[package]]
|
|
3460
|
+
name = "unicode-segmentation"
|
|
3461
|
+
version = "1.12.0"
|
|
3462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3463
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3464
|
+
|
|
3465
|
+
[[package]]
|
|
3466
|
+
name = "unicode-xid"
|
|
3467
|
+
version = "0.2.6"
|
|
3468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3469
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3470
|
+
|
|
3471
|
+
[[package]]
|
|
3472
|
+
name = "unwind_safe"
|
|
3473
|
+
version = "0.1.0"
|
|
3474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3475
|
+
checksum = "0976c77def3f1f75c4ef892a292c31c0bbe9e3d0702c63044d7c76db298171a3"
|
|
3476
|
+
|
|
3477
|
+
[[package]]
|
|
3478
|
+
name = "uppsala"
|
|
3479
|
+
version = "0.3.0"
|
|
3480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3481
|
+
checksum = "1600dc6ec465bbba4056042fc73041b82081849ab3117f5d2e233eb96e3e1725"
|
|
3482
|
+
|
|
3483
|
+
[[package]]
|
|
3484
|
+
name = "url"
|
|
3485
|
+
version = "2.5.8"
|
|
3486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3487
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
3488
|
+
dependencies = [
|
|
3489
|
+
"form_urlencoded",
|
|
3490
|
+
"idna",
|
|
3491
|
+
"percent-encoding",
|
|
3492
|
+
"serde",
|
|
3493
|
+
]
|
|
3494
|
+
|
|
3495
|
+
[[package]]
|
|
3496
|
+
name = "utf16_iter"
|
|
3497
|
+
version = "1.0.5"
|
|
3498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3499
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3500
|
+
|
|
3501
|
+
[[package]]
|
|
3502
|
+
name = "utf8_iter"
|
|
3503
|
+
version = "1.0.4"
|
|
3504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3505
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3506
|
+
|
|
3507
|
+
[[package]]
|
|
3508
|
+
name = "utf8parse"
|
|
3509
|
+
version = "0.2.2"
|
|
3510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3511
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3512
|
+
|
|
3513
|
+
[[package]]
|
|
3514
|
+
name = "uuid"
|
|
3515
|
+
version = "1.22.0"
|
|
3516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3517
|
+
checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
|
|
3518
|
+
dependencies = [
|
|
3519
|
+
"js-sys",
|
|
3520
|
+
"wasm-bindgen",
|
|
3521
|
+
]
|
|
3522
|
+
|
|
3523
|
+
[[package]]
|
|
3524
|
+
name = "v_jsonescape"
|
|
3525
|
+
version = "0.7.8"
|
|
3526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3527
|
+
checksum = "be8219cc464ba10c48c3231a6871f11d26d831c5c45a47467eea387ea7bb10e8"
|
|
3528
|
+
|
|
3529
|
+
[[package]]
|
|
3530
|
+
name = "vcpkg"
|
|
3531
|
+
version = "0.2.15"
|
|
3532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3533
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
3534
|
+
|
|
3535
|
+
[[package]]
|
|
3536
|
+
name = "version_check"
|
|
3537
|
+
version = "0.9.5"
|
|
3538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3539
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3540
|
+
|
|
3541
|
+
[[package]]
|
|
3542
|
+
name = "wait-timeout"
|
|
3543
|
+
version = "0.2.1"
|
|
3544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3545
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
3546
|
+
dependencies = [
|
|
3547
|
+
"libc",
|
|
3548
|
+
]
|
|
3549
|
+
|
|
3550
|
+
[[package]]
|
|
3551
|
+
name = "walkdir"
|
|
3552
|
+
version = "2.5.0"
|
|
3553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3554
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3555
|
+
dependencies = [
|
|
3556
|
+
"same-file",
|
|
3557
|
+
"winapi-util",
|
|
3558
|
+
]
|
|
3559
|
+
|
|
3560
|
+
[[package]]
|
|
3561
|
+
name = "want"
|
|
3562
|
+
version = "0.3.1"
|
|
3563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3564
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3565
|
+
dependencies = [
|
|
3566
|
+
"try-lock",
|
|
3567
|
+
]
|
|
3568
|
+
|
|
3569
|
+
[[package]]
|
|
3570
|
+
name = "wasi"
|
|
3571
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3573
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3574
|
+
|
|
3575
|
+
[[package]]
|
|
3576
|
+
name = "wasip2"
|
|
3577
|
+
version = "1.0.2+wasi-0.2.9"
|
|
3578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3579
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
3580
|
+
dependencies = [
|
|
3581
|
+
"wit-bindgen",
|
|
3582
|
+
]
|
|
3583
|
+
|
|
3584
|
+
[[package]]
|
|
3585
|
+
name = "wasip3"
|
|
3586
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
3587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3588
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
3589
|
+
dependencies = [
|
|
3590
|
+
"wit-bindgen",
|
|
3591
|
+
]
|
|
3592
|
+
|
|
3593
|
+
[[package]]
|
|
3594
|
+
name = "wasm-bindgen"
|
|
3595
|
+
version = "0.2.114"
|
|
3596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3597
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
3598
|
+
dependencies = [
|
|
3599
|
+
"cfg-if",
|
|
3600
|
+
"once_cell",
|
|
3601
|
+
"rustversion",
|
|
3602
|
+
"wasm-bindgen-macro",
|
|
3603
|
+
"wasm-bindgen-shared",
|
|
3604
|
+
]
|
|
3605
|
+
|
|
3606
|
+
[[package]]
|
|
3607
|
+
name = "wasm-bindgen-futures"
|
|
3608
|
+
version = "0.4.64"
|
|
3609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3610
|
+
checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
|
|
3611
|
+
dependencies = [
|
|
3612
|
+
"cfg-if",
|
|
3613
|
+
"futures-util",
|
|
3614
|
+
"js-sys",
|
|
3615
|
+
"once_cell",
|
|
3616
|
+
"wasm-bindgen",
|
|
3617
|
+
"web-sys",
|
|
3618
|
+
]
|
|
3619
|
+
|
|
3620
|
+
[[package]]
|
|
3621
|
+
name = "wasm-bindgen-macro"
|
|
3622
|
+
version = "0.2.114"
|
|
3623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3624
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
3625
|
+
dependencies = [
|
|
3626
|
+
"quote",
|
|
3627
|
+
"wasm-bindgen-macro-support",
|
|
3628
|
+
]
|
|
3629
|
+
|
|
3630
|
+
[[package]]
|
|
3631
|
+
name = "wasm-bindgen-macro-support"
|
|
3632
|
+
version = "0.2.114"
|
|
3633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3634
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
3635
|
+
dependencies = [
|
|
3636
|
+
"bumpalo",
|
|
3637
|
+
"proc-macro2",
|
|
3638
|
+
"quote",
|
|
3639
|
+
"syn 2.0.117",
|
|
3640
|
+
"wasm-bindgen-shared",
|
|
3641
|
+
]
|
|
3642
|
+
|
|
3643
|
+
[[package]]
|
|
3644
|
+
name = "wasm-bindgen-shared"
|
|
3645
|
+
version = "0.2.114"
|
|
3646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3647
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
3648
|
+
dependencies = [
|
|
3649
|
+
"unicode-ident",
|
|
3650
|
+
]
|
|
3651
|
+
|
|
3652
|
+
[[package]]
|
|
3653
|
+
name = "wasm-encoder"
|
|
3654
|
+
version = "0.244.0"
|
|
3655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3656
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
3657
|
+
dependencies = [
|
|
3658
|
+
"leb128fmt",
|
|
3659
|
+
"wasmparser",
|
|
3660
|
+
]
|
|
3661
|
+
|
|
3662
|
+
[[package]]
|
|
3663
|
+
name = "wasm-metadata"
|
|
3664
|
+
version = "0.244.0"
|
|
3665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3666
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
3667
|
+
dependencies = [
|
|
3668
|
+
"anyhow",
|
|
3669
|
+
"indexmap",
|
|
3670
|
+
"wasm-encoder",
|
|
3671
|
+
"wasmparser",
|
|
3672
|
+
]
|
|
3673
|
+
|
|
3674
|
+
[[package]]
|
|
3675
|
+
name = "wasmparser"
|
|
3676
|
+
version = "0.244.0"
|
|
3677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3678
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
3679
|
+
dependencies = [
|
|
3680
|
+
"bitflags 2.11.0",
|
|
3681
|
+
"hashbrown 0.15.5",
|
|
3682
|
+
"indexmap",
|
|
3683
|
+
"semver",
|
|
3684
|
+
]
|
|
3685
|
+
|
|
3686
|
+
[[package]]
|
|
3687
|
+
name = "web-sys"
|
|
3688
|
+
version = "0.3.91"
|
|
3689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3690
|
+
checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
|
|
3691
|
+
dependencies = [
|
|
3692
|
+
"js-sys",
|
|
3693
|
+
"wasm-bindgen",
|
|
3694
|
+
]
|
|
3695
|
+
|
|
3696
|
+
[[package]]
|
|
3697
|
+
name = "winapi-util"
|
|
3698
|
+
version = "0.1.11"
|
|
3699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3700
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3701
|
+
dependencies = [
|
|
3702
|
+
"windows-sys 0.61.2",
|
|
3703
|
+
]
|
|
3704
|
+
|
|
3705
|
+
[[package]]
|
|
3706
|
+
name = "windows-core"
|
|
3707
|
+
version = "0.62.2"
|
|
3708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3709
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3710
|
+
dependencies = [
|
|
3711
|
+
"windows-implement",
|
|
3712
|
+
"windows-interface",
|
|
3713
|
+
"windows-link",
|
|
3714
|
+
"windows-result",
|
|
3715
|
+
"windows-strings",
|
|
3716
|
+
]
|
|
3717
|
+
|
|
3718
|
+
[[package]]
|
|
3719
|
+
name = "windows-implement"
|
|
3720
|
+
version = "0.60.2"
|
|
3721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3722
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3723
|
+
dependencies = [
|
|
3724
|
+
"proc-macro2",
|
|
3725
|
+
"quote",
|
|
3726
|
+
"syn 2.0.117",
|
|
3727
|
+
]
|
|
3728
|
+
|
|
3729
|
+
[[package]]
|
|
3730
|
+
name = "windows-interface"
|
|
3731
|
+
version = "0.59.3"
|
|
3732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3733
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3734
|
+
dependencies = [
|
|
3735
|
+
"proc-macro2",
|
|
3736
|
+
"quote",
|
|
3737
|
+
"syn 2.0.117",
|
|
3738
|
+
]
|
|
3739
|
+
|
|
3740
|
+
[[package]]
|
|
3741
|
+
name = "windows-link"
|
|
3742
|
+
version = "0.2.1"
|
|
3743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3744
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3745
|
+
|
|
3746
|
+
[[package]]
|
|
3747
|
+
name = "windows-result"
|
|
3748
|
+
version = "0.4.1"
|
|
3749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3750
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3751
|
+
dependencies = [
|
|
3752
|
+
"windows-link",
|
|
3753
|
+
]
|
|
3754
|
+
|
|
3755
|
+
[[package]]
|
|
3756
|
+
name = "windows-strings"
|
|
3757
|
+
version = "0.5.1"
|
|
3758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3759
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3760
|
+
dependencies = [
|
|
3761
|
+
"windows-link",
|
|
3762
|
+
]
|
|
3763
|
+
|
|
3764
|
+
[[package]]
|
|
3765
|
+
name = "windows-sys"
|
|
3766
|
+
version = "0.59.0"
|
|
3767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3768
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3769
|
+
dependencies = [
|
|
3770
|
+
"windows-targets 0.52.6",
|
|
3771
|
+
]
|
|
3772
|
+
|
|
3773
|
+
[[package]]
|
|
3774
|
+
name = "windows-sys"
|
|
3775
|
+
version = "0.60.2"
|
|
3776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3777
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3778
|
+
dependencies = [
|
|
3779
|
+
"windows-targets 0.53.5",
|
|
3780
|
+
]
|
|
3781
|
+
|
|
3782
|
+
[[package]]
|
|
3783
|
+
name = "windows-sys"
|
|
3784
|
+
version = "0.61.2"
|
|
3785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3786
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3787
|
+
dependencies = [
|
|
3788
|
+
"windows-link",
|
|
3789
|
+
]
|
|
3790
|
+
|
|
3791
|
+
[[package]]
|
|
3792
|
+
name = "windows-targets"
|
|
3793
|
+
version = "0.52.6"
|
|
3794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3795
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3796
|
+
dependencies = [
|
|
3797
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3798
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3799
|
+
"windows_i686_gnu 0.52.6",
|
|
3800
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3801
|
+
"windows_i686_msvc 0.52.6",
|
|
3802
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3803
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3804
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3805
|
+
]
|
|
3806
|
+
|
|
3807
|
+
[[package]]
|
|
3808
|
+
name = "windows-targets"
|
|
3809
|
+
version = "0.53.5"
|
|
3810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3811
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3812
|
+
dependencies = [
|
|
3813
|
+
"windows-link",
|
|
3814
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3815
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3816
|
+
"windows_i686_gnu 0.53.1",
|
|
3817
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3818
|
+
"windows_i686_msvc 0.53.1",
|
|
3819
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3820
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3821
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3822
|
+
]
|
|
3823
|
+
|
|
3824
|
+
[[package]]
|
|
3825
|
+
name = "windows_aarch64_gnullvm"
|
|
3826
|
+
version = "0.52.6"
|
|
3827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3828
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3829
|
+
|
|
3830
|
+
[[package]]
|
|
3831
|
+
name = "windows_aarch64_gnullvm"
|
|
3832
|
+
version = "0.53.1"
|
|
3833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3834
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3835
|
+
|
|
3836
|
+
[[package]]
|
|
3837
|
+
name = "windows_aarch64_msvc"
|
|
3838
|
+
version = "0.52.6"
|
|
3839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3840
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3841
|
+
|
|
3842
|
+
[[package]]
|
|
3843
|
+
name = "windows_aarch64_msvc"
|
|
3844
|
+
version = "0.53.1"
|
|
3845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3846
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3847
|
+
|
|
3848
|
+
[[package]]
|
|
3849
|
+
name = "windows_i686_gnu"
|
|
3850
|
+
version = "0.52.6"
|
|
3851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3852
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3853
|
+
|
|
3854
|
+
[[package]]
|
|
3855
|
+
name = "windows_i686_gnu"
|
|
3856
|
+
version = "0.53.1"
|
|
3857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3859
|
+
|
|
3860
|
+
[[package]]
|
|
3861
|
+
name = "windows_i686_gnullvm"
|
|
3862
|
+
version = "0.52.6"
|
|
3863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3864
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3865
|
+
|
|
3866
|
+
[[package]]
|
|
3867
|
+
name = "windows_i686_gnullvm"
|
|
3868
|
+
version = "0.53.1"
|
|
3869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3870
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3871
|
+
|
|
3872
|
+
[[package]]
|
|
3873
|
+
name = "windows_i686_msvc"
|
|
3874
|
+
version = "0.52.6"
|
|
3875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3876
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3877
|
+
|
|
3878
|
+
[[package]]
|
|
3879
|
+
name = "windows_i686_msvc"
|
|
3880
|
+
version = "0.53.1"
|
|
3881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3882
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3883
|
+
|
|
3884
|
+
[[package]]
|
|
3885
|
+
name = "windows_x86_64_gnu"
|
|
3886
|
+
version = "0.52.6"
|
|
3887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3888
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3889
|
+
|
|
3890
|
+
[[package]]
|
|
3891
|
+
name = "windows_x86_64_gnu"
|
|
3892
|
+
version = "0.53.1"
|
|
3893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3894
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3895
|
+
|
|
3896
|
+
[[package]]
|
|
3897
|
+
name = "windows_x86_64_gnullvm"
|
|
3898
|
+
version = "0.52.6"
|
|
3899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3900
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3901
|
+
|
|
3902
|
+
[[package]]
|
|
3903
|
+
name = "windows_x86_64_gnullvm"
|
|
3904
|
+
version = "0.53.1"
|
|
3905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3906
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3907
|
+
|
|
3908
|
+
[[package]]
|
|
3909
|
+
name = "windows_x86_64_msvc"
|
|
3910
|
+
version = "0.52.6"
|
|
3911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3912
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3913
|
+
|
|
3914
|
+
[[package]]
|
|
3915
|
+
name = "windows_x86_64_msvc"
|
|
3916
|
+
version = "0.53.1"
|
|
3917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3918
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3919
|
+
|
|
3920
|
+
[[package]]
|
|
3921
|
+
name = "winnow"
|
|
3922
|
+
version = "1.0.0"
|
|
3923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3924
|
+
checksum = "a90e88e4667264a994d34e6d1ab2d26d398dcdca8b7f52bec8668957517fc7d8"
|
|
3925
|
+
dependencies = [
|
|
3926
|
+
"memchr",
|
|
3927
|
+
]
|
|
3928
|
+
|
|
3929
|
+
[[package]]
|
|
3930
|
+
name = "wit-bindgen"
|
|
3931
|
+
version = "0.51.0"
|
|
3932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3933
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
3934
|
+
dependencies = [
|
|
3935
|
+
"wit-bindgen-rust-macro",
|
|
3936
|
+
]
|
|
3937
|
+
|
|
3938
|
+
[[package]]
|
|
3939
|
+
name = "wit-bindgen-core"
|
|
3940
|
+
version = "0.51.0"
|
|
3941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3942
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
3943
|
+
dependencies = [
|
|
3944
|
+
"anyhow",
|
|
3945
|
+
"heck",
|
|
3946
|
+
"wit-parser",
|
|
3947
|
+
]
|
|
3948
|
+
|
|
3949
|
+
[[package]]
|
|
3950
|
+
name = "wit-bindgen-rust"
|
|
3951
|
+
version = "0.51.0"
|
|
3952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3953
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
3954
|
+
dependencies = [
|
|
3955
|
+
"anyhow",
|
|
3956
|
+
"heck",
|
|
3957
|
+
"indexmap",
|
|
3958
|
+
"prettyplease",
|
|
3959
|
+
"syn 2.0.117",
|
|
3960
|
+
"wasm-metadata",
|
|
3961
|
+
"wit-bindgen-core",
|
|
3962
|
+
"wit-component",
|
|
3963
|
+
]
|
|
3964
|
+
|
|
3965
|
+
[[package]]
|
|
3966
|
+
name = "wit-bindgen-rust-macro"
|
|
3967
|
+
version = "0.51.0"
|
|
3968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3969
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
3970
|
+
dependencies = [
|
|
3971
|
+
"anyhow",
|
|
3972
|
+
"prettyplease",
|
|
3973
|
+
"proc-macro2",
|
|
3974
|
+
"quote",
|
|
3975
|
+
"syn 2.0.117",
|
|
3976
|
+
"wit-bindgen-core",
|
|
3977
|
+
"wit-bindgen-rust",
|
|
3978
|
+
]
|
|
3979
|
+
|
|
3980
|
+
[[package]]
|
|
3981
|
+
name = "wit-component"
|
|
3982
|
+
version = "0.244.0"
|
|
3983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3984
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
3985
|
+
dependencies = [
|
|
3986
|
+
"anyhow",
|
|
3987
|
+
"bitflags 2.11.0",
|
|
3988
|
+
"indexmap",
|
|
3989
|
+
"log",
|
|
3990
|
+
"serde",
|
|
3991
|
+
"serde_derive",
|
|
3992
|
+
"serde_json",
|
|
3993
|
+
"wasm-encoder",
|
|
3994
|
+
"wasm-metadata",
|
|
3995
|
+
"wasmparser",
|
|
3996
|
+
"wit-parser",
|
|
3997
|
+
]
|
|
3998
|
+
|
|
3999
|
+
[[package]]
|
|
4000
|
+
name = "wit-parser"
|
|
4001
|
+
version = "0.244.0"
|
|
4002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4003
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
4004
|
+
dependencies = [
|
|
4005
|
+
"anyhow",
|
|
4006
|
+
"id-arena",
|
|
4007
|
+
"indexmap",
|
|
4008
|
+
"log",
|
|
4009
|
+
"semver",
|
|
4010
|
+
"serde",
|
|
4011
|
+
"serde_derive",
|
|
4012
|
+
"serde_json",
|
|
4013
|
+
"unicode-xid",
|
|
4014
|
+
"wasmparser",
|
|
4015
|
+
]
|
|
4016
|
+
|
|
4017
|
+
[[package]]
|
|
4018
|
+
name = "write16"
|
|
4019
|
+
version = "1.0.0"
|
|
4020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4021
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
4022
|
+
|
|
4023
|
+
[[package]]
|
|
4024
|
+
name = "writeable"
|
|
4025
|
+
version = "0.5.5"
|
|
4026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4027
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
4028
|
+
dependencies = [
|
|
4029
|
+
"either",
|
|
4030
|
+
]
|
|
4031
|
+
|
|
4032
|
+
[[package]]
|
|
4033
|
+
name = "writeable"
|
|
4034
|
+
version = "0.6.2"
|
|
4035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4036
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
4037
|
+
|
|
4038
|
+
[[package]]
|
|
4039
|
+
name = "wyz"
|
|
4040
|
+
version = "0.5.1"
|
|
4041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4042
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
4043
|
+
dependencies = [
|
|
4044
|
+
"tap",
|
|
4045
|
+
]
|
|
4046
|
+
|
|
4047
|
+
[[package]]
|
|
4048
|
+
name = "xee-interpreter"
|
|
4049
|
+
version = "0.2.0"
|
|
4050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4051
|
+
checksum = "d42db24485bca7dee2a1c0c363352e92c9b620314848d91dce50534d3724bb5b"
|
|
4052
|
+
dependencies = [
|
|
4053
|
+
"ahash 0.8.12",
|
|
4054
|
+
"arrayvec",
|
|
4055
|
+
"base64",
|
|
4056
|
+
"chrono",
|
|
4057
|
+
"chumsky",
|
|
4058
|
+
"hex",
|
|
4059
|
+
"ibig",
|
|
4060
|
+
"icu",
|
|
4061
|
+
"icu_provider_adapters",
|
|
4062
|
+
"iri-string",
|
|
4063
|
+
"json",
|
|
4064
|
+
"lexical",
|
|
4065
|
+
"next-gen",
|
|
4066
|
+
"num",
|
|
4067
|
+
"num-derive",
|
|
4068
|
+
"num-traits",
|
|
4069
|
+
"ordered-float",
|
|
4070
|
+
"percent-encoding",
|
|
4071
|
+
"rand 0.8.5",
|
|
4072
|
+
"rand_xoshiro",
|
|
4073
|
+
"regexml",
|
|
4074
|
+
"rust_decimal",
|
|
4075
|
+
"static_assertions",
|
|
4076
|
+
"strum",
|
|
4077
|
+
"thiserror",
|
|
4078
|
+
"v_jsonescape",
|
|
4079
|
+
"xee-name",
|
|
4080
|
+
"xee-schema-type",
|
|
4081
|
+
"xee-xpath-ast",
|
|
4082
|
+
"xee-xpath-macros",
|
|
4083
|
+
"xee-xpath-type",
|
|
4084
|
+
"xot",
|
|
4085
|
+
]
|
|
4086
|
+
|
|
4087
|
+
[[package]]
|
|
4088
|
+
name = "xee-ir"
|
|
4089
|
+
version = "0.1.5"
|
|
4090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4091
|
+
checksum = "7a4d2a0fc3fdeb952341b2600d011463265afbfccee9c43b9bed8a505a37cb99"
|
|
4092
|
+
dependencies = [
|
|
4093
|
+
"ahash 0.8.12",
|
|
4094
|
+
"ibig",
|
|
4095
|
+
"ordered-float",
|
|
4096
|
+
"rust_decimal",
|
|
4097
|
+
"xee-interpreter",
|
|
4098
|
+
"xee-schema-type",
|
|
4099
|
+
"xee-xpath-ast",
|
|
4100
|
+
"xot",
|
|
4101
|
+
]
|
|
4102
|
+
|
|
4103
|
+
[[package]]
|
|
4104
|
+
name = "xee-name"
|
|
4105
|
+
version = "0.1.5"
|
|
4106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4107
|
+
checksum = "99a9739f6600765c29c698e1e3b8b69778bdac735d469db1299e150b39324e9e"
|
|
4108
|
+
dependencies = [
|
|
4109
|
+
"ahash 0.8.12",
|
|
4110
|
+
"xot",
|
|
4111
|
+
]
|
|
4112
|
+
|
|
4113
|
+
[[package]]
|
|
4114
|
+
name = "xee-schema-type"
|
|
4115
|
+
version = "0.1.4"
|
|
4116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4117
|
+
checksum = "6503a4befedfc20ebeae6605e66554bd1b3ac06515470c27c1e8d3754e261d1f"
|
|
4118
|
+
dependencies = [
|
|
4119
|
+
"ahash 0.8.12",
|
|
4120
|
+
]
|
|
4121
|
+
|
|
4122
|
+
[[package]]
|
|
4123
|
+
name = "xee-xpath"
|
|
4124
|
+
version = "0.1.5"
|
|
4125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4126
|
+
checksum = "03ee058959446e3f4a91c65f09013a17472adb9967babaf61befebae2d455588"
|
|
4127
|
+
dependencies = [
|
|
4128
|
+
"ahash 0.8.12",
|
|
4129
|
+
"chrono",
|
|
4130
|
+
"ibig",
|
|
4131
|
+
"iri-string",
|
|
4132
|
+
"ordered-float",
|
|
4133
|
+
"rust_decimal",
|
|
4134
|
+
"thiserror",
|
|
4135
|
+
"xee-interpreter",
|
|
4136
|
+
"xee-ir",
|
|
4137
|
+
"xee-schema-type",
|
|
4138
|
+
"xee-xpath-ast",
|
|
4139
|
+
"xee-xpath-compiler",
|
|
4140
|
+
"xot",
|
|
4141
|
+
]
|
|
4142
|
+
|
|
4143
|
+
[[package]]
|
|
4144
|
+
name = "xee-xpath-ast"
|
|
4145
|
+
version = "0.1.4"
|
|
4146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4147
|
+
checksum = "d3e3724d10a83c0ef175c6ef599a98b58b3849ec9f8b558e81c9d6619f9dc00f"
|
|
4148
|
+
dependencies = [
|
|
4149
|
+
"ahash 0.8.12",
|
|
4150
|
+
"blanket",
|
|
4151
|
+
"chumsky",
|
|
4152
|
+
"ibig",
|
|
4153
|
+
"ordered-float",
|
|
4154
|
+
"rust_decimal",
|
|
4155
|
+
"thiserror",
|
|
4156
|
+
"xee-name",
|
|
4157
|
+
"xee-schema-type",
|
|
4158
|
+
"xee-xpath-lexer",
|
|
4159
|
+
"xee-xpath-type",
|
|
4160
|
+
"xot",
|
|
4161
|
+
]
|
|
4162
|
+
|
|
4163
|
+
[[package]]
|
|
4164
|
+
name = "xee-xpath-compiler"
|
|
4165
|
+
version = "0.1.5"
|
|
4166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4167
|
+
checksum = "0c442bd1c230bd006e6c90a073bd121104fdc4ced6ae83e2f5a9d2396176612b"
|
|
4168
|
+
dependencies = [
|
|
4169
|
+
"ahash 0.8.12",
|
|
4170
|
+
"ibig",
|
|
4171
|
+
"iri-string",
|
|
4172
|
+
"ordered-float",
|
|
4173
|
+
"rust_decimal",
|
|
4174
|
+
"thiserror",
|
|
4175
|
+
"xee-interpreter",
|
|
4176
|
+
"xee-ir",
|
|
4177
|
+
"xee-schema-type",
|
|
4178
|
+
"xee-xpath-ast",
|
|
4179
|
+
"xot",
|
|
4180
|
+
]
|
|
4181
|
+
|
|
4182
|
+
[[package]]
|
|
4183
|
+
name = "xee-xpath-lexer"
|
|
4184
|
+
version = "0.1.4"
|
|
4185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4186
|
+
checksum = "e712fd799c98353d18ff18e5051336d3705c4f23cd8e9d95662eb884b898493d"
|
|
4187
|
+
dependencies = [
|
|
4188
|
+
"ibig",
|
|
4189
|
+
"itertools",
|
|
4190
|
+
"logos",
|
|
4191
|
+
"rust_decimal",
|
|
4192
|
+
]
|
|
4193
|
+
|
|
4194
|
+
[[package]]
|
|
4195
|
+
name = "xee-xpath-macros"
|
|
4196
|
+
version = "0.1.4"
|
|
4197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4198
|
+
checksum = "30d233fc2ef8ab1a9f9bf7af9cc1c7f7e7d75eb9848f731a99d8f1d4c2259fe3"
|
|
4199
|
+
dependencies = [
|
|
4200
|
+
"proc-macro2",
|
|
4201
|
+
"quote",
|
|
4202
|
+
"syn 2.0.117",
|
|
4203
|
+
"xee-schema-type",
|
|
4204
|
+
"xee-xpath-ast",
|
|
4205
|
+
"xot",
|
|
4206
|
+
]
|
|
4207
|
+
|
|
4208
|
+
[[package]]
|
|
4209
|
+
name = "xee-xpath-type"
|
|
4210
|
+
version = "0.1.4"
|
|
4211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4212
|
+
checksum = "cb9dd7a684a90374f681c057b2ef6884aed2aff0f033eba3c629ab4cf1365528"
|
|
4213
|
+
dependencies = [
|
|
4214
|
+
"xee-name",
|
|
4215
|
+
"xee-schema-type",
|
|
4216
|
+
"xot",
|
|
4217
|
+
]
|
|
4218
|
+
|
|
4219
|
+
[[package]]
|
|
4220
|
+
name = "xhtmlchardet"
|
|
4221
|
+
version = "2.2.0"
|
|
4222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4223
|
+
checksum = "acc471704e8954f426350a7300e92a4da6932b762068ae8e6aa5dcacf141e133"
|
|
4224
|
+
|
|
4225
|
+
[[package]]
|
|
4226
|
+
name = "xmlparser"
|
|
4227
|
+
version = "0.13.6"
|
|
4228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4229
|
+
checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
|
|
4230
|
+
|
|
4231
|
+
[[package]]
|
|
4232
|
+
name = "xot"
|
|
4233
|
+
version = "0.31.2"
|
|
4234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4235
|
+
checksum = "fd6d2012838b97104fc3e8d2e46c53f3d1ca98706941ff4aae37811adaa60f4e"
|
|
4236
|
+
dependencies = [
|
|
4237
|
+
"ahash 0.8.12",
|
|
4238
|
+
"encoding_rs",
|
|
4239
|
+
"genawaiter",
|
|
4240
|
+
"indextree",
|
|
4241
|
+
"xhtmlchardet",
|
|
4242
|
+
"xmlparser",
|
|
4243
|
+
]
|
|
4244
|
+
|
|
4245
|
+
[[package]]
|
|
4246
|
+
name = "yoke"
|
|
4247
|
+
version = "0.7.5"
|
|
4248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4249
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
4250
|
+
dependencies = [
|
|
4251
|
+
"serde",
|
|
4252
|
+
"stable_deref_trait",
|
|
4253
|
+
"yoke-derive 0.7.5",
|
|
4254
|
+
"zerofrom",
|
|
4255
|
+
]
|
|
4256
|
+
|
|
4257
|
+
[[package]]
|
|
4258
|
+
name = "yoke"
|
|
4259
|
+
version = "0.8.1"
|
|
4260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4261
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
4262
|
+
dependencies = [
|
|
4263
|
+
"stable_deref_trait",
|
|
4264
|
+
"yoke-derive 0.8.1",
|
|
4265
|
+
"zerofrom",
|
|
4266
|
+
]
|
|
4267
|
+
|
|
4268
|
+
[[package]]
|
|
4269
|
+
name = "yoke-derive"
|
|
4270
|
+
version = "0.7.5"
|
|
4271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4272
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
4273
|
+
dependencies = [
|
|
4274
|
+
"proc-macro2",
|
|
4275
|
+
"quote",
|
|
4276
|
+
"syn 2.0.117",
|
|
4277
|
+
"synstructure",
|
|
4278
|
+
]
|
|
4279
|
+
|
|
4280
|
+
[[package]]
|
|
4281
|
+
name = "yoke-derive"
|
|
4282
|
+
version = "0.8.1"
|
|
4283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4284
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
4285
|
+
dependencies = [
|
|
4286
|
+
"proc-macro2",
|
|
4287
|
+
"quote",
|
|
4288
|
+
"syn 2.0.117",
|
|
4289
|
+
"synstructure",
|
|
4290
|
+
]
|
|
4291
|
+
|
|
4292
|
+
[[package]]
|
|
4293
|
+
name = "zerocopy"
|
|
4294
|
+
version = "0.8.42"
|
|
4295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4296
|
+
checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
|
|
4297
|
+
dependencies = [
|
|
4298
|
+
"zerocopy-derive",
|
|
4299
|
+
]
|
|
4300
|
+
|
|
4301
|
+
[[package]]
|
|
4302
|
+
name = "zerocopy-derive"
|
|
4303
|
+
version = "0.8.42"
|
|
4304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4305
|
+
checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
|
|
4306
|
+
dependencies = [
|
|
4307
|
+
"proc-macro2",
|
|
4308
|
+
"quote",
|
|
4309
|
+
"syn 2.0.117",
|
|
4310
|
+
]
|
|
4311
|
+
|
|
4312
|
+
[[package]]
|
|
4313
|
+
name = "zerofrom"
|
|
4314
|
+
version = "0.1.6"
|
|
4315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4316
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4317
|
+
dependencies = [
|
|
4318
|
+
"zerofrom-derive",
|
|
4319
|
+
]
|
|
4320
|
+
|
|
4321
|
+
[[package]]
|
|
4322
|
+
name = "zerofrom-derive"
|
|
4323
|
+
version = "0.1.6"
|
|
4324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4325
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4326
|
+
dependencies = [
|
|
4327
|
+
"proc-macro2",
|
|
4328
|
+
"quote",
|
|
4329
|
+
"syn 2.0.117",
|
|
4330
|
+
"synstructure",
|
|
4331
|
+
]
|
|
4332
|
+
|
|
4333
|
+
[[package]]
|
|
4334
|
+
name = "zeroize"
|
|
4335
|
+
version = "1.8.2"
|
|
4336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4337
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4338
|
+
|
|
4339
|
+
[[package]]
|
|
4340
|
+
name = "zerotrie"
|
|
4341
|
+
version = "0.1.3"
|
|
4342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4343
|
+
checksum = "fb594dd55d87335c5f60177cee24f19457a5ec10a065e0a3014722ad252d0a1f"
|
|
4344
|
+
dependencies = [
|
|
4345
|
+
"displaydoc",
|
|
4346
|
+
"yoke 0.7.5",
|
|
4347
|
+
"zerofrom",
|
|
4348
|
+
]
|
|
4349
|
+
|
|
4350
|
+
[[package]]
|
|
4351
|
+
name = "zerotrie"
|
|
4352
|
+
version = "0.2.3"
|
|
4353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4354
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
4355
|
+
dependencies = [
|
|
4356
|
+
"displaydoc",
|
|
4357
|
+
"yoke 0.8.1",
|
|
4358
|
+
"zerofrom",
|
|
4359
|
+
]
|
|
4360
|
+
|
|
4361
|
+
[[package]]
|
|
4362
|
+
name = "zerovec"
|
|
4363
|
+
version = "0.10.4"
|
|
4364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4365
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
4366
|
+
dependencies = [
|
|
4367
|
+
"yoke 0.7.5",
|
|
4368
|
+
"zerofrom",
|
|
4369
|
+
"zerovec-derive 0.10.3",
|
|
4370
|
+
]
|
|
4371
|
+
|
|
4372
|
+
[[package]]
|
|
4373
|
+
name = "zerovec"
|
|
4374
|
+
version = "0.11.5"
|
|
4375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4376
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
4377
|
+
dependencies = [
|
|
4378
|
+
"yoke 0.8.1",
|
|
4379
|
+
"zerofrom",
|
|
4380
|
+
"zerovec-derive 0.11.2",
|
|
4381
|
+
]
|
|
4382
|
+
|
|
4383
|
+
[[package]]
|
|
4384
|
+
name = "zerovec-derive"
|
|
4385
|
+
version = "0.10.3"
|
|
4386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4387
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
4388
|
+
dependencies = [
|
|
4389
|
+
"proc-macro2",
|
|
4390
|
+
"quote",
|
|
4391
|
+
"syn 2.0.117",
|
|
4392
|
+
]
|
|
4393
|
+
|
|
4394
|
+
[[package]]
|
|
4395
|
+
name = "zerovec-derive"
|
|
4396
|
+
version = "0.11.2"
|
|
4397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4398
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
4399
|
+
dependencies = [
|
|
4400
|
+
"proc-macro2",
|
|
4401
|
+
"quote",
|
|
4402
|
+
"syn 2.0.117",
|
|
4403
|
+
]
|
|
4404
|
+
|
|
4405
|
+
[[package]]
|
|
4406
|
+
name = "zmij"
|
|
4407
|
+
version = "1.0.21"
|
|
4408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4409
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|