vanedb 0.1.0rc1__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.
- vanedb-0.1.0rc1/Cargo.lock +1491 -0
- vanedb-0.1.0rc1/Cargo.toml +4 -0
- vanedb-0.1.0rc1/LICENSE +21 -0
- vanedb-0.1.0rc1/PKG-INFO +148 -0
- vanedb-0.1.0rc1/README.md +131 -0
- vanedb-0.1.0rc1/pyproject.toml +33 -0
- vanedb-0.1.0rc1/python/vanedb/__init__.py +8 -0
- vanedb-0.1.0rc1/python/vanedb/__init__.pyi +157 -0
- vanedb-0.1.0rc1/python/vanedb/py.typed +0 -0
- vanedb-0.1.0rc1/vanedb/Cargo.toml +55 -0
- vanedb-0.1.0rc1/vanedb/LICENSE +21 -0
- vanedb-0.1.0rc1/vanedb/README.md +122 -0
- vanedb-0.1.0rc1/vanedb/benches/approx_bench.rs +93 -0
- vanedb-0.1.0rc1/vanedb/benches/distance_bench.rs +33 -0
- vanedb-0.1.0rc1/vanedb/benches/flat_bench.rs +67 -0
- vanedb-0.1.0rc1/vanedb/examples/profile_index_build.rs +70 -0
- vanedb-0.1.0rc1/vanedb/examples/quickstart.rs +12 -0
- vanedb-0.1.0rc1/vanedb/src/approx/graph_format.rs +385 -0
- vanedb-0.1.0rc1/vanedb/src/approx/mod.rs +1248 -0
- vanedb-0.1.0rc1/vanedb/src/approx/persistence.rs +505 -0
- vanedb-0.1.0rc1/vanedb/src/approx/storage.rs +193 -0
- vanedb-0.1.0rc1/vanedb/src/atomic_write.rs +89 -0
- vanedb-0.1.0rc1/vanedb/src/disk.rs +633 -0
- vanedb-0.1.0rc1/vanedb/src/distance/avx2.rs +237 -0
- vanedb-0.1.0rc1/vanedb/src/distance/mod.rs +142 -0
- vanedb-0.1.0rc1/vanedb/src/distance/neon.rs +212 -0
- vanedb-0.1.0rc1/vanedb/src/distance/scalar.rs +124 -0
- vanedb-0.1.0rc1/vanedb/src/error.rs +217 -0
- vanedb-0.1.0rc1/vanedb/src/flat/mod.rs +521 -0
- vanedb-0.1.0rc1/vanedb/src/flat/search_result.rs +93 -0
- vanedb-0.1.0rc1/vanedb/src/flat/topk.rs +101 -0
- vanedb-0.1.0rc1/vanedb/src/gpu/metal.rs +760 -0
- vanedb-0.1.0rc1/vanedb/src/gpu/mod.rs +35 -0
- vanedb-0.1.0rc1/vanedb/src/lib.rs +64 -0
- vanedb-0.1.0rc1/vanedb/src/validation.rs +97 -0
- vanedb-0.1.0rc1/vanedb/tests/approx_derived_size_conformance.rs +67 -0
- vanedb-0.1.0rc1/vanedb/tests/approx_id_map_conformance.rs +202 -0
- vanedb-0.1.0rc1/vanedb/tests/approx_tests.rs +519 -0
- vanedb-0.1.0rc1/vanedb/tests/atomic_save_tests.rs +111 -0
- vanedb-0.1.0rc1/vanedb/tests/compaction.rs +134 -0
- vanedb-0.1.0rc1/vanedb/tests/corruption_tests.rs +892 -0
- vanedb-0.1.0rc1/vanedb/tests/cosine_conformance.rs +172 -0
- vanedb-0.1.0rc1/vanedb/tests/debug_impls.rs +56 -0
- vanedb-0.1.0rc1/vanedb/tests/delete.rs +271 -0
- vanedb-0.1.0rc1/vanedb/tests/disk_tests.rs +194 -0
- vanedb-0.1.0rc1/vanedb/tests/distance_kernels.rs +74 -0
- vanedb-0.1.0rc1/vanedb/tests/documented_defaults.rs +145 -0
- vanedb-0.1.0rc1/vanedb/tests/error_model.rs +135 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/conformance/cosine_scale_invariance.tsv +37 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/conformance/index_derived_sizes.tsv +6 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/conformance/index_id_map_consistency.tsv +22 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/conformance/non_finite_vectors.tsv +4 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/conformance/vndb/v1_cosine.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/conformance/vndb/v1_dot.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/conformance/vndb/v1_l2.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/hnsw_v1.bin +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/legacy_graph/v1_cosine.hnsw +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/legacy_graph/v1_dot.hnsw +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/legacy_graph/v1_l2.hnsw +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/legacy_graph/v2_cosine.hnsw +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/legacy_graph/v2_deleted_id_reuse.hnsw +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/legacy_graph/v2_dot.hnsw +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/legacy_graph/v2_l2.hnsw +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/all_deleted.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/cosine_rng1.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/cosine_rng2.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/cosine_rng3.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/deleted_entry.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/deleted_id_reuse.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/dot_rng1.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/dot_rng2.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/dot_rng3.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/empty.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/l2_rng1.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/l2_rng2.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/fixtures/vndb_graph/l2_rng3.vndb +0 -0
- vanedb-0.1.0rc1/vanedb/tests/gpu_tests.rs +140 -0
- vanedb-0.1.0rc1/vanedb/tests/graph_format.rs +193 -0
- vanedb-0.1.0rc1/vanedb/tests/graph_structure.rs +388 -0
- vanedb-0.1.0rc1/vanedb/tests/io_error_paths.rs +173 -0
- vanedb-0.1.0rc1/vanedb/tests/non_finite_conformance.rs +145 -0
- vanedb-0.1.0rc1/vanedb/tests/property_tests.proptest-regressions +8 -0
- vanedb-0.1.0rc1/vanedb/tests/property_tests.rs +77 -0
- vanedb-0.1.0rc1/vanedb/tests/public_surface.rs +194 -0
- vanedb-0.1.0rc1/vanedb/tests/readme.rs +256 -0
- vanedb-0.1.0rc1/vanedb/tests/robustness.rs +119 -0
- vanedb-0.1.0rc1/vanedb/tests/search_correctness.rs +437 -0
- vanedb-0.1.0rc1/vanedb/tests/tie_break.rs +68 -0
- vanedb-0.1.0rc1/vanedb/tests/vndb_format.rs +136 -0
- vanedb-0.1.0rc1/vanedb/tests/vndb_graph_format.rs +440 -0
- vanedb-0.1.0rc1/vanedb-py/Cargo.toml +18 -0
- vanedb-0.1.0rc1/vanedb-py/LICENSE +21 -0
- vanedb-0.1.0rc1/vanedb-py/README.md +131 -0
- vanedb-0.1.0rc1/vanedb-py/python/vanedb/__init__.py +8 -0
- vanedb-0.1.0rc1/vanedb-py/python/vanedb/__init__.pyi +157 -0
- vanedb-0.1.0rc1/vanedb-py/python/vanedb/py.typed +0 -0
- vanedb-0.1.0rc1/vanedb-py/src/lib.rs +734 -0
- vanedb-0.1.0rc1/vanedb-py/tests/test_api_parity.py +286 -0
- vanedb-0.1.0rc1/vanedb-py/tests/test_concurrency.py +186 -0
- vanedb-0.1.0rc1/vanedb-py/tests/test_errors.py +211 -0
- vanedb-0.1.0rc1/vanedb-py/tests/test_numpy_batch.py +232 -0
- vanedb-0.1.0rc1/vanedb-py/tests/test_package_metadata.py +34 -0
- vanedb-0.1.0rc1/vanedb-py/tests/test_type_stubs.py +131 -0
- vanedb-0.1.0rc1/vanedb-py/tests/test_vanedb.py +382 -0
|
@@ -0,0 +1,1491 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "alloca"
|
|
16
|
+
version = "0.4.0"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
|
|
19
|
+
dependencies = [
|
|
20
|
+
"cc",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "anes"
|
|
25
|
+
version = "0.1.6"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "anstream"
|
|
31
|
+
version = "1.0.0"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"anstyle",
|
|
36
|
+
"anstyle-parse",
|
|
37
|
+
"anstyle-query",
|
|
38
|
+
"anstyle-wincon",
|
|
39
|
+
"colorchoice",
|
|
40
|
+
"is_terminal_polyfill",
|
|
41
|
+
"utf8parse",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle"
|
|
46
|
+
version = "1.0.14"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-parse"
|
|
52
|
+
version = "1.0.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"utf8parse",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-query"
|
|
61
|
+
version = "1.1.5"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"windows-sys",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "anstyle-wincon"
|
|
70
|
+
version = "3.0.11"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"anstyle",
|
|
75
|
+
"once_cell_polyfill",
|
|
76
|
+
"windows-sys",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "async-trait"
|
|
81
|
+
version = "0.1.92"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"proc-macro2",
|
|
86
|
+
"quote",
|
|
87
|
+
"syn 3.0.4",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "autocfg"
|
|
92
|
+
version = "1.5.1"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "bincode"
|
|
98
|
+
version = "2.0.1"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"bincode_derive",
|
|
103
|
+
"serde",
|
|
104
|
+
"unty",
|
|
105
|
+
]
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "bincode_derive"
|
|
109
|
+
version = "2.0.1"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
|
|
112
|
+
dependencies = [
|
|
113
|
+
"virtue",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "bit-set"
|
|
118
|
+
version = "0.8.0"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"bit-vec",
|
|
123
|
+
]
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "bit-vec"
|
|
127
|
+
version = "0.8.0"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "bitflags"
|
|
133
|
+
version = "2.13.1"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "block"
|
|
139
|
+
version = "0.1.6"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "bumpalo"
|
|
145
|
+
version = "3.20.3"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "cast"
|
|
151
|
+
version = "0.3.0"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "cbindgen"
|
|
157
|
+
version = "0.29.4"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "2ecb53484c9c167ba674026b656d8a27d7657a58e6066aa902bfb1a4aa00ae20"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"clap",
|
|
162
|
+
"heck",
|
|
163
|
+
"indexmap",
|
|
164
|
+
"log",
|
|
165
|
+
"proc-macro2",
|
|
166
|
+
"quote",
|
|
167
|
+
"serde",
|
|
168
|
+
"serde_json",
|
|
169
|
+
"syn 2.0.119",
|
|
170
|
+
"tempfile",
|
|
171
|
+
"toml",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "cc"
|
|
176
|
+
version = "1.4.4"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"find-msvc-tools",
|
|
181
|
+
"shlex",
|
|
182
|
+
]
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "cfg-if"
|
|
186
|
+
version = "1.0.4"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "chacha20"
|
|
192
|
+
version = "0.10.2"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"cfg-if",
|
|
197
|
+
"cpufeatures",
|
|
198
|
+
"rand_core 0.10.1",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "ciborium"
|
|
203
|
+
version = "0.2.2"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"ciborium-io",
|
|
208
|
+
"ciborium-ll",
|
|
209
|
+
"serde",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "ciborium-io"
|
|
214
|
+
version = "0.2.2"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "ciborium-ll"
|
|
220
|
+
version = "0.2.2"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"ciborium-io",
|
|
225
|
+
"half",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "clap"
|
|
230
|
+
version = "4.6.6"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"clap_builder",
|
|
235
|
+
]
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "clap_builder"
|
|
239
|
+
version = "4.6.6"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
242
|
+
dependencies = [
|
|
243
|
+
"anstream",
|
|
244
|
+
"anstyle",
|
|
245
|
+
"clap_lex",
|
|
246
|
+
"strsim",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "clap_lex"
|
|
251
|
+
version = "1.1.0"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "colorchoice"
|
|
257
|
+
version = "1.0.5"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "core-foundation"
|
|
263
|
+
version = "0.10.1"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"core-foundation-sys",
|
|
268
|
+
"libc",
|
|
269
|
+
]
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "core-foundation-sys"
|
|
273
|
+
version = "0.8.7"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "core-graphics-types"
|
|
279
|
+
version = "0.2.0"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"bitflags",
|
|
284
|
+
"core-foundation",
|
|
285
|
+
"libc",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "cpufeatures"
|
|
290
|
+
version = "0.3.1"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
|
|
293
|
+
dependencies = [
|
|
294
|
+
"libc",
|
|
295
|
+
]
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "criterion"
|
|
299
|
+
version = "0.8.2"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"alloca",
|
|
304
|
+
"anes",
|
|
305
|
+
"cast",
|
|
306
|
+
"ciborium",
|
|
307
|
+
"clap",
|
|
308
|
+
"criterion-plot",
|
|
309
|
+
"itertools",
|
|
310
|
+
"num-traits",
|
|
311
|
+
"oorandom",
|
|
312
|
+
"page_size",
|
|
313
|
+
"plotters",
|
|
314
|
+
"rayon",
|
|
315
|
+
"regex",
|
|
316
|
+
"serde",
|
|
317
|
+
"serde_json",
|
|
318
|
+
"tinytemplate",
|
|
319
|
+
"walkdir",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "criterion-plot"
|
|
324
|
+
version = "0.8.2"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"cast",
|
|
329
|
+
"itertools",
|
|
330
|
+
]
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "crossbeam-deque"
|
|
334
|
+
version = "0.8.7"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"crossbeam-epoch",
|
|
339
|
+
"crossbeam-utils",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "crossbeam-epoch"
|
|
344
|
+
version = "0.9.20"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"crossbeam-utils",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "crossbeam-utils"
|
|
353
|
+
version = "0.8.22"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "crunchy"
|
|
359
|
+
version = "0.2.4"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "either"
|
|
365
|
+
version = "1.18.0"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
368
|
+
|
|
369
|
+
[[package]]
|
|
370
|
+
name = "equivalent"
|
|
371
|
+
version = "1.0.2"
|
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "errno"
|
|
377
|
+
version = "0.3.14"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"libc",
|
|
382
|
+
"windows-sys",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "fastrand"
|
|
387
|
+
version = "2.5.0"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "find-msvc-tools"
|
|
393
|
+
version = "0.1.11"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "fnv"
|
|
399
|
+
version = "1.0.7"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "foreign-types"
|
|
405
|
+
version = "0.5.0"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"foreign-types-macros",
|
|
410
|
+
"foreign-types-shared",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "foreign-types-macros"
|
|
415
|
+
version = "0.2.4"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"proc-macro2",
|
|
420
|
+
"quote",
|
|
421
|
+
"syn 3.0.4",
|
|
422
|
+
]
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "foreign-types-shared"
|
|
426
|
+
version = "0.3.1"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "futures-core"
|
|
432
|
+
version = "0.3.34"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "futures-task"
|
|
438
|
+
version = "0.3.34"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "futures-util"
|
|
444
|
+
version = "0.3.34"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"futures-core",
|
|
449
|
+
"futures-task",
|
|
450
|
+
"pin-project-lite",
|
|
451
|
+
"slab",
|
|
452
|
+
]
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "getrandom"
|
|
456
|
+
version = "0.3.4"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
459
|
+
dependencies = [
|
|
460
|
+
"cfg-if",
|
|
461
|
+
"libc",
|
|
462
|
+
"r-efi 5.3.0",
|
|
463
|
+
"wasip2",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "getrandom"
|
|
468
|
+
version = "0.4.3"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"cfg-if",
|
|
473
|
+
"js-sys",
|
|
474
|
+
"libc",
|
|
475
|
+
"r-efi 6.0.0",
|
|
476
|
+
"rand_core 0.10.1",
|
|
477
|
+
"wasm-bindgen",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "half"
|
|
482
|
+
version = "2.7.1"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"cfg-if",
|
|
487
|
+
"crunchy",
|
|
488
|
+
"zerocopy",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "hashbrown"
|
|
493
|
+
version = "0.17.1"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "heck"
|
|
499
|
+
version = "0.5.0"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "indexmap"
|
|
505
|
+
version = "2.14.1"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"equivalent",
|
|
510
|
+
"hashbrown",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "is_terminal_polyfill"
|
|
515
|
+
version = "1.70.2"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "itertools"
|
|
521
|
+
version = "0.13.0"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"either",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "itoa"
|
|
530
|
+
version = "1.0.18"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "js-sys"
|
|
536
|
+
version = "0.3.104"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"cfg-if",
|
|
541
|
+
"futures-util",
|
|
542
|
+
"wasm-bindgen",
|
|
543
|
+
]
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "libc"
|
|
547
|
+
version = "0.2.189"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "libm"
|
|
553
|
+
version = "0.2.16"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "linux-raw-sys"
|
|
559
|
+
version = "0.12.1"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "lock_api"
|
|
565
|
+
version = "0.4.14"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
568
|
+
dependencies = [
|
|
569
|
+
"scopeguard",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "log"
|
|
574
|
+
version = "0.4.34"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "malloc_buf"
|
|
580
|
+
version = "0.0.6"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"libc",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "memchr"
|
|
589
|
+
version = "2.8.3"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "memmap2"
|
|
595
|
+
version = "0.9.11"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"libc",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "metal"
|
|
604
|
+
version = "0.33.0"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "c7047791b5bc903b8cd963014b355f71dc9864a9a0b727057676c1dcae5cbc15"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"bitflags",
|
|
609
|
+
"block",
|
|
610
|
+
"core-graphics-types",
|
|
611
|
+
"foreign-types",
|
|
612
|
+
"log",
|
|
613
|
+
"objc",
|
|
614
|
+
"paste",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "minicov"
|
|
619
|
+
version = "0.3.9"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "c3aa3aa12b448ac225b3102217d1ac5cc717908f02722926524b0599c933c7a0"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"cc",
|
|
624
|
+
"walkdir",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "nu-ansi-term"
|
|
629
|
+
version = "0.50.3"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"windows-sys",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "num-traits"
|
|
638
|
+
version = "0.2.19"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
641
|
+
dependencies = [
|
|
642
|
+
"autocfg",
|
|
643
|
+
"libm",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "objc"
|
|
648
|
+
version = "0.2.7"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"malloc_buf",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "once_cell"
|
|
657
|
+
version = "1.21.4"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "once_cell_polyfill"
|
|
663
|
+
version = "1.70.2"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "oorandom"
|
|
669
|
+
version = "11.1.5"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "page_size"
|
|
675
|
+
version = "0.6.0"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
|
|
678
|
+
dependencies = [
|
|
679
|
+
"libc",
|
|
680
|
+
"winapi",
|
|
681
|
+
]
|
|
682
|
+
|
|
683
|
+
[[package]]
|
|
684
|
+
name = "parking_lot"
|
|
685
|
+
version = "0.12.5"
|
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"lock_api",
|
|
690
|
+
"parking_lot_core",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "parking_lot_core"
|
|
695
|
+
version = "0.9.12"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"cfg-if",
|
|
700
|
+
"libc",
|
|
701
|
+
"redox_syscall",
|
|
702
|
+
"smallvec",
|
|
703
|
+
"windows-link",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "paste"
|
|
708
|
+
version = "1.0.15"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "pin-project-lite"
|
|
714
|
+
version = "0.2.17"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "plotters"
|
|
720
|
+
version = "0.3.7"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
723
|
+
dependencies = [
|
|
724
|
+
"num-traits",
|
|
725
|
+
"plotters-backend",
|
|
726
|
+
"plotters-svg",
|
|
727
|
+
"wasm-bindgen",
|
|
728
|
+
"web-sys",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "plotters-backend"
|
|
733
|
+
version = "0.3.7"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "plotters-svg"
|
|
739
|
+
version = "0.3.7"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"plotters-backend",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "portable-atomic"
|
|
748
|
+
version = "1.15.0"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "ppv-lite86"
|
|
754
|
+
version = "0.2.21"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"zerocopy",
|
|
759
|
+
]
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "proc-macro2"
|
|
763
|
+
version = "1.0.107"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"unicode-ident",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "proptest"
|
|
772
|
+
version = "1.11.0"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"bit-set",
|
|
777
|
+
"bit-vec",
|
|
778
|
+
"bitflags",
|
|
779
|
+
"num-traits",
|
|
780
|
+
"rand 0.9.5",
|
|
781
|
+
"rand_chacha",
|
|
782
|
+
"rand_xorshift",
|
|
783
|
+
"regex-syntax",
|
|
784
|
+
"rusty-fork",
|
|
785
|
+
"tempfile",
|
|
786
|
+
"unarray",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "pyo3"
|
|
791
|
+
version = "0.29.2"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"libc",
|
|
796
|
+
"once_cell",
|
|
797
|
+
"portable-atomic",
|
|
798
|
+
"pyo3-build-config",
|
|
799
|
+
"pyo3-ffi",
|
|
800
|
+
"pyo3-macros",
|
|
801
|
+
]
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "pyo3-build-config"
|
|
805
|
+
version = "0.29.2"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
808
|
+
dependencies = [
|
|
809
|
+
"target-lexicon",
|
|
810
|
+
]
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "pyo3-ffi"
|
|
814
|
+
version = "0.29.2"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
817
|
+
dependencies = [
|
|
818
|
+
"libc",
|
|
819
|
+
"pyo3-build-config",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "pyo3-macros"
|
|
824
|
+
version = "0.29.2"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"proc-macro2",
|
|
829
|
+
"pyo3-macros-backend",
|
|
830
|
+
"quote",
|
|
831
|
+
"syn 2.0.119",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "pyo3-macros-backend"
|
|
836
|
+
version = "0.29.2"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"heck",
|
|
841
|
+
"proc-macro2",
|
|
842
|
+
"quote",
|
|
843
|
+
"syn 2.0.119",
|
|
844
|
+
]
|
|
845
|
+
|
|
846
|
+
[[package]]
|
|
847
|
+
name = "quick-error"
|
|
848
|
+
version = "1.2.3"
|
|
849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "quote"
|
|
854
|
+
version = "1.0.47"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
857
|
+
dependencies = [
|
|
858
|
+
"proc-macro2",
|
|
859
|
+
]
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "r-efi"
|
|
863
|
+
version = "5.3.0"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "r-efi"
|
|
869
|
+
version = "6.0.0"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "rand"
|
|
875
|
+
version = "0.9.5"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"rand_chacha",
|
|
880
|
+
"rand_core 0.9.5",
|
|
881
|
+
]
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "rand"
|
|
885
|
+
version = "0.10.2"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
888
|
+
dependencies = [
|
|
889
|
+
"chacha20",
|
|
890
|
+
"getrandom 0.4.3",
|
|
891
|
+
"rand_core 0.10.1",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "rand_chacha"
|
|
896
|
+
version = "0.9.0"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"ppv-lite86",
|
|
901
|
+
"rand_core 0.9.5",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "rand_core"
|
|
906
|
+
version = "0.9.5"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"getrandom 0.3.4",
|
|
911
|
+
]
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "rand_core"
|
|
915
|
+
version = "0.10.1"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "rand_xorshift"
|
|
921
|
+
version = "0.4.0"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"rand_core 0.9.5",
|
|
926
|
+
]
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "rayon"
|
|
930
|
+
version = "1.12.0"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
933
|
+
dependencies = [
|
|
934
|
+
"either",
|
|
935
|
+
"rayon-core",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "rayon-core"
|
|
940
|
+
version = "1.13.0"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
943
|
+
dependencies = [
|
|
944
|
+
"crossbeam-deque",
|
|
945
|
+
"crossbeam-utils",
|
|
946
|
+
]
|
|
947
|
+
|
|
948
|
+
[[package]]
|
|
949
|
+
name = "redox_syscall"
|
|
950
|
+
version = "0.5.18"
|
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
953
|
+
dependencies = [
|
|
954
|
+
"bitflags",
|
|
955
|
+
]
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "regex"
|
|
959
|
+
version = "1.13.1"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"aho-corasick",
|
|
964
|
+
"memchr",
|
|
965
|
+
"regex-automata",
|
|
966
|
+
"regex-syntax",
|
|
967
|
+
]
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "regex-automata"
|
|
971
|
+
version = "0.4.18"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"aho-corasick",
|
|
976
|
+
"memchr",
|
|
977
|
+
"regex-syntax",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "regex-syntax"
|
|
982
|
+
version = "0.8.11"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "rustix"
|
|
988
|
+
version = "1.1.4"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
991
|
+
dependencies = [
|
|
992
|
+
"bitflags",
|
|
993
|
+
"errno",
|
|
994
|
+
"libc",
|
|
995
|
+
"linux-raw-sys",
|
|
996
|
+
"windows-sys",
|
|
997
|
+
]
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "rustversion"
|
|
1001
|
+
version = "1.0.23"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "rusty-fork"
|
|
1007
|
+
version = "0.3.1"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"fnv",
|
|
1012
|
+
"quick-error",
|
|
1013
|
+
"tempfile",
|
|
1014
|
+
"wait-timeout",
|
|
1015
|
+
]
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "same-file"
|
|
1019
|
+
version = "1.0.6"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1022
|
+
dependencies = [
|
|
1023
|
+
"winapi-util",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "scopeguard"
|
|
1028
|
+
version = "1.2.0"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "serde"
|
|
1034
|
+
version = "1.0.229"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"serde_core",
|
|
1039
|
+
"serde_derive",
|
|
1040
|
+
]
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "serde_core"
|
|
1044
|
+
version = "1.0.229"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1047
|
+
dependencies = [
|
|
1048
|
+
"serde_derive",
|
|
1049
|
+
]
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "serde_derive"
|
|
1053
|
+
version = "1.0.229"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1056
|
+
dependencies = [
|
|
1057
|
+
"proc-macro2",
|
|
1058
|
+
"quote",
|
|
1059
|
+
"syn 3.0.4",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "serde_json"
|
|
1064
|
+
version = "1.0.151"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"itoa",
|
|
1069
|
+
"memchr",
|
|
1070
|
+
"serde",
|
|
1071
|
+
"serde_core",
|
|
1072
|
+
"zmij",
|
|
1073
|
+
]
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "serde_spanned"
|
|
1077
|
+
version = "1.1.1"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
1080
|
+
dependencies = [
|
|
1081
|
+
"serde_core",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "shlex"
|
|
1086
|
+
version = "2.0.1"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "slab"
|
|
1092
|
+
version = "0.4.12"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "smallvec"
|
|
1098
|
+
version = "1.15.2"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "strsim"
|
|
1104
|
+
version = "0.11.1"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "syn"
|
|
1110
|
+
version = "2.0.119"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"proc-macro2",
|
|
1115
|
+
"quote",
|
|
1116
|
+
"unicode-ident",
|
|
1117
|
+
]
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "syn"
|
|
1121
|
+
version = "3.0.4"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
1124
|
+
dependencies = [
|
|
1125
|
+
"proc-macro2",
|
|
1126
|
+
"quote",
|
|
1127
|
+
"unicode-ident",
|
|
1128
|
+
]
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "target-lexicon"
|
|
1132
|
+
version = "0.13.5"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "tempfile"
|
|
1138
|
+
version = "3.27.0"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1141
|
+
dependencies = [
|
|
1142
|
+
"fastrand",
|
|
1143
|
+
"getrandom 0.4.3",
|
|
1144
|
+
"once_cell",
|
|
1145
|
+
"rustix",
|
|
1146
|
+
"windows-sys",
|
|
1147
|
+
]
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "tinytemplate"
|
|
1151
|
+
version = "1.2.1"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1154
|
+
dependencies = [
|
|
1155
|
+
"serde",
|
|
1156
|
+
"serde_json",
|
|
1157
|
+
]
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "toml"
|
|
1161
|
+
version = "0.9.12+spec-1.1.0"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
1164
|
+
dependencies = [
|
|
1165
|
+
"indexmap",
|
|
1166
|
+
"serde_core",
|
|
1167
|
+
"serde_spanned",
|
|
1168
|
+
"toml_datetime",
|
|
1169
|
+
"toml_parser",
|
|
1170
|
+
"toml_writer",
|
|
1171
|
+
"winnow 0.7.15",
|
|
1172
|
+
]
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "toml_datetime"
|
|
1176
|
+
version = "0.7.5+spec-1.1.0"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
1179
|
+
dependencies = [
|
|
1180
|
+
"serde_core",
|
|
1181
|
+
]
|
|
1182
|
+
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "toml_parser"
|
|
1185
|
+
version = "1.1.3+spec-1.1.0"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
|
|
1188
|
+
dependencies = [
|
|
1189
|
+
"winnow 1.0.4",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "toml_writer"
|
|
1194
|
+
version = "1.1.2+spec-1.1.0"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "unarray"
|
|
1200
|
+
version = "0.1.4"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "unicode-ident"
|
|
1206
|
+
version = "1.0.24"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1209
|
+
|
|
1210
|
+
[[package]]
|
|
1211
|
+
name = "unty"
|
|
1212
|
+
version = "0.0.4"
|
|
1213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
+
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
|
|
1215
|
+
|
|
1216
|
+
[[package]]
|
|
1217
|
+
name = "utf8parse"
|
|
1218
|
+
version = "0.2.2"
|
|
1219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1220
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1221
|
+
|
|
1222
|
+
[[package]]
|
|
1223
|
+
name = "vanedb"
|
|
1224
|
+
version = "0.1.0-rc.1"
|
|
1225
|
+
dependencies = [
|
|
1226
|
+
"bincode",
|
|
1227
|
+
"criterion",
|
|
1228
|
+
"memmap2",
|
|
1229
|
+
"metal",
|
|
1230
|
+
"objc",
|
|
1231
|
+
"parking_lot",
|
|
1232
|
+
"proptest",
|
|
1233
|
+
"rand 0.10.2",
|
|
1234
|
+
"serde",
|
|
1235
|
+
]
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "vanedb-capi"
|
|
1239
|
+
version = "0.1.0-rc.1"
|
|
1240
|
+
dependencies = [
|
|
1241
|
+
"cbindgen",
|
|
1242
|
+
"vanedb",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "vanedb-py"
|
|
1247
|
+
version = "0.1.0-rc.1"
|
|
1248
|
+
dependencies = [
|
|
1249
|
+
"parking_lot",
|
|
1250
|
+
"pyo3",
|
|
1251
|
+
"vanedb",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "vanedb-wasm"
|
|
1256
|
+
version = "0.1.0-rc.1"
|
|
1257
|
+
dependencies = [
|
|
1258
|
+
"getrandom 0.4.3",
|
|
1259
|
+
"js-sys",
|
|
1260
|
+
"vanedb",
|
|
1261
|
+
"wasm-bindgen",
|
|
1262
|
+
"wasm-bindgen-test",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "virtue"
|
|
1267
|
+
version = "0.0.18"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
|
|
1270
|
+
|
|
1271
|
+
[[package]]
|
|
1272
|
+
name = "wait-timeout"
|
|
1273
|
+
version = "0.2.1"
|
|
1274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1275
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1276
|
+
dependencies = [
|
|
1277
|
+
"libc",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "walkdir"
|
|
1282
|
+
version = "2.5.0"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1285
|
+
dependencies = [
|
|
1286
|
+
"same-file",
|
|
1287
|
+
"winapi-util",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "wasip2"
|
|
1292
|
+
version = "1.0.4+wasi-0.2.12"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"wit-bindgen",
|
|
1297
|
+
]
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "wasm-bindgen"
|
|
1301
|
+
version = "0.2.127"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
1304
|
+
dependencies = [
|
|
1305
|
+
"cfg-if",
|
|
1306
|
+
"once_cell",
|
|
1307
|
+
"rustversion",
|
|
1308
|
+
"wasm-bindgen-macro",
|
|
1309
|
+
"wasm-bindgen-shared",
|
|
1310
|
+
]
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "wasm-bindgen-futures"
|
|
1314
|
+
version = "0.4.77"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"js-sys",
|
|
1319
|
+
"wasm-bindgen",
|
|
1320
|
+
]
|
|
1321
|
+
|
|
1322
|
+
[[package]]
|
|
1323
|
+
name = "wasm-bindgen-macro"
|
|
1324
|
+
version = "0.2.127"
|
|
1325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1326
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
1327
|
+
dependencies = [
|
|
1328
|
+
"quote",
|
|
1329
|
+
"wasm-bindgen-macro-support",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "wasm-bindgen-macro-support"
|
|
1334
|
+
version = "0.2.127"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"bumpalo",
|
|
1339
|
+
"proc-macro2",
|
|
1340
|
+
"quote",
|
|
1341
|
+
"syn 2.0.119",
|
|
1342
|
+
"wasm-bindgen-shared",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "wasm-bindgen-shared"
|
|
1347
|
+
version = "0.2.127"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
1350
|
+
dependencies = [
|
|
1351
|
+
"unicode-ident",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "wasm-bindgen-test"
|
|
1356
|
+
version = "0.3.77"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "895a2607575412a4eda1df892084a375ea10dfeadc4d7d2ab87b854e4ddc7ba1"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"async-trait",
|
|
1361
|
+
"cast",
|
|
1362
|
+
"js-sys",
|
|
1363
|
+
"libm",
|
|
1364
|
+
"minicov",
|
|
1365
|
+
"nu-ansi-term",
|
|
1366
|
+
"num-traits",
|
|
1367
|
+
"oorandom",
|
|
1368
|
+
"serde",
|
|
1369
|
+
"serde_json",
|
|
1370
|
+
"wasm-bindgen",
|
|
1371
|
+
"wasm-bindgen-futures",
|
|
1372
|
+
"wasm-bindgen-test-macro",
|
|
1373
|
+
"wasm-bindgen-test-shared",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "wasm-bindgen-test-macro"
|
|
1378
|
+
version = "0.3.77"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "4288cb0ebe215033bf949ae1fd046726daa4c32a157f24b9dc6ac387a52aa759"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"proc-macro2",
|
|
1383
|
+
"quote",
|
|
1384
|
+
"syn 2.0.119",
|
|
1385
|
+
]
|
|
1386
|
+
|
|
1387
|
+
[[package]]
|
|
1388
|
+
name = "wasm-bindgen-test-shared"
|
|
1389
|
+
version = "0.2.127"
|
|
1390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
+
checksum = "33ff1c1b360982e93b6d8ea9c04836f71dba0817a16f91e229cf3a51bdd9d987"
|
|
1392
|
+
|
|
1393
|
+
[[package]]
|
|
1394
|
+
name = "web-sys"
|
|
1395
|
+
version = "0.3.104"
|
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
+
checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
|
|
1398
|
+
dependencies = [
|
|
1399
|
+
"js-sys",
|
|
1400
|
+
"wasm-bindgen",
|
|
1401
|
+
]
|
|
1402
|
+
|
|
1403
|
+
[[package]]
|
|
1404
|
+
name = "winapi"
|
|
1405
|
+
version = "0.3.9"
|
|
1406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1408
|
+
dependencies = [
|
|
1409
|
+
"winapi-i686-pc-windows-gnu",
|
|
1410
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1411
|
+
]
|
|
1412
|
+
|
|
1413
|
+
[[package]]
|
|
1414
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1415
|
+
version = "0.4.0"
|
|
1416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "winapi-util"
|
|
1421
|
+
version = "0.1.11"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1424
|
+
dependencies = [
|
|
1425
|
+
"windows-sys",
|
|
1426
|
+
]
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1430
|
+
version = "0.4.0"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "windows-link"
|
|
1436
|
+
version = "0.2.1"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "windows-sys"
|
|
1442
|
+
version = "0.61.2"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"windows-link",
|
|
1447
|
+
]
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "winnow"
|
|
1451
|
+
version = "0.7.15"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "winnow"
|
|
1457
|
+
version = "1.0.4"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
1460
|
+
|
|
1461
|
+
[[package]]
|
|
1462
|
+
name = "wit-bindgen"
|
|
1463
|
+
version = "0.57.1"
|
|
1464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1465
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1466
|
+
|
|
1467
|
+
[[package]]
|
|
1468
|
+
name = "zerocopy"
|
|
1469
|
+
version = "0.8.56"
|
|
1470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1471
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
1472
|
+
dependencies = [
|
|
1473
|
+
"zerocopy-derive",
|
|
1474
|
+
]
|
|
1475
|
+
|
|
1476
|
+
[[package]]
|
|
1477
|
+
name = "zerocopy-derive"
|
|
1478
|
+
version = "0.8.56"
|
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
1481
|
+
dependencies = [
|
|
1482
|
+
"proc-macro2",
|
|
1483
|
+
"quote",
|
|
1484
|
+
"syn 2.0.119",
|
|
1485
|
+
]
|
|
1486
|
+
|
|
1487
|
+
[[package]]
|
|
1488
|
+
name = "zmij"
|
|
1489
|
+
version = "1.0.23"
|
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|