pourpoint 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pourpoint-0.1.0/Cargo.lock +3822 -0
- pourpoint-0.1.0/Cargo.toml +7 -0
- pourpoint-0.1.0/LICENSE +21 -0
- pourpoint-0.1.0/LICENSES/GDAL.txt +25 -0
- pourpoint-0.1.0/LICENSES/GEOS.txt +462 -0
- pourpoint-0.1.0/LICENSES/PROJ.txt +27 -0
- pourpoint-0.1.0/LICENSES/README.md +21 -0
- pourpoint-0.1.0/LICENSES/curl.txt +29 -0
- pourpoint-0.1.0/LICENSES/jpeg-turbo.txt +87 -0
- pourpoint-0.1.0/LICENSES/libdeflate.txt +24 -0
- pourpoint-0.1.0/LICENSES/libpng.txt +42 -0
- pourpoint-0.1.0/LICENSES/libtiff.txt +46 -0
- pourpoint-0.1.0/LICENSES/nghttp2.txt +25 -0
- pourpoint-0.1.0/LICENSES/openssl.txt +178 -0
- pourpoint-0.1.0/LICENSES/sqlite.txt +17 -0
- pourpoint-0.1.0/LICENSES/xz.txt +30 -0
- pourpoint-0.1.0/LICENSES/zlib.txt +26 -0
- pourpoint-0.1.0/LICENSES/zstd.txt +30 -0
- pourpoint-0.1.0/PKG-INFO +148 -0
- pourpoint-0.1.0/README.md +92 -0
- pourpoint-0.1.0/crates/core/Cargo.toml +55 -0
- pourpoint-0.1.0/crates/core/README.md +251 -0
- pourpoint-0.1.0/crates/core/benches/dissolve_strategy.rs +90 -0
- pourpoint-0.1.0/crates/core/examples/bench_delineation.rs +118 -0
- pourpoint-0.1.0/crates/core/src/algo/accumulation_tile.rs +382 -0
- pourpoint-0.1.0/crates/core/src/algo/area.rs +74 -0
- pourpoint-0.1.0/crates/core/src/algo/canonical_wkb.rs +431 -0
- pourpoint-0.1.0/crates/core/src/algo/catchment_mask.rs +143 -0
- pourpoint-0.1.0/crates/core/src/algo/clean_epsilon.rs +51 -0
- pourpoint-0.1.0/crates/core/src/algo/clean_topology.rs +372 -0
- pourpoint-0.1.0/crates/core/src/algo/coord.rs +130 -0
- pourpoint-0.1.0/crates/core/src/algo/dissolve.rs +350 -0
- pourpoint-0.1.0/crates/core/src/algo/distance.rs +141 -0
- pourpoint-0.1.0/crates/core/src/algo/flow_dir.rs +438 -0
- pourpoint-0.1.0/crates/core/src/algo/flow_direction_tile.rs +499 -0
- pourpoint-0.1.0/crates/core/src/algo/geo_transform.rs +169 -0
- pourpoint-0.1.0/crates/core/src/algo/hole_fill.rs +250 -0
- pourpoint-0.1.0/crates/core/src/algo/largest_polygon.rs +68 -0
- pourpoint-0.1.0/crates/core/src/algo/mod.rs +90 -0
- pourpoint-0.1.0/crates/core/src/algo/polygonize.rs +506 -0
- pourpoint-0.1.0/crates/core/src/algo/raster_tile.rs +332 -0
- pourpoint-0.1.0/crates/core/src/algo/rasterize.rs +477 -0
- pourpoint-0.1.0/crates/core/src/algo/refine.rs +1172 -0
- pourpoint-0.1.0/crates/core/src/algo/self_intersection.rs +142 -0
- pourpoint-0.1.0/crates/core/src/algo/snap.rs +362 -0
- pourpoint-0.1.0/crates/core/src/algo/snap_threshold.rs +74 -0
- pourpoint-0.1.0/crates/core/src/algo/tile_state.rs +9 -0
- pourpoint-0.1.0/crates/core/src/algo/trace.rs +291 -0
- pourpoint-0.1.0/crates/core/src/algo/traits.rs +134 -0
- pourpoint-0.1.0/crates/core/src/algo/upstream.rs +490 -0
- pourpoint-0.1.0/crates/core/src/algo/watershed_area.rs +209 -0
- pourpoint-0.1.0/crates/core/src/algo/watershed_geometry.rs +340 -0
- pourpoint-0.1.0/crates/core/src/algo/wkb.rs +376 -0
- pourpoint-0.1.0/crates/core/src/assembly.rs +833 -0
- pourpoint-0.1.0/crates/core/src/bin/bench_delineate.rs +663 -0
- pourpoint-0.1.0/crates/core/src/cache.rs +543 -0
- pourpoint-0.1.0/crates/core/src/cog.rs +1281 -0
- pourpoint-0.1.0/crates/core/src/engine.rs +1427 -0
- pourpoint-0.1.0/crates/core/src/error.rs +634 -0
- pourpoint-0.1.0/crates/core/src/export/identity.rs +443 -0
- pourpoint-0.1.0/crates/core/src/export/mod.rs +150 -0
- pourpoint-0.1.0/crates/core/src/export/row_groups.rs +111 -0
- pourpoint-0.1.0/crates/core/src/export/schema.rs +328 -0
- pourpoint-0.1.0/crates/core/src/export/spatial.rs +496 -0
- pourpoint-0.1.0/crates/core/src/export/unit_writer.rs +816 -0
- pourpoint-0.1.0/crates/core/src/export/writer.rs +1053 -0
- pourpoint-0.1.0/crates/core/src/lib.rs +59 -0
- pourpoint-0.1.0/crates/core/src/parquet_cache.rs +806 -0
- pourpoint-0.1.0/crates/core/src/raster_cache.rs +286 -0
- pourpoint-0.1.0/crates/core/src/reader/catchment_store.rs +3023 -0
- pourpoint-0.1.0/crates/core/src/reader/catchment_store_perf_tests.rs +375 -0
- pourpoint-0.1.0/crates/core/src/reader/graph.rs +335 -0
- pourpoint-0.1.0/crates/core/src/reader/id_index.rs +458 -0
- pourpoint-0.1.0/crates/core/src/reader/manifest.rs +637 -0
- pourpoint-0.1.0/crates/core/src/reader/mod.rs +203 -0
- pourpoint-0.1.0/crates/core/src/reader/snap_store.rs +2454 -0
- pourpoint-0.1.0/crates/core/src/refinement.rs +397 -0
- pourpoint-0.1.0/crates/core/src/resolver.rs +1344 -0
- pourpoint-0.1.0/crates/core/src/runtime.rs +86 -0
- pourpoint-0.1.0/crates/core/src/session.rs +3370 -0
- pourpoint-0.1.0/crates/core/src/source.rs +485 -0
- pourpoint-0.1.0/crates/core/src/source_telemetry.rs +439 -0
- pourpoint-0.1.0/crates/core/src/staged.rs +401 -0
- pourpoint-0.1.0/crates/core/src/telemetry/jsonl.rs +371 -0
- pourpoint-0.1.0/crates/core/src/telemetry/mod.rs +449 -0
- pourpoint-0.1.0/crates/core/src/test_raster_source.rs +94 -0
- pourpoint-0.1.0/crates/core/src/testutil.rs +1122 -0
- pourpoint-0.1.0/crates/core/tests/d8_aux_accessor.rs +344 -0
- pourpoint-0.1.0/crates/core/tests/d8_refinement_parity.rs +440 -0
- pourpoint-0.1.0/crates/core/tests/finest_level_resolution.rs +459 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/export/basin-geoparquet-golden.parquet +0 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/README.md +158 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/goldens/v01_grit_nonrefined/README.md +43 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/goldens/v01_grit_nonrefined/oracle_a_grit_nonrefined.json +255 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/goldens/v01_merit_refined/README.md +78 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/goldens/v01_merit_refined/oracle_c_merit_refined.json +897 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/goldens/v01_synthetic_refined/oracle_b_synthetic_refined.json +105 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/goldens/v021_synthetic_nonrefined/README.md +27 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/goldens/v021_synthetic_nonrefined/v021_synthetic_nonrefined.json +30 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/seed_golden.json +30 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/v01_synthetic_refined/catchments.parquet +0 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/v01_synthetic_refined/flow_acc.tif +0 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/v01_synthetic_refined/flow_dir.tif +0 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/v01_synthetic_refined/graph.arrow +0 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/v01_synthetic_refined/manifest.json +1 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/v021_synthetic_refined/catchments.parquet +0 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/v021_synthetic_refined/flow_acc.tif +0 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/v021_synthetic_refined/flow_dir.tif +0 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/v021_synthetic_refined/graph.parquet +0 -0
- pourpoint-0.1.0/crates/core/tests/fixtures/parity/v021_synthetic_refined/manifest.json +1 -0
- pourpoint-0.1.0/crates/core/tests/graph_parquet_reader.rs +375 -0
- pourpoint-0.1.0/crates/core/tests/hfx_v02_loader.rs +835 -0
- pourpoint-0.1.0/crates/core/tests/hfx_v02_test_fixtures.rs +171 -0
- pourpoint-0.1.0/crates/core/tests/minio_harness.rs +125 -0
- pourpoint-0.1.0/crates/core/tests/object_store_integration.rs +356 -0
- pourpoint-0.1.0/crates/core/tests/outlet_resolution.rs +755 -0
- pourpoint-0.1.0/crates/core/tests/parity_golden_artifacts.rs +707 -0
- pourpoint-0.1.0/crates/core/tests/session_open.rs +1014 -0
- pourpoint-0.1.0/crates/core/tests/snap_aux_reader.rs +368 -0
- pourpoint-0.1.0/crates/core/tests/snap_resolution_cascade.rs +689 -0
- pourpoint-0.1.0/crates/core/tests/staged_delineation.rs +575 -0
- pourpoint-0.1.0/crates/gdal/Cargo.toml +20 -0
- pourpoint-0.1.0/crates/gdal/README.md +59 -0
- pourpoint-0.1.0/crates/gdal/src/config.rs +179 -0
- pourpoint-0.1.0/crates/gdal/src/convert.rs +125 -0
- pourpoint-0.1.0/crates/gdal/src/error.rs +85 -0
- pourpoint-0.1.0/crates/gdal/src/geometry_repair.rs +89 -0
- pourpoint-0.1.0/crates/gdal/src/lib.rs +14 -0
- pourpoint-0.1.0/crates/gdal/src/raster_reader.rs +545 -0
- pourpoint-0.1.0/crates/gdal/src/wkb.rs +8 -0
- pourpoint-0.1.0/crates/gdal/tests/raster_decode_parity.rs +288 -0
- pourpoint-0.1.0/crates/python/API.md +432 -0
- pourpoint-0.1.0/crates/python/CHANGELOG.md +215 -0
- pourpoint-0.1.0/crates/python/Cargo.toml +37 -0
- pourpoint-0.1.0/crates/python/LICENSE +21 -0
- pourpoint-0.1.0/crates/python/LICENSES/GDAL.txt +25 -0
- pourpoint-0.1.0/crates/python/LICENSES/GEOS.txt +462 -0
- pourpoint-0.1.0/crates/python/LICENSES/PROJ.txt +27 -0
- pourpoint-0.1.0/crates/python/LICENSES/README.md +21 -0
- pourpoint-0.1.0/crates/python/LICENSES/curl.txt +29 -0
- pourpoint-0.1.0/crates/python/LICENSES/jpeg-turbo.txt +87 -0
- pourpoint-0.1.0/crates/python/LICENSES/libdeflate.txt +24 -0
- pourpoint-0.1.0/crates/python/LICENSES/libpng.txt +42 -0
- pourpoint-0.1.0/crates/python/LICENSES/libtiff.txt +46 -0
- pourpoint-0.1.0/crates/python/LICENSES/nghttp2.txt +25 -0
- pourpoint-0.1.0/crates/python/LICENSES/openssl.txt +178 -0
- pourpoint-0.1.0/crates/python/LICENSES/sqlite.txt +17 -0
- pourpoint-0.1.0/crates/python/LICENSES/xz.txt +30 -0
- pourpoint-0.1.0/crates/python/LICENSES/zlib.txt +26 -0
- pourpoint-0.1.0/crates/python/LICENSES/zstd.txt +30 -0
- pourpoint-0.1.0/crates/python/README.md +92 -0
- pourpoint-0.1.0/crates/python/src/config.rs +215 -0
- pourpoint-0.1.0/crates/python/src/data_paths.rs +91 -0
- pourpoint-0.1.0/crates/python/src/engine.rs +740 -0
- pourpoint-0.1.0/crates/python/src/error.rs +65 -0
- pourpoint-0.1.0/crates/python/src/export.rs +187 -0
- pourpoint-0.1.0/crates/python/src/geojson.rs +114 -0
- pourpoint-0.1.0/crates/python/src/kwargs.rs +277 -0
- pourpoint-0.1.0/crates/python/src/lib.rs +156 -0
- pourpoint-0.1.0/crates/python/src/result.rs +284 -0
- pourpoint-0.1.0/crates/python/src/staged.rs +348 -0
- pourpoint-0.1.0/crates/python/tests/conftest.py +202 -0
- pourpoint-0.1.0/crates/python/tests/test_behavioral.py +331 -0
- pourpoint-0.1.0/crates/python/tests/test_bench_trace.py +32 -0
- pourpoint-0.1.0/crates/python/tests/test_data_paths.py +22 -0
- pourpoint-0.1.0/crates/python/tests/test_phase_d.py +305 -0
- pourpoint-0.1.0/crates/python/tests/test_smoke.py +26 -0
- pourpoint-0.1.0/crates/python/uv.lock +1256 -0
- pourpoint-0.1.0/pyproject.toml +65 -0
- pourpoint-0.1.0/python/pourpoint/__init__.py +194 -0
- pourpoint-0.1.0/python/pourpoint/__init__.pyi +330 -0
- pourpoint-0.1.0/python/pourpoint/py.typed +1 -0
|
@@ -0,0 +1,3822 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.25.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "ahash"
|
|
22
|
+
version = "0.8.12"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cfg-if",
|
|
27
|
+
"const-random",
|
|
28
|
+
"getrandom 0.3.4",
|
|
29
|
+
"once_cell",
|
|
30
|
+
"version_check",
|
|
31
|
+
"zerocopy",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "aho-corasick"
|
|
36
|
+
version = "1.1.4"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
39
|
+
dependencies = [
|
|
40
|
+
"memchr",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "allocator-api2"
|
|
45
|
+
version = "0.2.21"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "android_system_properties"
|
|
51
|
+
version = "0.1.5"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
54
|
+
dependencies = [
|
|
55
|
+
"libc",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "anes"
|
|
60
|
+
version = "0.1.6"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "anstream"
|
|
66
|
+
version = "1.0.0"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"anstyle",
|
|
71
|
+
"anstyle-parse",
|
|
72
|
+
"anstyle-query",
|
|
73
|
+
"anstyle-wincon",
|
|
74
|
+
"colorchoice",
|
|
75
|
+
"is_terminal_polyfill",
|
|
76
|
+
"utf8parse",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "anstyle"
|
|
81
|
+
version = "1.0.14"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "anstyle-parse"
|
|
87
|
+
version = "1.0.0"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"utf8parse",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "anstyle-query"
|
|
96
|
+
version = "1.1.5"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"windows-sys 0.61.2",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "anstyle-wincon"
|
|
105
|
+
version = "3.0.11"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"anstyle",
|
|
110
|
+
"once_cell_polyfill",
|
|
111
|
+
"windows-sys 0.61.2",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "anyhow"
|
|
116
|
+
version = "1.0.103"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "approx"
|
|
122
|
+
version = "0.5.1"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"num-traits",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "arc-swap"
|
|
131
|
+
version = "1.9.1"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"rustversion",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "arrow"
|
|
140
|
+
version = "58.3.0"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "378530e55cd479eda3c14eb345310799717e6f76d0c332041e8487022166b471"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"arrow-arith",
|
|
145
|
+
"arrow-array",
|
|
146
|
+
"arrow-buffer",
|
|
147
|
+
"arrow-cast",
|
|
148
|
+
"arrow-data",
|
|
149
|
+
"arrow-ipc",
|
|
150
|
+
"arrow-ord",
|
|
151
|
+
"arrow-row",
|
|
152
|
+
"arrow-schema",
|
|
153
|
+
"arrow-select",
|
|
154
|
+
"arrow-string",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "arrow-arith"
|
|
159
|
+
version = "58.3.0"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "a0ab212d2c1886e802f51c5212d78ebbcbb0bec980fff9dadc1eb8d45cd0b738"
|
|
162
|
+
dependencies = [
|
|
163
|
+
"arrow-array",
|
|
164
|
+
"arrow-buffer",
|
|
165
|
+
"arrow-data",
|
|
166
|
+
"arrow-schema",
|
|
167
|
+
"chrono",
|
|
168
|
+
"num-traits",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "arrow-array"
|
|
173
|
+
version = "58.3.0"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "cfd33d3e92f207444098c75b42de99d329562be0cf686b307b097cc52b4e999e"
|
|
176
|
+
dependencies = [
|
|
177
|
+
"ahash",
|
|
178
|
+
"arrow-buffer",
|
|
179
|
+
"arrow-data",
|
|
180
|
+
"arrow-schema",
|
|
181
|
+
"chrono",
|
|
182
|
+
"half",
|
|
183
|
+
"hashbrown 0.17.1",
|
|
184
|
+
"num-complex",
|
|
185
|
+
"num-integer",
|
|
186
|
+
"num-traits",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "arrow-buffer"
|
|
191
|
+
version = "58.3.0"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "0c6cd424c2693bcdbc150d843dc9d4d137dd2de4782ce6df491ad11a3a0416c0"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"bytes",
|
|
196
|
+
"half",
|
|
197
|
+
"num-bigint",
|
|
198
|
+
"num-traits",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "arrow-cast"
|
|
203
|
+
version = "58.3.0"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "4c5aefb56a2c02e9e2b30746241058b85f8983f0fcff2ba0c6d09006e1cded7f"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"arrow-array",
|
|
208
|
+
"arrow-buffer",
|
|
209
|
+
"arrow-data",
|
|
210
|
+
"arrow-ord",
|
|
211
|
+
"arrow-schema",
|
|
212
|
+
"arrow-select",
|
|
213
|
+
"atoi",
|
|
214
|
+
"base64",
|
|
215
|
+
"chrono",
|
|
216
|
+
"half",
|
|
217
|
+
"lexical-core",
|
|
218
|
+
"num-traits",
|
|
219
|
+
"ryu",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "arrow-data"
|
|
224
|
+
version = "58.3.0"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "3c88210023a2bfee1896af366309a3028fc3bcbd6515fa29a7990ee1baa08ee0"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"arrow-buffer",
|
|
229
|
+
"arrow-schema",
|
|
230
|
+
"half",
|
|
231
|
+
"num-integer",
|
|
232
|
+
"num-traits",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "arrow-ipc"
|
|
237
|
+
version = "58.3.0"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "238438f0834483703d88896db6fe5a7138b2230debc31b34c0336c2996e3c64f"
|
|
240
|
+
dependencies = [
|
|
241
|
+
"arrow-array",
|
|
242
|
+
"arrow-buffer",
|
|
243
|
+
"arrow-data",
|
|
244
|
+
"arrow-schema",
|
|
245
|
+
"arrow-select",
|
|
246
|
+
"flatbuffers",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "arrow-ord"
|
|
251
|
+
version = "58.3.0"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "1bffd8fd2579286a5d63bac898159873e5094a79009940bcb42bbfce4f19f1d0"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"arrow-array",
|
|
256
|
+
"arrow-buffer",
|
|
257
|
+
"arrow-data",
|
|
258
|
+
"arrow-schema",
|
|
259
|
+
"arrow-select",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "arrow-row"
|
|
264
|
+
version = "58.3.0"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "bab5994731204603c73ba69267616c50f80780774c6bb0476f1f830625115e0c"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"arrow-array",
|
|
269
|
+
"arrow-buffer",
|
|
270
|
+
"arrow-data",
|
|
271
|
+
"arrow-schema",
|
|
272
|
+
"half",
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "arrow-schema"
|
|
277
|
+
version = "58.3.0"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "f633dbfdf39c039ada1bf9e34c694816eb71fbb7dc78f613993b7245e078a1ed"
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "arrow-select"
|
|
283
|
+
version = "58.3.0"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "8cd065c54172ac787cf3f2f8d4107e0d3fdc26edba76fdf4f4cc170258942222"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"ahash",
|
|
288
|
+
"arrow-array",
|
|
289
|
+
"arrow-buffer",
|
|
290
|
+
"arrow-data",
|
|
291
|
+
"arrow-schema",
|
|
292
|
+
"num-traits",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "arrow-string"
|
|
297
|
+
version = "58.3.0"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "29dd7cda3ab9692f43a2e4acc444d760cc17b12bb6d8232ddf64e9bab7c06b42"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"arrow-array",
|
|
302
|
+
"arrow-buffer",
|
|
303
|
+
"arrow-data",
|
|
304
|
+
"arrow-schema",
|
|
305
|
+
"arrow-select",
|
|
306
|
+
"memchr",
|
|
307
|
+
"num-traits",
|
|
308
|
+
"regex",
|
|
309
|
+
"regex-syntax",
|
|
310
|
+
]
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "assert_cmd"
|
|
314
|
+
version = "2.2.1"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "39bae1d3fa576f7c6519514180a72559268dd7d1fe104070956cb687bc6673bd"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"anstyle",
|
|
319
|
+
"bstr",
|
|
320
|
+
"libc",
|
|
321
|
+
"predicates",
|
|
322
|
+
"predicates-core",
|
|
323
|
+
"predicates-tree",
|
|
324
|
+
"wait-timeout",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "async-trait"
|
|
329
|
+
version = "0.1.89"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"proc-macro2",
|
|
334
|
+
"quote",
|
|
335
|
+
"syn",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "atoi"
|
|
340
|
+
version = "2.0.0"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"num-traits",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "atomic-waker"
|
|
349
|
+
version = "1.1.2"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "autocfg"
|
|
355
|
+
version = "1.5.1"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "backtrace"
|
|
361
|
+
version = "0.3.76"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"addr2line",
|
|
366
|
+
"cfg-if",
|
|
367
|
+
"libc",
|
|
368
|
+
"miniz_oxide",
|
|
369
|
+
"object",
|
|
370
|
+
"rustc-demangle",
|
|
371
|
+
"windows-link",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "base64"
|
|
376
|
+
version = "0.22.1"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "bitflags"
|
|
382
|
+
version = "2.13.0"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "block-buffer"
|
|
388
|
+
version = "0.10.4"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"generic-array",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "bstr"
|
|
397
|
+
version = "1.12.1"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"memchr",
|
|
402
|
+
"regex-automata",
|
|
403
|
+
"serde",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "bumpalo"
|
|
408
|
+
version = "3.20.3"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "byteorder"
|
|
414
|
+
version = "1.5.0"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "bytes"
|
|
420
|
+
version = "1.12.0"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "cast"
|
|
426
|
+
version = "0.3.0"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "cc"
|
|
432
|
+
version = "1.2.66"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"find-msvc-tools",
|
|
437
|
+
"jobserver",
|
|
438
|
+
"libc",
|
|
439
|
+
"shlex",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "cfg-if"
|
|
444
|
+
version = "1.0.4"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "cfg_aliases"
|
|
450
|
+
version = "0.2.1"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "chacha20"
|
|
456
|
+
version = "0.10.0"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
459
|
+
dependencies = [
|
|
460
|
+
"cfg-if",
|
|
461
|
+
"cpufeatures",
|
|
462
|
+
"rand_core 0.10.1",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "chrono"
|
|
467
|
+
version = "0.4.45"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"iana-time-zone",
|
|
472
|
+
"num-traits",
|
|
473
|
+
"serde",
|
|
474
|
+
"windows-link",
|
|
475
|
+
]
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "ciborium"
|
|
479
|
+
version = "0.2.2"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"ciborium-io",
|
|
484
|
+
"ciborium-ll",
|
|
485
|
+
"serde",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "ciborium-io"
|
|
490
|
+
version = "0.2.2"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "ciborium-ll"
|
|
496
|
+
version = "0.2.2"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"ciborium-io",
|
|
501
|
+
"half",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "clap"
|
|
506
|
+
version = "4.6.1"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"clap_builder",
|
|
511
|
+
"clap_derive",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "clap_builder"
|
|
516
|
+
version = "4.6.0"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"anstream",
|
|
521
|
+
"anstyle",
|
|
522
|
+
"clap_lex",
|
|
523
|
+
"strsim",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "clap_derive"
|
|
528
|
+
version = "4.6.1"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"heck",
|
|
533
|
+
"proc-macro2",
|
|
534
|
+
"quote",
|
|
535
|
+
"syn",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "clap_lex"
|
|
540
|
+
version = "1.1.0"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "colorchoice"
|
|
546
|
+
version = "1.0.5"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "const-random"
|
|
552
|
+
version = "0.1.18"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"const-random-macro",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "const-random-macro"
|
|
561
|
+
version = "0.1.16"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"getrandom 0.2.17",
|
|
566
|
+
"once_cell",
|
|
567
|
+
"tiny-keccak",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "core-foundation"
|
|
572
|
+
version = "0.10.1"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"core-foundation-sys",
|
|
577
|
+
"libc",
|
|
578
|
+
]
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "core-foundation-sys"
|
|
582
|
+
version = "0.8.7"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "cpufeatures"
|
|
588
|
+
version = "0.3.0"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"libc",
|
|
593
|
+
]
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "crc32fast"
|
|
597
|
+
version = "1.5.0"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
600
|
+
dependencies = [
|
|
601
|
+
"cfg-if",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "criterion"
|
|
606
|
+
version = "0.5.1"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"anes",
|
|
611
|
+
"cast",
|
|
612
|
+
"ciborium",
|
|
613
|
+
"clap",
|
|
614
|
+
"criterion-plot",
|
|
615
|
+
"is-terminal",
|
|
616
|
+
"itertools 0.10.5",
|
|
617
|
+
"num-traits",
|
|
618
|
+
"once_cell",
|
|
619
|
+
"oorandom",
|
|
620
|
+
"plotters",
|
|
621
|
+
"rayon",
|
|
622
|
+
"regex",
|
|
623
|
+
"serde",
|
|
624
|
+
"serde_derive",
|
|
625
|
+
"serde_json",
|
|
626
|
+
"tinytemplate",
|
|
627
|
+
"walkdir",
|
|
628
|
+
]
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "criterion-plot"
|
|
632
|
+
version = "0.5.0"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
635
|
+
dependencies = [
|
|
636
|
+
"cast",
|
|
637
|
+
"itertools 0.10.5",
|
|
638
|
+
]
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "crossbeam-channel"
|
|
642
|
+
version = "0.5.15"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"crossbeam-utils",
|
|
647
|
+
]
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "crossbeam-deque"
|
|
651
|
+
version = "0.8.6"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"crossbeam-epoch",
|
|
656
|
+
"crossbeam-utils",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "crossbeam-epoch"
|
|
661
|
+
version = "0.9.18"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"crossbeam-utils",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "crossbeam-utils"
|
|
670
|
+
version = "0.8.21"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "crunchy"
|
|
676
|
+
version = "0.2.4"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "crypto-common"
|
|
682
|
+
version = "0.1.7"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"generic-array",
|
|
687
|
+
"typenum",
|
|
688
|
+
]
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "csv"
|
|
692
|
+
version = "1.4.0"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"csv-core",
|
|
697
|
+
"itoa",
|
|
698
|
+
"ryu",
|
|
699
|
+
"serde_core",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "csv-core"
|
|
704
|
+
version = "0.1.13"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"memchr",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "dashmap"
|
|
713
|
+
version = "6.2.1"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"cfg-if",
|
|
718
|
+
"crossbeam-utils",
|
|
719
|
+
"hashbrown 0.14.5",
|
|
720
|
+
"lock_api",
|
|
721
|
+
"once_cell",
|
|
722
|
+
"parking_lot_core",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "dhat"
|
|
727
|
+
version = "0.3.3"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "98cd11d84628e233de0ce467de10b8633f4ddaecafadefc86e13b84b8739b827"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"backtrace",
|
|
732
|
+
"lazy_static",
|
|
733
|
+
"mintex",
|
|
734
|
+
"parking_lot",
|
|
735
|
+
"rustc-hash 1.1.0",
|
|
736
|
+
"serde",
|
|
737
|
+
"serde_json",
|
|
738
|
+
"thousands",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "difflib"
|
|
743
|
+
version = "0.4.0"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "digest"
|
|
749
|
+
version = "0.10.7"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"block-buffer",
|
|
754
|
+
"crypto-common",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "dirs"
|
|
759
|
+
version = "5.0.1"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"dirs-sys",
|
|
764
|
+
]
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "dirs-sys"
|
|
768
|
+
version = "0.4.1"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"libc",
|
|
773
|
+
"option-ext",
|
|
774
|
+
"redox_users",
|
|
775
|
+
"windows-sys 0.48.0",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "displaydoc"
|
|
780
|
+
version = "0.2.6"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"proc-macro2",
|
|
785
|
+
"quote",
|
|
786
|
+
"syn",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "earcutr"
|
|
791
|
+
version = "0.4.3"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "79127ed59a85d7687c409e9978547cffb7dc79675355ed22da6b66fd5f6ead01"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"itertools 0.11.0",
|
|
796
|
+
"num-traits",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "either"
|
|
801
|
+
version = "1.16.0"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "equivalent"
|
|
807
|
+
version = "1.0.2"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "errno"
|
|
813
|
+
version = "0.3.14"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"libc",
|
|
818
|
+
"windows-sys 0.61.2",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "fastrand"
|
|
823
|
+
version = "2.4.1"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "find-msvc-tools"
|
|
829
|
+
version = "0.1.9"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "flatbuffers"
|
|
835
|
+
version = "25.12.19"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"bitflags",
|
|
840
|
+
"rustc_version",
|
|
841
|
+
]
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "flate2"
|
|
845
|
+
version = "1.1.9"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"crc32fast",
|
|
850
|
+
"miniz_oxide",
|
|
851
|
+
"zlib-rs",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "float_next_after"
|
|
856
|
+
version = "1.0.0"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "fnv"
|
|
862
|
+
version = "1.0.7"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "foldhash"
|
|
868
|
+
version = "0.2.0"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "form_urlencoded"
|
|
874
|
+
version = "1.2.2"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"percent-encoding",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "futures"
|
|
883
|
+
version = "0.3.32"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"futures-channel",
|
|
888
|
+
"futures-core",
|
|
889
|
+
"futures-io",
|
|
890
|
+
"futures-sink",
|
|
891
|
+
"futures-task",
|
|
892
|
+
"futures-util",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "futures-channel"
|
|
897
|
+
version = "0.3.32"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"futures-core",
|
|
902
|
+
"futures-sink",
|
|
903
|
+
]
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "futures-core"
|
|
907
|
+
version = "0.3.32"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "futures-io"
|
|
913
|
+
version = "0.3.32"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "futures-macro"
|
|
919
|
+
version = "0.3.32"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
922
|
+
dependencies = [
|
|
923
|
+
"proc-macro2",
|
|
924
|
+
"quote",
|
|
925
|
+
"syn",
|
|
926
|
+
]
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "futures-sink"
|
|
930
|
+
version = "0.3.32"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "futures-task"
|
|
936
|
+
version = "0.3.32"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "futures-util"
|
|
942
|
+
version = "0.3.32"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"futures-channel",
|
|
947
|
+
"futures-core",
|
|
948
|
+
"futures-io",
|
|
949
|
+
"futures-macro",
|
|
950
|
+
"futures-sink",
|
|
951
|
+
"futures-task",
|
|
952
|
+
"memchr",
|
|
953
|
+
"pin-project-lite",
|
|
954
|
+
"slab",
|
|
955
|
+
]
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "gdal"
|
|
959
|
+
version = "0.19.0"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "e26906e99e54000acd7f6328f85d161e6280390b9b596e06dbed0637a6e29717"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"bitflags",
|
|
964
|
+
"chrono",
|
|
965
|
+
"gdal-sys",
|
|
966
|
+
"geo-types",
|
|
967
|
+
"semver",
|
|
968
|
+
"thiserror 2.0.18",
|
|
969
|
+
]
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "gdal-sys"
|
|
973
|
+
version = "0.12.0"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "cceef1cc08a1f031c5717cb645bb361a3114470cc142cc96bc5e62b79695632e"
|
|
976
|
+
dependencies = [
|
|
977
|
+
"pkg-config",
|
|
978
|
+
"semver",
|
|
979
|
+
]
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "generic-array"
|
|
983
|
+
version = "0.14.7"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
986
|
+
dependencies = [
|
|
987
|
+
"typenum",
|
|
988
|
+
"version_check",
|
|
989
|
+
]
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "geo"
|
|
993
|
+
version = "0.29.3"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "34f0e6e028c581e82e6822a68869514e94c25e7f8ea669a2d8595bdf7461ccc5"
|
|
996
|
+
dependencies = [
|
|
997
|
+
"earcutr",
|
|
998
|
+
"float_next_after",
|
|
999
|
+
"geo-types",
|
|
1000
|
+
"geographiclib-rs",
|
|
1001
|
+
"i_overlay",
|
|
1002
|
+
"log",
|
|
1003
|
+
"num-traits",
|
|
1004
|
+
"robust",
|
|
1005
|
+
"rstar",
|
|
1006
|
+
"spade",
|
|
1007
|
+
]
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "geo-types"
|
|
1011
|
+
version = "0.7.19"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "94776032c45f950d30a13af6113c2ad5625316c9abfbccee4dd5a6695f8fe0f5"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"approx",
|
|
1016
|
+
"num-traits",
|
|
1017
|
+
"rayon",
|
|
1018
|
+
"rstar",
|
|
1019
|
+
"serde",
|
|
1020
|
+
]
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "geographiclib-rs"
|
|
1024
|
+
version = "0.2.7"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "c5a7f08910fd98737a6eda7568e7c5e645093e073328eeef49758cfe8b0489c7"
|
|
1027
|
+
dependencies = [
|
|
1028
|
+
"libm",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "geozero"
|
|
1033
|
+
version = "0.14.0"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "e5f28f34864745eb2f123c990c6ffd92c1584bd39439b3f27ff2a0f4ea5b309b"
|
|
1036
|
+
dependencies = [
|
|
1037
|
+
"geo-types",
|
|
1038
|
+
"log",
|
|
1039
|
+
"scroll",
|
|
1040
|
+
"serde_json",
|
|
1041
|
+
"thiserror 1.0.69",
|
|
1042
|
+
"wkt",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "getrandom"
|
|
1047
|
+
version = "0.2.17"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"cfg-if",
|
|
1052
|
+
"js-sys",
|
|
1053
|
+
"libc",
|
|
1054
|
+
"wasi",
|
|
1055
|
+
"wasm-bindgen",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "getrandom"
|
|
1060
|
+
version = "0.3.4"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1063
|
+
dependencies = [
|
|
1064
|
+
"cfg-if",
|
|
1065
|
+
"js-sys",
|
|
1066
|
+
"libc",
|
|
1067
|
+
"r-efi 5.3.0",
|
|
1068
|
+
"wasip2",
|
|
1069
|
+
"wasm-bindgen",
|
|
1070
|
+
]
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "getrandom"
|
|
1074
|
+
version = "0.4.3"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
1077
|
+
dependencies = [
|
|
1078
|
+
"cfg-if",
|
|
1079
|
+
"libc",
|
|
1080
|
+
"r-efi 6.0.0",
|
|
1081
|
+
"rand_core 0.10.1",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "gimli"
|
|
1086
|
+
version = "0.32.3"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "h2"
|
|
1092
|
+
version = "0.4.15"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
1095
|
+
dependencies = [
|
|
1096
|
+
"atomic-waker",
|
|
1097
|
+
"bytes",
|
|
1098
|
+
"fnv",
|
|
1099
|
+
"futures-core",
|
|
1100
|
+
"futures-sink",
|
|
1101
|
+
"http",
|
|
1102
|
+
"indexmap",
|
|
1103
|
+
"slab",
|
|
1104
|
+
"tokio",
|
|
1105
|
+
"tokio-util",
|
|
1106
|
+
"tracing",
|
|
1107
|
+
]
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "half"
|
|
1111
|
+
version = "2.7.1"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"cfg-if",
|
|
1116
|
+
"crunchy",
|
|
1117
|
+
"num-traits",
|
|
1118
|
+
"zerocopy",
|
|
1119
|
+
]
|
|
1120
|
+
|
|
1121
|
+
[[package]]
|
|
1122
|
+
name = "hash32"
|
|
1123
|
+
version = "0.3.1"
|
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
1126
|
+
dependencies = [
|
|
1127
|
+
"byteorder",
|
|
1128
|
+
]
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "hashbrown"
|
|
1132
|
+
version = "0.14.5"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "hashbrown"
|
|
1138
|
+
version = "0.16.1"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1141
|
+
dependencies = [
|
|
1142
|
+
"allocator-api2",
|
|
1143
|
+
"equivalent",
|
|
1144
|
+
"foldhash",
|
|
1145
|
+
]
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "hashbrown"
|
|
1149
|
+
version = "0.17.1"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1152
|
+
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "heapless"
|
|
1155
|
+
version = "0.8.0"
|
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
1158
|
+
dependencies = [
|
|
1159
|
+
"hash32",
|
|
1160
|
+
"stable_deref_trait",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "heck"
|
|
1165
|
+
version = "0.5.0"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "hermit-abi"
|
|
1171
|
+
version = "0.5.2"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "hfx"
|
|
1177
|
+
version = "0.4.0"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "590318df3a4ca8f593ca9ddd541b475f4d555b64ccc3256ef25964ec9d9adbf5"
|
|
1180
|
+
dependencies = [
|
|
1181
|
+
"thiserror 2.0.18",
|
|
1182
|
+
"tracing",
|
|
1183
|
+
]
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "http"
|
|
1187
|
+
version = "1.4.2"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
1190
|
+
dependencies = [
|
|
1191
|
+
"bytes",
|
|
1192
|
+
"itoa",
|
|
1193
|
+
]
|
|
1194
|
+
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "http-body"
|
|
1197
|
+
version = "1.0.1"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1200
|
+
dependencies = [
|
|
1201
|
+
"bytes",
|
|
1202
|
+
"http",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "http-body-util"
|
|
1207
|
+
version = "0.1.3"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"bytes",
|
|
1212
|
+
"futures-core",
|
|
1213
|
+
"http",
|
|
1214
|
+
"http-body",
|
|
1215
|
+
"pin-project-lite",
|
|
1216
|
+
]
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "httparse"
|
|
1220
|
+
version = "1.10.1"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "humantime"
|
|
1226
|
+
version = "2.4.0"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "hyper"
|
|
1232
|
+
version = "1.10.1"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
1235
|
+
dependencies = [
|
|
1236
|
+
"atomic-waker",
|
|
1237
|
+
"bytes",
|
|
1238
|
+
"futures-channel",
|
|
1239
|
+
"futures-core",
|
|
1240
|
+
"h2",
|
|
1241
|
+
"http",
|
|
1242
|
+
"http-body",
|
|
1243
|
+
"httparse",
|
|
1244
|
+
"itoa",
|
|
1245
|
+
"pin-project-lite",
|
|
1246
|
+
"smallvec",
|
|
1247
|
+
"tokio",
|
|
1248
|
+
"want",
|
|
1249
|
+
]
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "hyper-rustls"
|
|
1253
|
+
version = "0.27.9"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
1256
|
+
dependencies = [
|
|
1257
|
+
"http",
|
|
1258
|
+
"hyper",
|
|
1259
|
+
"hyper-util",
|
|
1260
|
+
"rustls",
|
|
1261
|
+
"rustls-native-certs",
|
|
1262
|
+
"tokio",
|
|
1263
|
+
"tokio-rustls",
|
|
1264
|
+
"tower-service",
|
|
1265
|
+
]
|
|
1266
|
+
|
|
1267
|
+
[[package]]
|
|
1268
|
+
name = "hyper-util"
|
|
1269
|
+
version = "0.1.20"
|
|
1270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1272
|
+
dependencies = [
|
|
1273
|
+
"base64",
|
|
1274
|
+
"bytes",
|
|
1275
|
+
"futures-channel",
|
|
1276
|
+
"futures-util",
|
|
1277
|
+
"http",
|
|
1278
|
+
"http-body",
|
|
1279
|
+
"hyper",
|
|
1280
|
+
"ipnet",
|
|
1281
|
+
"libc",
|
|
1282
|
+
"percent-encoding",
|
|
1283
|
+
"pin-project-lite",
|
|
1284
|
+
"socket2",
|
|
1285
|
+
"tokio",
|
|
1286
|
+
"tower-service",
|
|
1287
|
+
"tracing",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "i_float"
|
|
1292
|
+
version = "1.6.0"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "775f9961a8d2f879725da8aff789bb20a3ddf297473e0c90af75e69313919490"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"serde",
|
|
1297
|
+
]
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "i_key_sort"
|
|
1301
|
+
version = "0.2.0"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "347c253b4748a1a28baf94c9ce133b6b166f08573157e05afe718812bc599fcd"
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "i_overlay"
|
|
1307
|
+
version = "1.9.4"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "01882ce5ed786bf6e8f5167f171a4026cd129ce17d9ff5cbf1e6749b98628ece"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"i_float",
|
|
1312
|
+
"i_key_sort",
|
|
1313
|
+
"i_shape",
|
|
1314
|
+
"i_tree",
|
|
1315
|
+
"rayon",
|
|
1316
|
+
]
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "i_shape"
|
|
1320
|
+
version = "1.6.0"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "27dbe9e5238d6b9c694c08415bf00fb370b089949bd818ab01f41f8927b8774c"
|
|
1323
|
+
dependencies = [
|
|
1324
|
+
"i_float",
|
|
1325
|
+
"serde",
|
|
1326
|
+
]
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "i_tree"
|
|
1330
|
+
version = "0.8.3"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "155181bc97d770181cf9477da51218a19ee92a8e5be642e796661aee2b601139"
|
|
1333
|
+
|
|
1334
|
+
[[package]]
|
|
1335
|
+
name = "iana-time-zone"
|
|
1336
|
+
version = "0.1.65"
|
|
1337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1339
|
+
dependencies = [
|
|
1340
|
+
"android_system_properties",
|
|
1341
|
+
"core-foundation-sys",
|
|
1342
|
+
"iana-time-zone-haiku",
|
|
1343
|
+
"js-sys",
|
|
1344
|
+
"log",
|
|
1345
|
+
"wasm-bindgen",
|
|
1346
|
+
"windows-core",
|
|
1347
|
+
]
|
|
1348
|
+
|
|
1349
|
+
[[package]]
|
|
1350
|
+
name = "iana-time-zone-haiku"
|
|
1351
|
+
version = "0.1.2"
|
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1354
|
+
dependencies = [
|
|
1355
|
+
"cc",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "icu_collections"
|
|
1360
|
+
version = "2.2.0"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
1363
|
+
dependencies = [
|
|
1364
|
+
"displaydoc",
|
|
1365
|
+
"potential_utf",
|
|
1366
|
+
"utf8_iter",
|
|
1367
|
+
"yoke",
|
|
1368
|
+
"zerofrom",
|
|
1369
|
+
"zerovec",
|
|
1370
|
+
]
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "icu_locale_core"
|
|
1374
|
+
version = "2.2.0"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1377
|
+
dependencies = [
|
|
1378
|
+
"displaydoc",
|
|
1379
|
+
"litemap",
|
|
1380
|
+
"tinystr",
|
|
1381
|
+
"writeable",
|
|
1382
|
+
"zerovec",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "icu_normalizer"
|
|
1387
|
+
version = "2.2.0"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1390
|
+
dependencies = [
|
|
1391
|
+
"icu_collections",
|
|
1392
|
+
"icu_normalizer_data",
|
|
1393
|
+
"icu_properties",
|
|
1394
|
+
"icu_provider",
|
|
1395
|
+
"smallvec",
|
|
1396
|
+
"zerovec",
|
|
1397
|
+
]
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "icu_normalizer_data"
|
|
1401
|
+
version = "2.2.0"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "icu_properties"
|
|
1407
|
+
version = "2.2.0"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"icu_collections",
|
|
1412
|
+
"icu_locale_core",
|
|
1413
|
+
"icu_properties_data",
|
|
1414
|
+
"icu_provider",
|
|
1415
|
+
"zerotrie",
|
|
1416
|
+
"zerovec",
|
|
1417
|
+
]
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "icu_properties_data"
|
|
1421
|
+
version = "2.2.0"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "icu_provider"
|
|
1427
|
+
version = "2.2.0"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1430
|
+
dependencies = [
|
|
1431
|
+
"displaydoc",
|
|
1432
|
+
"icu_locale_core",
|
|
1433
|
+
"writeable",
|
|
1434
|
+
"yoke",
|
|
1435
|
+
"zerofrom",
|
|
1436
|
+
"zerotrie",
|
|
1437
|
+
"zerovec",
|
|
1438
|
+
]
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "idna"
|
|
1442
|
+
version = "1.1.0"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"idna_adapter",
|
|
1447
|
+
"smallvec",
|
|
1448
|
+
"utf8_iter",
|
|
1449
|
+
]
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "idna_adapter"
|
|
1453
|
+
version = "1.2.2"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"icu_normalizer",
|
|
1458
|
+
"icu_properties",
|
|
1459
|
+
]
|
|
1460
|
+
|
|
1461
|
+
[[package]]
|
|
1462
|
+
name = "indexmap"
|
|
1463
|
+
version = "2.14.0"
|
|
1464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1465
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1466
|
+
dependencies = [
|
|
1467
|
+
"equivalent",
|
|
1468
|
+
"hashbrown 0.17.1",
|
|
1469
|
+
]
|
|
1470
|
+
|
|
1471
|
+
[[package]]
|
|
1472
|
+
name = "indoc"
|
|
1473
|
+
version = "2.0.7"
|
|
1474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1475
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1476
|
+
dependencies = [
|
|
1477
|
+
"rustversion",
|
|
1478
|
+
]
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "integer-encoding"
|
|
1482
|
+
version = "3.0.4"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "ipnet"
|
|
1488
|
+
version = "2.12.0"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "is-terminal"
|
|
1494
|
+
version = "0.4.17"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"hermit-abi",
|
|
1499
|
+
"libc",
|
|
1500
|
+
"windows-sys 0.61.2",
|
|
1501
|
+
]
|
|
1502
|
+
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "is_terminal_polyfill"
|
|
1505
|
+
version = "1.70.2"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "itertools"
|
|
1511
|
+
version = "0.10.5"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1514
|
+
dependencies = [
|
|
1515
|
+
"either",
|
|
1516
|
+
]
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "itertools"
|
|
1520
|
+
version = "0.11.0"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"either",
|
|
1525
|
+
]
|
|
1526
|
+
|
|
1527
|
+
[[package]]
|
|
1528
|
+
name = "itertools"
|
|
1529
|
+
version = "0.14.0"
|
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1532
|
+
dependencies = [
|
|
1533
|
+
"either",
|
|
1534
|
+
]
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "itoa"
|
|
1538
|
+
version = "1.0.18"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "jobserver"
|
|
1544
|
+
version = "0.1.34"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1547
|
+
dependencies = [
|
|
1548
|
+
"getrandom 0.3.4",
|
|
1549
|
+
"libc",
|
|
1550
|
+
]
|
|
1551
|
+
|
|
1552
|
+
[[package]]
|
|
1553
|
+
name = "jpeg-decoder"
|
|
1554
|
+
version = "0.3.2"
|
|
1555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
+
checksum = "00810f1d8b74be64b13dbf3db89ac67740615d6c891f0e7b6179326533011a07"
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "js-sys"
|
|
1560
|
+
version = "0.3.103"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"cfg-if",
|
|
1565
|
+
"futures-util",
|
|
1566
|
+
"wasm-bindgen",
|
|
1567
|
+
]
|
|
1568
|
+
|
|
1569
|
+
[[package]]
|
|
1570
|
+
name = "lazy_static"
|
|
1571
|
+
version = "1.5.0"
|
|
1572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "lexical-core"
|
|
1577
|
+
version = "1.0.6"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"lexical-parse-float",
|
|
1582
|
+
"lexical-parse-integer",
|
|
1583
|
+
"lexical-util",
|
|
1584
|
+
"lexical-write-float",
|
|
1585
|
+
"lexical-write-integer",
|
|
1586
|
+
]
|
|
1587
|
+
|
|
1588
|
+
[[package]]
|
|
1589
|
+
name = "lexical-parse-float"
|
|
1590
|
+
version = "1.0.6"
|
|
1591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
1593
|
+
dependencies = [
|
|
1594
|
+
"lexical-parse-integer",
|
|
1595
|
+
"lexical-util",
|
|
1596
|
+
]
|
|
1597
|
+
|
|
1598
|
+
[[package]]
|
|
1599
|
+
name = "lexical-parse-integer"
|
|
1600
|
+
version = "1.0.6"
|
|
1601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1602
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
1603
|
+
dependencies = [
|
|
1604
|
+
"lexical-util",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "lexical-util"
|
|
1609
|
+
version = "1.0.7"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
1612
|
+
|
|
1613
|
+
[[package]]
|
|
1614
|
+
name = "lexical-write-float"
|
|
1615
|
+
version = "1.0.6"
|
|
1616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
1618
|
+
dependencies = [
|
|
1619
|
+
"lexical-util",
|
|
1620
|
+
"lexical-write-integer",
|
|
1621
|
+
]
|
|
1622
|
+
|
|
1623
|
+
[[package]]
|
|
1624
|
+
name = "lexical-write-integer"
|
|
1625
|
+
version = "1.0.6"
|
|
1626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
1628
|
+
dependencies = [
|
|
1629
|
+
"lexical-util",
|
|
1630
|
+
]
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "libc"
|
|
1634
|
+
version = "0.2.186"
|
|
1635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "libm"
|
|
1640
|
+
version = "0.2.16"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "libredox"
|
|
1646
|
+
version = "0.1.16"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
|
|
1649
|
+
dependencies = [
|
|
1650
|
+
"libc",
|
|
1651
|
+
]
|
|
1652
|
+
|
|
1653
|
+
[[package]]
|
|
1654
|
+
name = "linux-raw-sys"
|
|
1655
|
+
version = "0.12.1"
|
|
1656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1658
|
+
|
|
1659
|
+
[[package]]
|
|
1660
|
+
name = "litemap"
|
|
1661
|
+
version = "0.8.2"
|
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "lock_api"
|
|
1667
|
+
version = "0.4.14"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1670
|
+
dependencies = [
|
|
1671
|
+
"scopeguard",
|
|
1672
|
+
]
|
|
1673
|
+
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "log"
|
|
1676
|
+
version = "0.4.33"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
1679
|
+
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "lru-slab"
|
|
1682
|
+
version = "0.1.2"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1685
|
+
|
|
1686
|
+
[[package]]
|
|
1687
|
+
name = "lz4_flex"
|
|
1688
|
+
version = "0.13.1"
|
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
+
checksum = "7ef0d4ed8669f8f8826eb00dc878084aa8f253506c4fd5e8f58f5bce72ddb97e"
|
|
1691
|
+
dependencies = [
|
|
1692
|
+
"twox-hash",
|
|
1693
|
+
]
|
|
1694
|
+
|
|
1695
|
+
[[package]]
|
|
1696
|
+
name = "matchers"
|
|
1697
|
+
version = "0.2.0"
|
|
1698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1700
|
+
dependencies = [
|
|
1701
|
+
"regex-automata",
|
|
1702
|
+
]
|
|
1703
|
+
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "md-5"
|
|
1706
|
+
version = "0.10.6"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"cfg-if",
|
|
1711
|
+
"digest",
|
|
1712
|
+
]
|
|
1713
|
+
|
|
1714
|
+
[[package]]
|
|
1715
|
+
name = "memchr"
|
|
1716
|
+
version = "2.8.2"
|
|
1717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1718
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
1719
|
+
|
|
1720
|
+
[[package]]
|
|
1721
|
+
name = "memoffset"
|
|
1722
|
+
version = "0.9.1"
|
|
1723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1725
|
+
dependencies = [
|
|
1726
|
+
"autocfg",
|
|
1727
|
+
]
|
|
1728
|
+
|
|
1729
|
+
[[package]]
|
|
1730
|
+
name = "miniz_oxide"
|
|
1731
|
+
version = "0.8.9"
|
|
1732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1733
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1734
|
+
dependencies = [
|
|
1735
|
+
"adler2",
|
|
1736
|
+
"simd-adler32",
|
|
1737
|
+
]
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "mintex"
|
|
1741
|
+
version = "0.1.4"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "c505b3e17ed6b70a7ed2e67fbb2c560ee327353556120d6e72f5232b6880d536"
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "mio"
|
|
1747
|
+
version = "1.2.1"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
1750
|
+
dependencies = [
|
|
1751
|
+
"libc",
|
|
1752
|
+
"wasi",
|
|
1753
|
+
"windows-sys 0.61.2",
|
|
1754
|
+
]
|
|
1755
|
+
|
|
1756
|
+
[[package]]
|
|
1757
|
+
name = "moka"
|
|
1758
|
+
version = "0.12.15"
|
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
+
checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
|
|
1761
|
+
dependencies = [
|
|
1762
|
+
"crossbeam-channel",
|
|
1763
|
+
"crossbeam-epoch",
|
|
1764
|
+
"crossbeam-utils",
|
|
1765
|
+
"equivalent",
|
|
1766
|
+
"parking_lot",
|
|
1767
|
+
"portable-atomic",
|
|
1768
|
+
"smallvec",
|
|
1769
|
+
"tagptr",
|
|
1770
|
+
"uuid",
|
|
1771
|
+
]
|
|
1772
|
+
|
|
1773
|
+
[[package]]
|
|
1774
|
+
name = "nu-ansi-term"
|
|
1775
|
+
version = "0.50.3"
|
|
1776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1778
|
+
dependencies = [
|
|
1779
|
+
"windows-sys 0.61.2",
|
|
1780
|
+
]
|
|
1781
|
+
|
|
1782
|
+
[[package]]
|
|
1783
|
+
name = "num-bigint"
|
|
1784
|
+
version = "0.4.8"
|
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
1787
|
+
dependencies = [
|
|
1788
|
+
"num-integer",
|
|
1789
|
+
"num-traits",
|
|
1790
|
+
]
|
|
1791
|
+
|
|
1792
|
+
[[package]]
|
|
1793
|
+
name = "num-complex"
|
|
1794
|
+
version = "0.4.6"
|
|
1795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1797
|
+
dependencies = [
|
|
1798
|
+
"num-traits",
|
|
1799
|
+
]
|
|
1800
|
+
|
|
1801
|
+
[[package]]
|
|
1802
|
+
name = "num-integer"
|
|
1803
|
+
version = "0.1.46"
|
|
1804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1805
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1806
|
+
dependencies = [
|
|
1807
|
+
"num-traits",
|
|
1808
|
+
]
|
|
1809
|
+
|
|
1810
|
+
[[package]]
|
|
1811
|
+
name = "num-traits"
|
|
1812
|
+
version = "0.2.19"
|
|
1813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1815
|
+
dependencies = [
|
|
1816
|
+
"autocfg",
|
|
1817
|
+
"libm",
|
|
1818
|
+
]
|
|
1819
|
+
|
|
1820
|
+
[[package]]
|
|
1821
|
+
name = "object"
|
|
1822
|
+
version = "0.37.3"
|
|
1823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
1825
|
+
dependencies = [
|
|
1826
|
+
"memchr",
|
|
1827
|
+
]
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "object_store"
|
|
1831
|
+
version = "0.13.2"
|
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
+
checksum = "622acbc9100d3c10e2ee15804b0caa40e55c933d5aa53814cd520805b7958a49"
|
|
1834
|
+
dependencies = [
|
|
1835
|
+
"async-trait",
|
|
1836
|
+
"base64",
|
|
1837
|
+
"bytes",
|
|
1838
|
+
"chrono",
|
|
1839
|
+
"form_urlencoded",
|
|
1840
|
+
"futures-channel",
|
|
1841
|
+
"futures-core",
|
|
1842
|
+
"futures-util",
|
|
1843
|
+
"http",
|
|
1844
|
+
"http-body-util",
|
|
1845
|
+
"humantime",
|
|
1846
|
+
"hyper",
|
|
1847
|
+
"itertools 0.14.0",
|
|
1848
|
+
"md-5",
|
|
1849
|
+
"parking_lot",
|
|
1850
|
+
"percent-encoding",
|
|
1851
|
+
"quick-xml",
|
|
1852
|
+
"rand 0.10.1",
|
|
1853
|
+
"reqwest",
|
|
1854
|
+
"ring",
|
|
1855
|
+
"serde",
|
|
1856
|
+
"serde_json",
|
|
1857
|
+
"serde_urlencoded",
|
|
1858
|
+
"thiserror 2.0.18",
|
|
1859
|
+
"tokio",
|
|
1860
|
+
"tracing",
|
|
1861
|
+
"url",
|
|
1862
|
+
"walkdir",
|
|
1863
|
+
"wasm-bindgen-futures",
|
|
1864
|
+
"web-time",
|
|
1865
|
+
]
|
|
1866
|
+
|
|
1867
|
+
[[package]]
|
|
1868
|
+
name = "once_cell"
|
|
1869
|
+
version = "1.21.4"
|
|
1870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1872
|
+
|
|
1873
|
+
[[package]]
|
|
1874
|
+
name = "once_cell_polyfill"
|
|
1875
|
+
version = "1.70.2"
|
|
1876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1877
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1878
|
+
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "oorandom"
|
|
1881
|
+
version = "11.1.5"
|
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1884
|
+
|
|
1885
|
+
[[package]]
|
|
1886
|
+
name = "openssl-probe"
|
|
1887
|
+
version = "0.2.1"
|
|
1888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1890
|
+
|
|
1891
|
+
[[package]]
|
|
1892
|
+
name = "option-ext"
|
|
1893
|
+
version = "0.2.0"
|
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1896
|
+
|
|
1897
|
+
[[package]]
|
|
1898
|
+
name = "ordered-float"
|
|
1899
|
+
version = "2.10.1"
|
|
1900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
|
1902
|
+
dependencies = [
|
|
1903
|
+
"num-traits",
|
|
1904
|
+
]
|
|
1905
|
+
|
|
1906
|
+
[[package]]
|
|
1907
|
+
name = "parking_lot"
|
|
1908
|
+
version = "0.12.5"
|
|
1909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1911
|
+
dependencies = [
|
|
1912
|
+
"lock_api",
|
|
1913
|
+
"parking_lot_core",
|
|
1914
|
+
]
|
|
1915
|
+
|
|
1916
|
+
[[package]]
|
|
1917
|
+
name = "parking_lot_core"
|
|
1918
|
+
version = "0.9.12"
|
|
1919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1921
|
+
dependencies = [
|
|
1922
|
+
"cfg-if",
|
|
1923
|
+
"libc",
|
|
1924
|
+
"redox_syscall",
|
|
1925
|
+
"smallvec",
|
|
1926
|
+
"windows-link",
|
|
1927
|
+
]
|
|
1928
|
+
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "parquet"
|
|
1931
|
+
version = "58.3.0"
|
|
1932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
+
checksum = "5dafa7d01085b62a47dd0c1829550a0a36710ea9c4fe358a05a85477cec8a908"
|
|
1934
|
+
dependencies = [
|
|
1935
|
+
"ahash",
|
|
1936
|
+
"arrow-array",
|
|
1937
|
+
"arrow-buffer",
|
|
1938
|
+
"arrow-data",
|
|
1939
|
+
"arrow-ipc",
|
|
1940
|
+
"arrow-schema",
|
|
1941
|
+
"arrow-select",
|
|
1942
|
+
"base64",
|
|
1943
|
+
"bytes",
|
|
1944
|
+
"chrono",
|
|
1945
|
+
"flate2",
|
|
1946
|
+
"futures",
|
|
1947
|
+
"half",
|
|
1948
|
+
"hashbrown 0.17.1",
|
|
1949
|
+
"lz4_flex",
|
|
1950
|
+
"num-bigint",
|
|
1951
|
+
"num-integer",
|
|
1952
|
+
"num-traits",
|
|
1953
|
+
"object_store",
|
|
1954
|
+
"paste",
|
|
1955
|
+
"seq-macro",
|
|
1956
|
+
"snap",
|
|
1957
|
+
"thrift",
|
|
1958
|
+
"tokio",
|
|
1959
|
+
"twox-hash",
|
|
1960
|
+
"zstd",
|
|
1961
|
+
]
|
|
1962
|
+
|
|
1963
|
+
[[package]]
|
|
1964
|
+
name = "paste"
|
|
1965
|
+
version = "1.0.15"
|
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1968
|
+
|
|
1969
|
+
[[package]]
|
|
1970
|
+
name = "percent-encoding"
|
|
1971
|
+
version = "2.3.2"
|
|
1972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1974
|
+
|
|
1975
|
+
[[package]]
|
|
1976
|
+
name = "pin-project-lite"
|
|
1977
|
+
version = "0.2.17"
|
|
1978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1980
|
+
|
|
1981
|
+
[[package]]
|
|
1982
|
+
name = "pkg-config"
|
|
1983
|
+
version = "0.3.33"
|
|
1984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1985
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1986
|
+
|
|
1987
|
+
[[package]]
|
|
1988
|
+
name = "plotters"
|
|
1989
|
+
version = "0.3.7"
|
|
1990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1992
|
+
dependencies = [
|
|
1993
|
+
"num-traits",
|
|
1994
|
+
"plotters-backend",
|
|
1995
|
+
"plotters-svg",
|
|
1996
|
+
"wasm-bindgen",
|
|
1997
|
+
"web-sys",
|
|
1998
|
+
]
|
|
1999
|
+
|
|
2000
|
+
[[package]]
|
|
2001
|
+
name = "plotters-backend"
|
|
2002
|
+
version = "0.3.7"
|
|
2003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
2005
|
+
|
|
2006
|
+
[[package]]
|
|
2007
|
+
name = "plotters-svg"
|
|
2008
|
+
version = "0.3.7"
|
|
2009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
2011
|
+
dependencies = [
|
|
2012
|
+
"plotters-backend",
|
|
2013
|
+
]
|
|
2014
|
+
|
|
2015
|
+
[[package]]
|
|
2016
|
+
name = "portable-atomic"
|
|
2017
|
+
version = "1.13.1"
|
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
2020
|
+
|
|
2021
|
+
[[package]]
|
|
2022
|
+
name = "potential_utf"
|
|
2023
|
+
version = "0.1.5"
|
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
2026
|
+
dependencies = [
|
|
2027
|
+
"zerovec",
|
|
2028
|
+
]
|
|
2029
|
+
|
|
2030
|
+
[[package]]
|
|
2031
|
+
name = "pourpoint"
|
|
2032
|
+
version = "0.1.189"
|
|
2033
|
+
dependencies = [
|
|
2034
|
+
"anyhow",
|
|
2035
|
+
"assert_cmd",
|
|
2036
|
+
"clap",
|
|
2037
|
+
"csv",
|
|
2038
|
+
"geo",
|
|
2039
|
+
"pourpoint-core",
|
|
2040
|
+
"pourpoint-gdal",
|
|
2041
|
+
"serde",
|
|
2042
|
+
"serde_json",
|
|
2043
|
+
"tempfile",
|
|
2044
|
+
"tracing",
|
|
2045
|
+
"tracing-subscriber",
|
|
2046
|
+
]
|
|
2047
|
+
|
|
2048
|
+
[[package]]
|
|
2049
|
+
name = "pourpoint-core"
|
|
2050
|
+
version = "0.1.0"
|
|
2051
|
+
dependencies = [
|
|
2052
|
+
"arrow",
|
|
2053
|
+
"bytes",
|
|
2054
|
+
"chrono",
|
|
2055
|
+
"criterion",
|
|
2056
|
+
"dashmap",
|
|
2057
|
+
"dhat",
|
|
2058
|
+
"dirs",
|
|
2059
|
+
"futures-util",
|
|
2060
|
+
"geo",
|
|
2061
|
+
"geozero",
|
|
2062
|
+
"hfx",
|
|
2063
|
+
"moka",
|
|
2064
|
+
"object_store",
|
|
2065
|
+
"parquet",
|
|
2066
|
+
"pourpoint-core",
|
|
2067
|
+
"rayon",
|
|
2068
|
+
"serde",
|
|
2069
|
+
"serde_json",
|
|
2070
|
+
"tempfile",
|
|
2071
|
+
"thiserror 2.0.18",
|
|
2072
|
+
"tiff",
|
|
2073
|
+
"tokio",
|
|
2074
|
+
"tracing",
|
|
2075
|
+
"tracing-core",
|
|
2076
|
+
"tracing-subscriber",
|
|
2077
|
+
"url",
|
|
2078
|
+
]
|
|
2079
|
+
|
|
2080
|
+
[[package]]
|
|
2081
|
+
name = "pourpoint-gdal"
|
|
2082
|
+
version = "0.1.0"
|
|
2083
|
+
dependencies = [
|
|
2084
|
+
"gdal",
|
|
2085
|
+
"geo",
|
|
2086
|
+
"geozero",
|
|
2087
|
+
"hfx",
|
|
2088
|
+
"pourpoint-core",
|
|
2089
|
+
"serde",
|
|
2090
|
+
"serde_json",
|
|
2091
|
+
"tempfile",
|
|
2092
|
+
"thiserror 2.0.18",
|
|
2093
|
+
"tracing",
|
|
2094
|
+
]
|
|
2095
|
+
|
|
2096
|
+
[[package]]
|
|
2097
|
+
name = "pourpoint-python"
|
|
2098
|
+
version = "0.1.0"
|
|
2099
|
+
dependencies = [
|
|
2100
|
+
"gdal",
|
|
2101
|
+
"gdal-sys",
|
|
2102
|
+
"geo",
|
|
2103
|
+
"hfx",
|
|
2104
|
+
"log",
|
|
2105
|
+
"pourpoint-core",
|
|
2106
|
+
"pourpoint-gdal",
|
|
2107
|
+
"pyo3",
|
|
2108
|
+
"pyo3-log",
|
|
2109
|
+
"serde_json",
|
|
2110
|
+
"strsim",
|
|
2111
|
+
"thiserror 2.0.18",
|
|
2112
|
+
"tracing",
|
|
2113
|
+
"tracing-log",
|
|
2114
|
+
"tracing-subscriber",
|
|
2115
|
+
]
|
|
2116
|
+
|
|
2117
|
+
[[package]]
|
|
2118
|
+
name = "ppv-lite86"
|
|
2119
|
+
version = "0.2.21"
|
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2122
|
+
dependencies = [
|
|
2123
|
+
"zerocopy",
|
|
2124
|
+
]
|
|
2125
|
+
|
|
2126
|
+
[[package]]
|
|
2127
|
+
name = "predicates"
|
|
2128
|
+
version = "3.1.4"
|
|
2129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2130
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
2131
|
+
dependencies = [
|
|
2132
|
+
"anstyle",
|
|
2133
|
+
"difflib",
|
|
2134
|
+
"predicates-core",
|
|
2135
|
+
]
|
|
2136
|
+
|
|
2137
|
+
[[package]]
|
|
2138
|
+
name = "predicates-core"
|
|
2139
|
+
version = "1.0.10"
|
|
2140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
2142
|
+
|
|
2143
|
+
[[package]]
|
|
2144
|
+
name = "predicates-tree"
|
|
2145
|
+
version = "1.0.13"
|
|
2146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2147
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
2148
|
+
dependencies = [
|
|
2149
|
+
"predicates-core",
|
|
2150
|
+
"termtree",
|
|
2151
|
+
]
|
|
2152
|
+
|
|
2153
|
+
[[package]]
|
|
2154
|
+
name = "proc-macro2"
|
|
2155
|
+
version = "1.0.106"
|
|
2156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
2158
|
+
dependencies = [
|
|
2159
|
+
"unicode-ident",
|
|
2160
|
+
]
|
|
2161
|
+
|
|
2162
|
+
[[package]]
|
|
2163
|
+
name = "pyo3"
|
|
2164
|
+
version = "0.24.2"
|
|
2165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2166
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
2167
|
+
dependencies = [
|
|
2168
|
+
"cfg-if",
|
|
2169
|
+
"indoc",
|
|
2170
|
+
"libc",
|
|
2171
|
+
"memoffset",
|
|
2172
|
+
"once_cell",
|
|
2173
|
+
"portable-atomic",
|
|
2174
|
+
"pyo3-build-config",
|
|
2175
|
+
"pyo3-ffi",
|
|
2176
|
+
"pyo3-macros",
|
|
2177
|
+
"unindent",
|
|
2178
|
+
]
|
|
2179
|
+
|
|
2180
|
+
[[package]]
|
|
2181
|
+
name = "pyo3-build-config"
|
|
2182
|
+
version = "0.24.2"
|
|
2183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2184
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
2185
|
+
dependencies = [
|
|
2186
|
+
"once_cell",
|
|
2187
|
+
"target-lexicon",
|
|
2188
|
+
]
|
|
2189
|
+
|
|
2190
|
+
[[package]]
|
|
2191
|
+
name = "pyo3-ffi"
|
|
2192
|
+
version = "0.24.2"
|
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
2195
|
+
dependencies = [
|
|
2196
|
+
"libc",
|
|
2197
|
+
"pyo3-build-config",
|
|
2198
|
+
]
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "pyo3-log"
|
|
2202
|
+
version = "0.12.4"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "45192e5e4a4d2505587e27806c7b710c231c40c56f3bfc19535d0bb25df52264"
|
|
2205
|
+
dependencies = [
|
|
2206
|
+
"arc-swap",
|
|
2207
|
+
"log",
|
|
2208
|
+
"pyo3",
|
|
2209
|
+
]
|
|
2210
|
+
|
|
2211
|
+
[[package]]
|
|
2212
|
+
name = "pyo3-macros"
|
|
2213
|
+
version = "0.24.2"
|
|
2214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2215
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
2216
|
+
dependencies = [
|
|
2217
|
+
"proc-macro2",
|
|
2218
|
+
"pyo3-macros-backend",
|
|
2219
|
+
"quote",
|
|
2220
|
+
"syn",
|
|
2221
|
+
]
|
|
2222
|
+
|
|
2223
|
+
[[package]]
|
|
2224
|
+
name = "pyo3-macros-backend"
|
|
2225
|
+
version = "0.24.2"
|
|
2226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
2228
|
+
dependencies = [
|
|
2229
|
+
"heck",
|
|
2230
|
+
"proc-macro2",
|
|
2231
|
+
"pyo3-build-config",
|
|
2232
|
+
"quote",
|
|
2233
|
+
"syn",
|
|
2234
|
+
]
|
|
2235
|
+
|
|
2236
|
+
[[package]]
|
|
2237
|
+
name = "quick-xml"
|
|
2238
|
+
version = "0.39.4"
|
|
2239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2240
|
+
checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
|
|
2241
|
+
dependencies = [
|
|
2242
|
+
"memchr",
|
|
2243
|
+
"serde",
|
|
2244
|
+
]
|
|
2245
|
+
|
|
2246
|
+
[[package]]
|
|
2247
|
+
name = "quinn"
|
|
2248
|
+
version = "0.11.9"
|
|
2249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2250
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2251
|
+
dependencies = [
|
|
2252
|
+
"bytes",
|
|
2253
|
+
"cfg_aliases",
|
|
2254
|
+
"pin-project-lite",
|
|
2255
|
+
"quinn-proto",
|
|
2256
|
+
"quinn-udp",
|
|
2257
|
+
"rustc-hash 2.1.3",
|
|
2258
|
+
"rustls",
|
|
2259
|
+
"socket2",
|
|
2260
|
+
"thiserror 2.0.18",
|
|
2261
|
+
"tokio",
|
|
2262
|
+
"tracing",
|
|
2263
|
+
"web-time",
|
|
2264
|
+
]
|
|
2265
|
+
|
|
2266
|
+
[[package]]
|
|
2267
|
+
name = "quinn-proto"
|
|
2268
|
+
version = "0.11.14"
|
|
2269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2270
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
2271
|
+
dependencies = [
|
|
2272
|
+
"bytes",
|
|
2273
|
+
"getrandom 0.3.4",
|
|
2274
|
+
"lru-slab",
|
|
2275
|
+
"rand 0.9.4",
|
|
2276
|
+
"ring",
|
|
2277
|
+
"rustc-hash 2.1.3",
|
|
2278
|
+
"rustls",
|
|
2279
|
+
"rustls-pki-types",
|
|
2280
|
+
"slab",
|
|
2281
|
+
"thiserror 2.0.18",
|
|
2282
|
+
"tinyvec",
|
|
2283
|
+
"tracing",
|
|
2284
|
+
"web-time",
|
|
2285
|
+
]
|
|
2286
|
+
|
|
2287
|
+
[[package]]
|
|
2288
|
+
name = "quinn-udp"
|
|
2289
|
+
version = "0.5.14"
|
|
2290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2291
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2292
|
+
dependencies = [
|
|
2293
|
+
"cfg_aliases",
|
|
2294
|
+
"libc",
|
|
2295
|
+
"once_cell",
|
|
2296
|
+
"socket2",
|
|
2297
|
+
"tracing",
|
|
2298
|
+
"windows-sys 0.60.2",
|
|
2299
|
+
]
|
|
2300
|
+
|
|
2301
|
+
[[package]]
|
|
2302
|
+
name = "quote"
|
|
2303
|
+
version = "1.0.46"
|
|
2304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
2306
|
+
dependencies = [
|
|
2307
|
+
"proc-macro2",
|
|
2308
|
+
]
|
|
2309
|
+
|
|
2310
|
+
[[package]]
|
|
2311
|
+
name = "r-efi"
|
|
2312
|
+
version = "5.3.0"
|
|
2313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2315
|
+
|
|
2316
|
+
[[package]]
|
|
2317
|
+
name = "r-efi"
|
|
2318
|
+
version = "6.0.0"
|
|
2319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2320
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2321
|
+
|
|
2322
|
+
[[package]]
|
|
2323
|
+
name = "rand"
|
|
2324
|
+
version = "0.9.4"
|
|
2325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2326
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2327
|
+
dependencies = [
|
|
2328
|
+
"rand_chacha",
|
|
2329
|
+
"rand_core 0.9.5",
|
|
2330
|
+
]
|
|
2331
|
+
|
|
2332
|
+
[[package]]
|
|
2333
|
+
name = "rand"
|
|
2334
|
+
version = "0.10.1"
|
|
2335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2336
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
2337
|
+
dependencies = [
|
|
2338
|
+
"chacha20",
|
|
2339
|
+
"getrandom 0.4.3",
|
|
2340
|
+
"rand_core 0.10.1",
|
|
2341
|
+
]
|
|
2342
|
+
|
|
2343
|
+
[[package]]
|
|
2344
|
+
name = "rand_chacha"
|
|
2345
|
+
version = "0.9.0"
|
|
2346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2347
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2348
|
+
dependencies = [
|
|
2349
|
+
"ppv-lite86",
|
|
2350
|
+
"rand_core 0.9.5",
|
|
2351
|
+
]
|
|
2352
|
+
|
|
2353
|
+
[[package]]
|
|
2354
|
+
name = "rand_core"
|
|
2355
|
+
version = "0.9.5"
|
|
2356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2358
|
+
dependencies = [
|
|
2359
|
+
"getrandom 0.3.4",
|
|
2360
|
+
]
|
|
2361
|
+
|
|
2362
|
+
[[package]]
|
|
2363
|
+
name = "rand_core"
|
|
2364
|
+
version = "0.10.1"
|
|
2365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2366
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
2367
|
+
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "rayon"
|
|
2370
|
+
version = "1.12.0"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
2373
|
+
dependencies = [
|
|
2374
|
+
"either",
|
|
2375
|
+
"rayon-core",
|
|
2376
|
+
]
|
|
2377
|
+
|
|
2378
|
+
[[package]]
|
|
2379
|
+
name = "rayon-core"
|
|
2380
|
+
version = "1.13.0"
|
|
2381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2383
|
+
dependencies = [
|
|
2384
|
+
"crossbeam-deque",
|
|
2385
|
+
"crossbeam-utils",
|
|
2386
|
+
]
|
|
2387
|
+
|
|
2388
|
+
[[package]]
|
|
2389
|
+
name = "redox_syscall"
|
|
2390
|
+
version = "0.5.18"
|
|
2391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2393
|
+
dependencies = [
|
|
2394
|
+
"bitflags",
|
|
2395
|
+
]
|
|
2396
|
+
|
|
2397
|
+
[[package]]
|
|
2398
|
+
name = "redox_users"
|
|
2399
|
+
version = "0.4.6"
|
|
2400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2402
|
+
dependencies = [
|
|
2403
|
+
"getrandom 0.2.17",
|
|
2404
|
+
"libredox",
|
|
2405
|
+
"thiserror 1.0.69",
|
|
2406
|
+
]
|
|
2407
|
+
|
|
2408
|
+
[[package]]
|
|
2409
|
+
name = "regex"
|
|
2410
|
+
version = "1.12.4"
|
|
2411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2412
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
2413
|
+
dependencies = [
|
|
2414
|
+
"aho-corasick",
|
|
2415
|
+
"memchr",
|
|
2416
|
+
"regex-automata",
|
|
2417
|
+
"regex-syntax",
|
|
2418
|
+
]
|
|
2419
|
+
|
|
2420
|
+
[[package]]
|
|
2421
|
+
name = "regex-automata"
|
|
2422
|
+
version = "0.4.14"
|
|
2423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2425
|
+
dependencies = [
|
|
2426
|
+
"aho-corasick",
|
|
2427
|
+
"memchr",
|
|
2428
|
+
"regex-syntax",
|
|
2429
|
+
]
|
|
2430
|
+
|
|
2431
|
+
[[package]]
|
|
2432
|
+
name = "regex-syntax"
|
|
2433
|
+
version = "0.8.11"
|
|
2434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2435
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
2436
|
+
|
|
2437
|
+
[[package]]
|
|
2438
|
+
name = "reqwest"
|
|
2439
|
+
version = "0.12.28"
|
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
2442
|
+
dependencies = [
|
|
2443
|
+
"base64",
|
|
2444
|
+
"bytes",
|
|
2445
|
+
"futures-core",
|
|
2446
|
+
"futures-util",
|
|
2447
|
+
"h2",
|
|
2448
|
+
"http",
|
|
2449
|
+
"http-body",
|
|
2450
|
+
"http-body-util",
|
|
2451
|
+
"hyper",
|
|
2452
|
+
"hyper-rustls",
|
|
2453
|
+
"hyper-util",
|
|
2454
|
+
"js-sys",
|
|
2455
|
+
"log",
|
|
2456
|
+
"percent-encoding",
|
|
2457
|
+
"pin-project-lite",
|
|
2458
|
+
"quinn",
|
|
2459
|
+
"rustls",
|
|
2460
|
+
"rustls-native-certs",
|
|
2461
|
+
"rustls-pki-types",
|
|
2462
|
+
"serde",
|
|
2463
|
+
"serde_json",
|
|
2464
|
+
"serde_urlencoded",
|
|
2465
|
+
"sync_wrapper",
|
|
2466
|
+
"tokio",
|
|
2467
|
+
"tokio-rustls",
|
|
2468
|
+
"tokio-util",
|
|
2469
|
+
"tower",
|
|
2470
|
+
"tower-http",
|
|
2471
|
+
"tower-service",
|
|
2472
|
+
"url",
|
|
2473
|
+
"wasm-bindgen",
|
|
2474
|
+
"wasm-bindgen-futures",
|
|
2475
|
+
"wasm-streams",
|
|
2476
|
+
"web-sys",
|
|
2477
|
+
]
|
|
2478
|
+
|
|
2479
|
+
[[package]]
|
|
2480
|
+
name = "ring"
|
|
2481
|
+
version = "0.17.14"
|
|
2482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2483
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2484
|
+
dependencies = [
|
|
2485
|
+
"cc",
|
|
2486
|
+
"cfg-if",
|
|
2487
|
+
"getrandom 0.2.17",
|
|
2488
|
+
"libc",
|
|
2489
|
+
"untrusted",
|
|
2490
|
+
"windows-sys 0.52.0",
|
|
2491
|
+
]
|
|
2492
|
+
|
|
2493
|
+
[[package]]
|
|
2494
|
+
name = "robust"
|
|
2495
|
+
version = "1.2.0"
|
|
2496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2497
|
+
checksum = "4e27ee8bb91ca0adcf0ecb116293afa12d393f9c2b9b9cd54d33e8078fe19839"
|
|
2498
|
+
|
|
2499
|
+
[[package]]
|
|
2500
|
+
name = "rstar"
|
|
2501
|
+
version = "0.12.2"
|
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
+
checksum = "421400d13ccfd26dfa5858199c30a5d76f9c54e0dba7575273025b43c5175dbb"
|
|
2504
|
+
dependencies = [
|
|
2505
|
+
"heapless",
|
|
2506
|
+
"num-traits",
|
|
2507
|
+
"smallvec",
|
|
2508
|
+
]
|
|
2509
|
+
|
|
2510
|
+
[[package]]
|
|
2511
|
+
name = "rustc-demangle"
|
|
2512
|
+
version = "0.1.27"
|
|
2513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2514
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
2515
|
+
|
|
2516
|
+
[[package]]
|
|
2517
|
+
name = "rustc-hash"
|
|
2518
|
+
version = "1.1.0"
|
|
2519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2521
|
+
|
|
2522
|
+
[[package]]
|
|
2523
|
+
name = "rustc-hash"
|
|
2524
|
+
version = "2.1.3"
|
|
2525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2526
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
2527
|
+
|
|
2528
|
+
[[package]]
|
|
2529
|
+
name = "rustc_version"
|
|
2530
|
+
version = "0.4.1"
|
|
2531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2532
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2533
|
+
dependencies = [
|
|
2534
|
+
"semver",
|
|
2535
|
+
]
|
|
2536
|
+
|
|
2537
|
+
[[package]]
|
|
2538
|
+
name = "rustix"
|
|
2539
|
+
version = "1.1.4"
|
|
2540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2541
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2542
|
+
dependencies = [
|
|
2543
|
+
"bitflags",
|
|
2544
|
+
"errno",
|
|
2545
|
+
"libc",
|
|
2546
|
+
"linux-raw-sys",
|
|
2547
|
+
"windows-sys 0.61.2",
|
|
2548
|
+
]
|
|
2549
|
+
|
|
2550
|
+
[[package]]
|
|
2551
|
+
name = "rustls"
|
|
2552
|
+
version = "0.23.41"
|
|
2553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2554
|
+
checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
|
|
2555
|
+
dependencies = [
|
|
2556
|
+
"once_cell",
|
|
2557
|
+
"ring",
|
|
2558
|
+
"rustls-pki-types",
|
|
2559
|
+
"rustls-webpki",
|
|
2560
|
+
"subtle",
|
|
2561
|
+
"zeroize",
|
|
2562
|
+
]
|
|
2563
|
+
|
|
2564
|
+
[[package]]
|
|
2565
|
+
name = "rustls-native-certs"
|
|
2566
|
+
version = "0.8.4"
|
|
2567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2568
|
+
checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
|
|
2569
|
+
dependencies = [
|
|
2570
|
+
"openssl-probe",
|
|
2571
|
+
"rustls-pki-types",
|
|
2572
|
+
"schannel",
|
|
2573
|
+
"security-framework",
|
|
2574
|
+
]
|
|
2575
|
+
|
|
2576
|
+
[[package]]
|
|
2577
|
+
name = "rustls-pki-types"
|
|
2578
|
+
version = "1.14.1"
|
|
2579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
2581
|
+
dependencies = [
|
|
2582
|
+
"web-time",
|
|
2583
|
+
"zeroize",
|
|
2584
|
+
]
|
|
2585
|
+
|
|
2586
|
+
[[package]]
|
|
2587
|
+
name = "rustls-webpki"
|
|
2588
|
+
version = "0.103.13"
|
|
2589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2591
|
+
dependencies = [
|
|
2592
|
+
"ring",
|
|
2593
|
+
"rustls-pki-types",
|
|
2594
|
+
"untrusted",
|
|
2595
|
+
]
|
|
2596
|
+
|
|
2597
|
+
[[package]]
|
|
2598
|
+
name = "rustversion"
|
|
2599
|
+
version = "1.0.22"
|
|
2600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2601
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2602
|
+
|
|
2603
|
+
[[package]]
|
|
2604
|
+
name = "ryu"
|
|
2605
|
+
version = "1.0.23"
|
|
2606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2607
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2608
|
+
|
|
2609
|
+
[[package]]
|
|
2610
|
+
name = "same-file"
|
|
2611
|
+
version = "1.0.6"
|
|
2612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2614
|
+
dependencies = [
|
|
2615
|
+
"winapi-util",
|
|
2616
|
+
]
|
|
2617
|
+
|
|
2618
|
+
[[package]]
|
|
2619
|
+
name = "schannel"
|
|
2620
|
+
version = "0.1.29"
|
|
2621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
2623
|
+
dependencies = [
|
|
2624
|
+
"windows-sys 0.61.2",
|
|
2625
|
+
]
|
|
2626
|
+
|
|
2627
|
+
[[package]]
|
|
2628
|
+
name = "scopeguard"
|
|
2629
|
+
version = "1.2.0"
|
|
2630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2632
|
+
|
|
2633
|
+
[[package]]
|
|
2634
|
+
name = "scroll"
|
|
2635
|
+
version = "0.11.0"
|
|
2636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2637
|
+
checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da"
|
|
2638
|
+
|
|
2639
|
+
[[package]]
|
|
2640
|
+
name = "security-framework"
|
|
2641
|
+
version = "3.7.0"
|
|
2642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2643
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
2644
|
+
dependencies = [
|
|
2645
|
+
"bitflags",
|
|
2646
|
+
"core-foundation",
|
|
2647
|
+
"core-foundation-sys",
|
|
2648
|
+
"libc",
|
|
2649
|
+
"security-framework-sys",
|
|
2650
|
+
]
|
|
2651
|
+
|
|
2652
|
+
[[package]]
|
|
2653
|
+
name = "security-framework-sys"
|
|
2654
|
+
version = "2.17.0"
|
|
2655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2656
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
2657
|
+
dependencies = [
|
|
2658
|
+
"core-foundation-sys",
|
|
2659
|
+
"libc",
|
|
2660
|
+
]
|
|
2661
|
+
|
|
2662
|
+
[[package]]
|
|
2663
|
+
name = "semver"
|
|
2664
|
+
version = "1.0.28"
|
|
2665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2666
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2667
|
+
|
|
2668
|
+
[[package]]
|
|
2669
|
+
name = "seq-macro"
|
|
2670
|
+
version = "0.3.6"
|
|
2671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2672
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
2673
|
+
|
|
2674
|
+
[[package]]
|
|
2675
|
+
name = "serde"
|
|
2676
|
+
version = "1.0.228"
|
|
2677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2679
|
+
dependencies = [
|
|
2680
|
+
"serde_core",
|
|
2681
|
+
"serde_derive",
|
|
2682
|
+
]
|
|
2683
|
+
|
|
2684
|
+
[[package]]
|
|
2685
|
+
name = "serde_core"
|
|
2686
|
+
version = "1.0.228"
|
|
2687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2689
|
+
dependencies = [
|
|
2690
|
+
"serde_derive",
|
|
2691
|
+
]
|
|
2692
|
+
|
|
2693
|
+
[[package]]
|
|
2694
|
+
name = "serde_derive"
|
|
2695
|
+
version = "1.0.228"
|
|
2696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2697
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2698
|
+
dependencies = [
|
|
2699
|
+
"proc-macro2",
|
|
2700
|
+
"quote",
|
|
2701
|
+
"syn",
|
|
2702
|
+
]
|
|
2703
|
+
|
|
2704
|
+
[[package]]
|
|
2705
|
+
name = "serde_json"
|
|
2706
|
+
version = "1.0.150"
|
|
2707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2708
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
2709
|
+
dependencies = [
|
|
2710
|
+
"itoa",
|
|
2711
|
+
"memchr",
|
|
2712
|
+
"serde",
|
|
2713
|
+
"serde_core",
|
|
2714
|
+
"zmij",
|
|
2715
|
+
]
|
|
2716
|
+
|
|
2717
|
+
[[package]]
|
|
2718
|
+
name = "serde_urlencoded"
|
|
2719
|
+
version = "0.7.1"
|
|
2720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2721
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2722
|
+
dependencies = [
|
|
2723
|
+
"form_urlencoded",
|
|
2724
|
+
"itoa",
|
|
2725
|
+
"ryu",
|
|
2726
|
+
"serde",
|
|
2727
|
+
]
|
|
2728
|
+
|
|
2729
|
+
[[package]]
|
|
2730
|
+
name = "sharded-slab"
|
|
2731
|
+
version = "0.1.7"
|
|
2732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2733
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
2734
|
+
dependencies = [
|
|
2735
|
+
"lazy_static",
|
|
2736
|
+
]
|
|
2737
|
+
|
|
2738
|
+
[[package]]
|
|
2739
|
+
name = "shlex"
|
|
2740
|
+
version = "2.0.1"
|
|
2741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2742
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
2743
|
+
|
|
2744
|
+
[[package]]
|
|
2745
|
+
name = "simd-adler32"
|
|
2746
|
+
version = "0.3.9"
|
|
2747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
2749
|
+
|
|
2750
|
+
[[package]]
|
|
2751
|
+
name = "slab"
|
|
2752
|
+
version = "0.4.12"
|
|
2753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2754
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2755
|
+
|
|
2756
|
+
[[package]]
|
|
2757
|
+
name = "smallvec"
|
|
2758
|
+
version = "1.15.2"
|
|
2759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2760
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
2761
|
+
|
|
2762
|
+
[[package]]
|
|
2763
|
+
name = "snap"
|
|
2764
|
+
version = "1.1.1"
|
|
2765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2766
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
2767
|
+
|
|
2768
|
+
[[package]]
|
|
2769
|
+
name = "socket2"
|
|
2770
|
+
version = "0.6.4"
|
|
2771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2772
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
2773
|
+
dependencies = [
|
|
2774
|
+
"libc",
|
|
2775
|
+
"windows-sys 0.61.2",
|
|
2776
|
+
]
|
|
2777
|
+
|
|
2778
|
+
[[package]]
|
|
2779
|
+
name = "spade"
|
|
2780
|
+
version = "2.15.1"
|
|
2781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2782
|
+
checksum = "9699399fd9349b00b184f5635b074f9ec93afffef30c853f8c875b32c0f8c7fa"
|
|
2783
|
+
dependencies = [
|
|
2784
|
+
"hashbrown 0.16.1",
|
|
2785
|
+
"num-traits",
|
|
2786
|
+
"robust",
|
|
2787
|
+
"smallvec",
|
|
2788
|
+
]
|
|
2789
|
+
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "stable_deref_trait"
|
|
2792
|
+
version = "1.2.1"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2795
|
+
|
|
2796
|
+
[[package]]
|
|
2797
|
+
name = "strsim"
|
|
2798
|
+
version = "0.11.1"
|
|
2799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2801
|
+
|
|
2802
|
+
[[package]]
|
|
2803
|
+
name = "subtle"
|
|
2804
|
+
version = "2.6.1"
|
|
2805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2806
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2807
|
+
|
|
2808
|
+
[[package]]
|
|
2809
|
+
name = "syn"
|
|
2810
|
+
version = "2.0.118"
|
|
2811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
2813
|
+
dependencies = [
|
|
2814
|
+
"proc-macro2",
|
|
2815
|
+
"quote",
|
|
2816
|
+
"unicode-ident",
|
|
2817
|
+
]
|
|
2818
|
+
|
|
2819
|
+
[[package]]
|
|
2820
|
+
name = "sync_wrapper"
|
|
2821
|
+
version = "1.0.2"
|
|
2822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2823
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2824
|
+
dependencies = [
|
|
2825
|
+
"futures-core",
|
|
2826
|
+
]
|
|
2827
|
+
|
|
2828
|
+
[[package]]
|
|
2829
|
+
name = "synstructure"
|
|
2830
|
+
version = "0.13.2"
|
|
2831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2832
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2833
|
+
dependencies = [
|
|
2834
|
+
"proc-macro2",
|
|
2835
|
+
"quote",
|
|
2836
|
+
"syn",
|
|
2837
|
+
]
|
|
2838
|
+
|
|
2839
|
+
[[package]]
|
|
2840
|
+
name = "tagptr"
|
|
2841
|
+
version = "0.2.0"
|
|
2842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
+
checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
|
|
2844
|
+
|
|
2845
|
+
[[package]]
|
|
2846
|
+
name = "target-lexicon"
|
|
2847
|
+
version = "0.13.5"
|
|
2848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
2850
|
+
|
|
2851
|
+
[[package]]
|
|
2852
|
+
name = "tempfile"
|
|
2853
|
+
version = "3.27.0"
|
|
2854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2855
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2856
|
+
dependencies = [
|
|
2857
|
+
"fastrand",
|
|
2858
|
+
"getrandom 0.4.3",
|
|
2859
|
+
"once_cell",
|
|
2860
|
+
"rustix",
|
|
2861
|
+
"windows-sys 0.61.2",
|
|
2862
|
+
]
|
|
2863
|
+
|
|
2864
|
+
[[package]]
|
|
2865
|
+
name = "termtree"
|
|
2866
|
+
version = "0.5.1"
|
|
2867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2868
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
2869
|
+
|
|
2870
|
+
[[package]]
|
|
2871
|
+
name = "thiserror"
|
|
2872
|
+
version = "1.0.69"
|
|
2873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2874
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2875
|
+
dependencies = [
|
|
2876
|
+
"thiserror-impl 1.0.69",
|
|
2877
|
+
]
|
|
2878
|
+
|
|
2879
|
+
[[package]]
|
|
2880
|
+
name = "thiserror"
|
|
2881
|
+
version = "2.0.18"
|
|
2882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2883
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2884
|
+
dependencies = [
|
|
2885
|
+
"thiserror-impl 2.0.18",
|
|
2886
|
+
]
|
|
2887
|
+
|
|
2888
|
+
[[package]]
|
|
2889
|
+
name = "thiserror-impl"
|
|
2890
|
+
version = "1.0.69"
|
|
2891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2893
|
+
dependencies = [
|
|
2894
|
+
"proc-macro2",
|
|
2895
|
+
"quote",
|
|
2896
|
+
"syn",
|
|
2897
|
+
]
|
|
2898
|
+
|
|
2899
|
+
[[package]]
|
|
2900
|
+
name = "thiserror-impl"
|
|
2901
|
+
version = "2.0.18"
|
|
2902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2903
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2904
|
+
dependencies = [
|
|
2905
|
+
"proc-macro2",
|
|
2906
|
+
"quote",
|
|
2907
|
+
"syn",
|
|
2908
|
+
]
|
|
2909
|
+
|
|
2910
|
+
[[package]]
|
|
2911
|
+
name = "thousands"
|
|
2912
|
+
version = "0.2.0"
|
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
+
checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820"
|
|
2915
|
+
|
|
2916
|
+
[[package]]
|
|
2917
|
+
name = "thread_local"
|
|
2918
|
+
version = "1.1.9"
|
|
2919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2920
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
2921
|
+
dependencies = [
|
|
2922
|
+
"cfg-if",
|
|
2923
|
+
]
|
|
2924
|
+
|
|
2925
|
+
[[package]]
|
|
2926
|
+
name = "thrift"
|
|
2927
|
+
version = "0.17.0"
|
|
2928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2929
|
+
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
|
2930
|
+
dependencies = [
|
|
2931
|
+
"byteorder",
|
|
2932
|
+
"integer-encoding",
|
|
2933
|
+
"ordered-float",
|
|
2934
|
+
]
|
|
2935
|
+
|
|
2936
|
+
[[package]]
|
|
2937
|
+
name = "tiff"
|
|
2938
|
+
version = "0.9.1"
|
|
2939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2940
|
+
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
|
|
2941
|
+
dependencies = [
|
|
2942
|
+
"flate2",
|
|
2943
|
+
"jpeg-decoder",
|
|
2944
|
+
"weezl",
|
|
2945
|
+
]
|
|
2946
|
+
|
|
2947
|
+
[[package]]
|
|
2948
|
+
name = "tiny-keccak"
|
|
2949
|
+
version = "2.0.2"
|
|
2950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2951
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
2952
|
+
dependencies = [
|
|
2953
|
+
"crunchy",
|
|
2954
|
+
]
|
|
2955
|
+
|
|
2956
|
+
[[package]]
|
|
2957
|
+
name = "tinystr"
|
|
2958
|
+
version = "0.8.3"
|
|
2959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2961
|
+
dependencies = [
|
|
2962
|
+
"displaydoc",
|
|
2963
|
+
"zerovec",
|
|
2964
|
+
]
|
|
2965
|
+
|
|
2966
|
+
[[package]]
|
|
2967
|
+
name = "tinytemplate"
|
|
2968
|
+
version = "1.2.1"
|
|
2969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
2971
|
+
dependencies = [
|
|
2972
|
+
"serde",
|
|
2973
|
+
"serde_json",
|
|
2974
|
+
]
|
|
2975
|
+
|
|
2976
|
+
[[package]]
|
|
2977
|
+
name = "tinyvec"
|
|
2978
|
+
version = "1.11.0"
|
|
2979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2980
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
2981
|
+
dependencies = [
|
|
2982
|
+
"tinyvec_macros",
|
|
2983
|
+
]
|
|
2984
|
+
|
|
2985
|
+
[[package]]
|
|
2986
|
+
name = "tinyvec_macros"
|
|
2987
|
+
version = "0.1.1"
|
|
2988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2989
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2990
|
+
|
|
2991
|
+
[[package]]
|
|
2992
|
+
name = "tokio"
|
|
2993
|
+
version = "1.52.3"
|
|
2994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2995
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
2996
|
+
dependencies = [
|
|
2997
|
+
"bytes",
|
|
2998
|
+
"libc",
|
|
2999
|
+
"mio",
|
|
3000
|
+
"pin-project-lite",
|
|
3001
|
+
"socket2",
|
|
3002
|
+
"tokio-macros",
|
|
3003
|
+
"windows-sys 0.61.2",
|
|
3004
|
+
]
|
|
3005
|
+
|
|
3006
|
+
[[package]]
|
|
3007
|
+
name = "tokio-macros"
|
|
3008
|
+
version = "2.7.0"
|
|
3009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3010
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
3011
|
+
dependencies = [
|
|
3012
|
+
"proc-macro2",
|
|
3013
|
+
"quote",
|
|
3014
|
+
"syn",
|
|
3015
|
+
]
|
|
3016
|
+
|
|
3017
|
+
[[package]]
|
|
3018
|
+
name = "tokio-rustls"
|
|
3019
|
+
version = "0.26.4"
|
|
3020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3021
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
3022
|
+
dependencies = [
|
|
3023
|
+
"rustls",
|
|
3024
|
+
"tokio",
|
|
3025
|
+
]
|
|
3026
|
+
|
|
3027
|
+
[[package]]
|
|
3028
|
+
name = "tokio-util"
|
|
3029
|
+
version = "0.7.18"
|
|
3030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3031
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
3032
|
+
dependencies = [
|
|
3033
|
+
"bytes",
|
|
3034
|
+
"futures-core",
|
|
3035
|
+
"futures-sink",
|
|
3036
|
+
"pin-project-lite",
|
|
3037
|
+
"tokio",
|
|
3038
|
+
]
|
|
3039
|
+
|
|
3040
|
+
[[package]]
|
|
3041
|
+
name = "tower"
|
|
3042
|
+
version = "0.5.3"
|
|
3043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3044
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
3045
|
+
dependencies = [
|
|
3046
|
+
"futures-core",
|
|
3047
|
+
"futures-util",
|
|
3048
|
+
"pin-project-lite",
|
|
3049
|
+
"sync_wrapper",
|
|
3050
|
+
"tokio",
|
|
3051
|
+
"tower-layer",
|
|
3052
|
+
"tower-service",
|
|
3053
|
+
]
|
|
3054
|
+
|
|
3055
|
+
[[package]]
|
|
3056
|
+
name = "tower-http"
|
|
3057
|
+
version = "0.6.11"
|
|
3058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
3060
|
+
dependencies = [
|
|
3061
|
+
"bitflags",
|
|
3062
|
+
"bytes",
|
|
3063
|
+
"futures-util",
|
|
3064
|
+
"http",
|
|
3065
|
+
"http-body",
|
|
3066
|
+
"pin-project-lite",
|
|
3067
|
+
"tower",
|
|
3068
|
+
"tower-layer",
|
|
3069
|
+
"tower-service",
|
|
3070
|
+
"url",
|
|
3071
|
+
]
|
|
3072
|
+
|
|
3073
|
+
[[package]]
|
|
3074
|
+
name = "tower-layer"
|
|
3075
|
+
version = "0.3.3"
|
|
3076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3078
|
+
|
|
3079
|
+
[[package]]
|
|
3080
|
+
name = "tower-service"
|
|
3081
|
+
version = "0.3.3"
|
|
3082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3083
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3084
|
+
|
|
3085
|
+
[[package]]
|
|
3086
|
+
name = "tracing"
|
|
3087
|
+
version = "0.1.44"
|
|
3088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3089
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3090
|
+
dependencies = [
|
|
3091
|
+
"log",
|
|
3092
|
+
"pin-project-lite",
|
|
3093
|
+
"tracing-attributes",
|
|
3094
|
+
"tracing-core",
|
|
3095
|
+
]
|
|
3096
|
+
|
|
3097
|
+
[[package]]
|
|
3098
|
+
name = "tracing-attributes"
|
|
3099
|
+
version = "0.1.31"
|
|
3100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3101
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3102
|
+
dependencies = [
|
|
3103
|
+
"proc-macro2",
|
|
3104
|
+
"quote",
|
|
3105
|
+
"syn",
|
|
3106
|
+
]
|
|
3107
|
+
|
|
3108
|
+
[[package]]
|
|
3109
|
+
name = "tracing-core"
|
|
3110
|
+
version = "0.1.36"
|
|
3111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3112
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3113
|
+
dependencies = [
|
|
3114
|
+
"once_cell",
|
|
3115
|
+
"valuable",
|
|
3116
|
+
]
|
|
3117
|
+
|
|
3118
|
+
[[package]]
|
|
3119
|
+
name = "tracing-log"
|
|
3120
|
+
version = "0.2.0"
|
|
3121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3122
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3123
|
+
dependencies = [
|
|
3124
|
+
"log",
|
|
3125
|
+
"once_cell",
|
|
3126
|
+
"tracing-core",
|
|
3127
|
+
]
|
|
3128
|
+
|
|
3129
|
+
[[package]]
|
|
3130
|
+
name = "tracing-subscriber"
|
|
3131
|
+
version = "0.3.23"
|
|
3132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3133
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
3134
|
+
dependencies = [
|
|
3135
|
+
"matchers",
|
|
3136
|
+
"nu-ansi-term",
|
|
3137
|
+
"once_cell",
|
|
3138
|
+
"regex-automata",
|
|
3139
|
+
"sharded-slab",
|
|
3140
|
+
"smallvec",
|
|
3141
|
+
"thread_local",
|
|
3142
|
+
"tracing",
|
|
3143
|
+
"tracing-core",
|
|
3144
|
+
"tracing-log",
|
|
3145
|
+
]
|
|
3146
|
+
|
|
3147
|
+
[[package]]
|
|
3148
|
+
name = "try-lock"
|
|
3149
|
+
version = "0.2.5"
|
|
3150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3151
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3152
|
+
|
|
3153
|
+
[[package]]
|
|
3154
|
+
name = "twox-hash"
|
|
3155
|
+
version = "2.1.2"
|
|
3156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3157
|
+
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
|
3158
|
+
|
|
3159
|
+
[[package]]
|
|
3160
|
+
name = "typenum"
|
|
3161
|
+
version = "1.20.1"
|
|
3162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
3164
|
+
|
|
3165
|
+
[[package]]
|
|
3166
|
+
name = "unicode-ident"
|
|
3167
|
+
version = "1.0.24"
|
|
3168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3169
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3170
|
+
|
|
3171
|
+
[[package]]
|
|
3172
|
+
name = "unindent"
|
|
3173
|
+
version = "0.2.4"
|
|
3174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3175
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3176
|
+
|
|
3177
|
+
[[package]]
|
|
3178
|
+
name = "untrusted"
|
|
3179
|
+
version = "0.9.0"
|
|
3180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3181
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3182
|
+
|
|
3183
|
+
[[package]]
|
|
3184
|
+
name = "url"
|
|
3185
|
+
version = "2.5.8"
|
|
3186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3187
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
3188
|
+
dependencies = [
|
|
3189
|
+
"form_urlencoded",
|
|
3190
|
+
"idna",
|
|
3191
|
+
"percent-encoding",
|
|
3192
|
+
"serde",
|
|
3193
|
+
]
|
|
3194
|
+
|
|
3195
|
+
[[package]]
|
|
3196
|
+
name = "utf8_iter"
|
|
3197
|
+
version = "1.0.4"
|
|
3198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3199
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3200
|
+
|
|
3201
|
+
[[package]]
|
|
3202
|
+
name = "utf8parse"
|
|
3203
|
+
version = "0.2.2"
|
|
3204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3205
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3206
|
+
|
|
3207
|
+
[[package]]
|
|
3208
|
+
name = "uuid"
|
|
3209
|
+
version = "1.23.3"
|
|
3210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3211
|
+
checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
|
|
3212
|
+
dependencies = [
|
|
3213
|
+
"getrandom 0.4.3",
|
|
3214
|
+
"js-sys",
|
|
3215
|
+
"wasm-bindgen",
|
|
3216
|
+
]
|
|
3217
|
+
|
|
3218
|
+
[[package]]
|
|
3219
|
+
name = "valuable"
|
|
3220
|
+
version = "0.1.1"
|
|
3221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3222
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
3223
|
+
|
|
3224
|
+
[[package]]
|
|
3225
|
+
name = "version_check"
|
|
3226
|
+
version = "0.9.5"
|
|
3227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3228
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3229
|
+
|
|
3230
|
+
[[package]]
|
|
3231
|
+
name = "wait-timeout"
|
|
3232
|
+
version = "0.2.1"
|
|
3233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3234
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
3235
|
+
dependencies = [
|
|
3236
|
+
"libc",
|
|
3237
|
+
]
|
|
3238
|
+
|
|
3239
|
+
[[package]]
|
|
3240
|
+
name = "walkdir"
|
|
3241
|
+
version = "2.5.0"
|
|
3242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3244
|
+
dependencies = [
|
|
3245
|
+
"same-file",
|
|
3246
|
+
"winapi-util",
|
|
3247
|
+
]
|
|
3248
|
+
|
|
3249
|
+
[[package]]
|
|
3250
|
+
name = "want"
|
|
3251
|
+
version = "0.3.1"
|
|
3252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3253
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3254
|
+
dependencies = [
|
|
3255
|
+
"try-lock",
|
|
3256
|
+
]
|
|
3257
|
+
|
|
3258
|
+
[[package]]
|
|
3259
|
+
name = "wasi"
|
|
3260
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3262
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3263
|
+
|
|
3264
|
+
[[package]]
|
|
3265
|
+
name = "wasip2"
|
|
3266
|
+
version = "1.0.4+wasi-0.2.12"
|
|
3267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3268
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
3269
|
+
dependencies = [
|
|
3270
|
+
"wit-bindgen",
|
|
3271
|
+
]
|
|
3272
|
+
|
|
3273
|
+
[[package]]
|
|
3274
|
+
name = "wasm-bindgen"
|
|
3275
|
+
version = "0.2.126"
|
|
3276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3277
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
3278
|
+
dependencies = [
|
|
3279
|
+
"cfg-if",
|
|
3280
|
+
"once_cell",
|
|
3281
|
+
"rustversion",
|
|
3282
|
+
"wasm-bindgen-macro",
|
|
3283
|
+
"wasm-bindgen-shared",
|
|
3284
|
+
]
|
|
3285
|
+
|
|
3286
|
+
[[package]]
|
|
3287
|
+
name = "wasm-bindgen-futures"
|
|
3288
|
+
version = "0.4.76"
|
|
3289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3290
|
+
checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
|
|
3291
|
+
dependencies = [
|
|
3292
|
+
"js-sys",
|
|
3293
|
+
"wasm-bindgen",
|
|
3294
|
+
]
|
|
3295
|
+
|
|
3296
|
+
[[package]]
|
|
3297
|
+
name = "wasm-bindgen-macro"
|
|
3298
|
+
version = "0.2.126"
|
|
3299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3300
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
3301
|
+
dependencies = [
|
|
3302
|
+
"quote",
|
|
3303
|
+
"wasm-bindgen-macro-support",
|
|
3304
|
+
]
|
|
3305
|
+
|
|
3306
|
+
[[package]]
|
|
3307
|
+
name = "wasm-bindgen-macro-support"
|
|
3308
|
+
version = "0.2.126"
|
|
3309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3310
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
3311
|
+
dependencies = [
|
|
3312
|
+
"bumpalo",
|
|
3313
|
+
"proc-macro2",
|
|
3314
|
+
"quote",
|
|
3315
|
+
"syn",
|
|
3316
|
+
"wasm-bindgen-shared",
|
|
3317
|
+
]
|
|
3318
|
+
|
|
3319
|
+
[[package]]
|
|
3320
|
+
name = "wasm-bindgen-shared"
|
|
3321
|
+
version = "0.2.126"
|
|
3322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3323
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
3324
|
+
dependencies = [
|
|
3325
|
+
"unicode-ident",
|
|
3326
|
+
]
|
|
3327
|
+
|
|
3328
|
+
[[package]]
|
|
3329
|
+
name = "wasm-streams"
|
|
3330
|
+
version = "0.4.2"
|
|
3331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3332
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
3333
|
+
dependencies = [
|
|
3334
|
+
"futures-util",
|
|
3335
|
+
"js-sys",
|
|
3336
|
+
"wasm-bindgen",
|
|
3337
|
+
"wasm-bindgen-futures",
|
|
3338
|
+
"web-sys",
|
|
3339
|
+
]
|
|
3340
|
+
|
|
3341
|
+
[[package]]
|
|
3342
|
+
name = "web-sys"
|
|
3343
|
+
version = "0.3.103"
|
|
3344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3345
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
3346
|
+
dependencies = [
|
|
3347
|
+
"js-sys",
|
|
3348
|
+
"wasm-bindgen",
|
|
3349
|
+
]
|
|
3350
|
+
|
|
3351
|
+
[[package]]
|
|
3352
|
+
name = "web-time"
|
|
3353
|
+
version = "1.1.0"
|
|
3354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3355
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3356
|
+
dependencies = [
|
|
3357
|
+
"js-sys",
|
|
3358
|
+
"wasm-bindgen",
|
|
3359
|
+
]
|
|
3360
|
+
|
|
3361
|
+
[[package]]
|
|
3362
|
+
name = "weezl"
|
|
3363
|
+
version = "0.1.12"
|
|
3364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3365
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
3366
|
+
|
|
3367
|
+
[[package]]
|
|
3368
|
+
name = "winapi-util"
|
|
3369
|
+
version = "0.1.11"
|
|
3370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3371
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3372
|
+
dependencies = [
|
|
3373
|
+
"windows-sys 0.61.2",
|
|
3374
|
+
]
|
|
3375
|
+
|
|
3376
|
+
[[package]]
|
|
3377
|
+
name = "windows-core"
|
|
3378
|
+
version = "0.62.2"
|
|
3379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3380
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3381
|
+
dependencies = [
|
|
3382
|
+
"windows-implement",
|
|
3383
|
+
"windows-interface",
|
|
3384
|
+
"windows-link",
|
|
3385
|
+
"windows-result",
|
|
3386
|
+
"windows-strings",
|
|
3387
|
+
]
|
|
3388
|
+
|
|
3389
|
+
[[package]]
|
|
3390
|
+
name = "windows-implement"
|
|
3391
|
+
version = "0.60.2"
|
|
3392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3393
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3394
|
+
dependencies = [
|
|
3395
|
+
"proc-macro2",
|
|
3396
|
+
"quote",
|
|
3397
|
+
"syn",
|
|
3398
|
+
]
|
|
3399
|
+
|
|
3400
|
+
[[package]]
|
|
3401
|
+
name = "windows-interface"
|
|
3402
|
+
version = "0.59.3"
|
|
3403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3404
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3405
|
+
dependencies = [
|
|
3406
|
+
"proc-macro2",
|
|
3407
|
+
"quote",
|
|
3408
|
+
"syn",
|
|
3409
|
+
]
|
|
3410
|
+
|
|
3411
|
+
[[package]]
|
|
3412
|
+
name = "windows-link"
|
|
3413
|
+
version = "0.2.1"
|
|
3414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3415
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3416
|
+
|
|
3417
|
+
[[package]]
|
|
3418
|
+
name = "windows-result"
|
|
3419
|
+
version = "0.4.1"
|
|
3420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3421
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3422
|
+
dependencies = [
|
|
3423
|
+
"windows-link",
|
|
3424
|
+
]
|
|
3425
|
+
|
|
3426
|
+
[[package]]
|
|
3427
|
+
name = "windows-strings"
|
|
3428
|
+
version = "0.5.1"
|
|
3429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3430
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3431
|
+
dependencies = [
|
|
3432
|
+
"windows-link",
|
|
3433
|
+
]
|
|
3434
|
+
|
|
3435
|
+
[[package]]
|
|
3436
|
+
name = "windows-sys"
|
|
3437
|
+
version = "0.48.0"
|
|
3438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3439
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
3440
|
+
dependencies = [
|
|
3441
|
+
"windows-targets 0.48.5",
|
|
3442
|
+
]
|
|
3443
|
+
|
|
3444
|
+
[[package]]
|
|
3445
|
+
name = "windows-sys"
|
|
3446
|
+
version = "0.52.0"
|
|
3447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3448
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3449
|
+
dependencies = [
|
|
3450
|
+
"windows-targets 0.52.6",
|
|
3451
|
+
]
|
|
3452
|
+
|
|
3453
|
+
[[package]]
|
|
3454
|
+
name = "windows-sys"
|
|
3455
|
+
version = "0.60.2"
|
|
3456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3457
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3458
|
+
dependencies = [
|
|
3459
|
+
"windows-targets 0.53.5",
|
|
3460
|
+
]
|
|
3461
|
+
|
|
3462
|
+
[[package]]
|
|
3463
|
+
name = "windows-sys"
|
|
3464
|
+
version = "0.61.2"
|
|
3465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3466
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3467
|
+
dependencies = [
|
|
3468
|
+
"windows-link",
|
|
3469
|
+
]
|
|
3470
|
+
|
|
3471
|
+
[[package]]
|
|
3472
|
+
name = "windows-targets"
|
|
3473
|
+
version = "0.48.5"
|
|
3474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3475
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
3476
|
+
dependencies = [
|
|
3477
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
3478
|
+
"windows_aarch64_msvc 0.48.5",
|
|
3479
|
+
"windows_i686_gnu 0.48.5",
|
|
3480
|
+
"windows_i686_msvc 0.48.5",
|
|
3481
|
+
"windows_x86_64_gnu 0.48.5",
|
|
3482
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
3483
|
+
"windows_x86_64_msvc 0.48.5",
|
|
3484
|
+
]
|
|
3485
|
+
|
|
3486
|
+
[[package]]
|
|
3487
|
+
name = "windows-targets"
|
|
3488
|
+
version = "0.52.6"
|
|
3489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3490
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3491
|
+
dependencies = [
|
|
3492
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3493
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3494
|
+
"windows_i686_gnu 0.52.6",
|
|
3495
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3496
|
+
"windows_i686_msvc 0.52.6",
|
|
3497
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3498
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3499
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3500
|
+
]
|
|
3501
|
+
|
|
3502
|
+
[[package]]
|
|
3503
|
+
name = "windows-targets"
|
|
3504
|
+
version = "0.53.5"
|
|
3505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3506
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3507
|
+
dependencies = [
|
|
3508
|
+
"windows-link",
|
|
3509
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3510
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3511
|
+
"windows_i686_gnu 0.53.1",
|
|
3512
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3513
|
+
"windows_i686_msvc 0.53.1",
|
|
3514
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3515
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3516
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3517
|
+
]
|
|
3518
|
+
|
|
3519
|
+
[[package]]
|
|
3520
|
+
name = "windows_aarch64_gnullvm"
|
|
3521
|
+
version = "0.48.5"
|
|
3522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
3524
|
+
|
|
3525
|
+
[[package]]
|
|
3526
|
+
name = "windows_aarch64_gnullvm"
|
|
3527
|
+
version = "0.52.6"
|
|
3528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3529
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3530
|
+
|
|
3531
|
+
[[package]]
|
|
3532
|
+
name = "windows_aarch64_gnullvm"
|
|
3533
|
+
version = "0.53.1"
|
|
3534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3535
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3536
|
+
|
|
3537
|
+
[[package]]
|
|
3538
|
+
name = "windows_aarch64_msvc"
|
|
3539
|
+
version = "0.48.5"
|
|
3540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3541
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
3542
|
+
|
|
3543
|
+
[[package]]
|
|
3544
|
+
name = "windows_aarch64_msvc"
|
|
3545
|
+
version = "0.52.6"
|
|
3546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3547
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3548
|
+
|
|
3549
|
+
[[package]]
|
|
3550
|
+
name = "windows_aarch64_msvc"
|
|
3551
|
+
version = "0.53.1"
|
|
3552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3553
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3554
|
+
|
|
3555
|
+
[[package]]
|
|
3556
|
+
name = "windows_i686_gnu"
|
|
3557
|
+
version = "0.48.5"
|
|
3558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3559
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
3560
|
+
|
|
3561
|
+
[[package]]
|
|
3562
|
+
name = "windows_i686_gnu"
|
|
3563
|
+
version = "0.52.6"
|
|
3564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3566
|
+
|
|
3567
|
+
[[package]]
|
|
3568
|
+
name = "windows_i686_gnu"
|
|
3569
|
+
version = "0.53.1"
|
|
3570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3571
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3572
|
+
|
|
3573
|
+
[[package]]
|
|
3574
|
+
name = "windows_i686_gnullvm"
|
|
3575
|
+
version = "0.52.6"
|
|
3576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3577
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3578
|
+
|
|
3579
|
+
[[package]]
|
|
3580
|
+
name = "windows_i686_gnullvm"
|
|
3581
|
+
version = "0.53.1"
|
|
3582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3583
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3584
|
+
|
|
3585
|
+
[[package]]
|
|
3586
|
+
name = "windows_i686_msvc"
|
|
3587
|
+
version = "0.48.5"
|
|
3588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3589
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
3590
|
+
|
|
3591
|
+
[[package]]
|
|
3592
|
+
name = "windows_i686_msvc"
|
|
3593
|
+
version = "0.52.6"
|
|
3594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3595
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3596
|
+
|
|
3597
|
+
[[package]]
|
|
3598
|
+
name = "windows_i686_msvc"
|
|
3599
|
+
version = "0.53.1"
|
|
3600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3601
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3602
|
+
|
|
3603
|
+
[[package]]
|
|
3604
|
+
name = "windows_x86_64_gnu"
|
|
3605
|
+
version = "0.48.5"
|
|
3606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3607
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
3608
|
+
|
|
3609
|
+
[[package]]
|
|
3610
|
+
name = "windows_x86_64_gnu"
|
|
3611
|
+
version = "0.52.6"
|
|
3612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3613
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3614
|
+
|
|
3615
|
+
[[package]]
|
|
3616
|
+
name = "windows_x86_64_gnu"
|
|
3617
|
+
version = "0.53.1"
|
|
3618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3620
|
+
|
|
3621
|
+
[[package]]
|
|
3622
|
+
name = "windows_x86_64_gnullvm"
|
|
3623
|
+
version = "0.48.5"
|
|
3624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3625
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
3626
|
+
|
|
3627
|
+
[[package]]
|
|
3628
|
+
name = "windows_x86_64_gnullvm"
|
|
3629
|
+
version = "0.52.6"
|
|
3630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3631
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3632
|
+
|
|
3633
|
+
[[package]]
|
|
3634
|
+
name = "windows_x86_64_gnullvm"
|
|
3635
|
+
version = "0.53.1"
|
|
3636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3637
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3638
|
+
|
|
3639
|
+
[[package]]
|
|
3640
|
+
name = "windows_x86_64_msvc"
|
|
3641
|
+
version = "0.48.5"
|
|
3642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3643
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
3644
|
+
|
|
3645
|
+
[[package]]
|
|
3646
|
+
name = "windows_x86_64_msvc"
|
|
3647
|
+
version = "0.52.6"
|
|
3648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3649
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3650
|
+
|
|
3651
|
+
[[package]]
|
|
3652
|
+
name = "windows_x86_64_msvc"
|
|
3653
|
+
version = "0.53.1"
|
|
3654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3655
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3656
|
+
|
|
3657
|
+
[[package]]
|
|
3658
|
+
name = "wit-bindgen"
|
|
3659
|
+
version = "0.57.1"
|
|
3660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3661
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3662
|
+
|
|
3663
|
+
[[package]]
|
|
3664
|
+
name = "wkt"
|
|
3665
|
+
version = "0.11.1"
|
|
3666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3667
|
+
checksum = "54f7f1ff4ea4c18936d6cd26a6fd24f0003af37e951a8e0e8b9e9a2d0bd0a46d"
|
|
3668
|
+
dependencies = [
|
|
3669
|
+
"geo-types",
|
|
3670
|
+
"log",
|
|
3671
|
+
"num-traits",
|
|
3672
|
+
"thiserror 1.0.69",
|
|
3673
|
+
]
|
|
3674
|
+
|
|
3675
|
+
[[package]]
|
|
3676
|
+
name = "writeable"
|
|
3677
|
+
version = "0.6.3"
|
|
3678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3679
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
3680
|
+
|
|
3681
|
+
[[package]]
|
|
3682
|
+
name = "yoke"
|
|
3683
|
+
version = "0.8.3"
|
|
3684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3685
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
3686
|
+
dependencies = [
|
|
3687
|
+
"stable_deref_trait",
|
|
3688
|
+
"yoke-derive",
|
|
3689
|
+
"zerofrom",
|
|
3690
|
+
]
|
|
3691
|
+
|
|
3692
|
+
[[package]]
|
|
3693
|
+
name = "yoke-derive"
|
|
3694
|
+
version = "0.8.2"
|
|
3695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3696
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3697
|
+
dependencies = [
|
|
3698
|
+
"proc-macro2",
|
|
3699
|
+
"quote",
|
|
3700
|
+
"syn",
|
|
3701
|
+
"synstructure",
|
|
3702
|
+
]
|
|
3703
|
+
|
|
3704
|
+
[[package]]
|
|
3705
|
+
name = "zerocopy"
|
|
3706
|
+
version = "0.8.52"
|
|
3707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3708
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
3709
|
+
dependencies = [
|
|
3710
|
+
"zerocopy-derive",
|
|
3711
|
+
]
|
|
3712
|
+
|
|
3713
|
+
[[package]]
|
|
3714
|
+
name = "zerocopy-derive"
|
|
3715
|
+
version = "0.8.52"
|
|
3716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3717
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
3718
|
+
dependencies = [
|
|
3719
|
+
"proc-macro2",
|
|
3720
|
+
"quote",
|
|
3721
|
+
"syn",
|
|
3722
|
+
]
|
|
3723
|
+
|
|
3724
|
+
[[package]]
|
|
3725
|
+
name = "zerofrom"
|
|
3726
|
+
version = "0.1.8"
|
|
3727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
3729
|
+
dependencies = [
|
|
3730
|
+
"zerofrom-derive",
|
|
3731
|
+
]
|
|
3732
|
+
|
|
3733
|
+
[[package]]
|
|
3734
|
+
name = "zerofrom-derive"
|
|
3735
|
+
version = "0.1.7"
|
|
3736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3738
|
+
dependencies = [
|
|
3739
|
+
"proc-macro2",
|
|
3740
|
+
"quote",
|
|
3741
|
+
"syn",
|
|
3742
|
+
"synstructure",
|
|
3743
|
+
]
|
|
3744
|
+
|
|
3745
|
+
[[package]]
|
|
3746
|
+
name = "zeroize"
|
|
3747
|
+
version = "1.9.0"
|
|
3748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3749
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
3750
|
+
|
|
3751
|
+
[[package]]
|
|
3752
|
+
name = "zerotrie"
|
|
3753
|
+
version = "0.2.4"
|
|
3754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3755
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
3756
|
+
dependencies = [
|
|
3757
|
+
"displaydoc",
|
|
3758
|
+
"yoke",
|
|
3759
|
+
"zerofrom",
|
|
3760
|
+
]
|
|
3761
|
+
|
|
3762
|
+
[[package]]
|
|
3763
|
+
name = "zerovec"
|
|
3764
|
+
version = "0.11.6"
|
|
3765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3766
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3767
|
+
dependencies = [
|
|
3768
|
+
"yoke",
|
|
3769
|
+
"zerofrom",
|
|
3770
|
+
"zerovec-derive",
|
|
3771
|
+
]
|
|
3772
|
+
|
|
3773
|
+
[[package]]
|
|
3774
|
+
name = "zerovec-derive"
|
|
3775
|
+
version = "0.11.3"
|
|
3776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3777
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
3778
|
+
dependencies = [
|
|
3779
|
+
"proc-macro2",
|
|
3780
|
+
"quote",
|
|
3781
|
+
"syn",
|
|
3782
|
+
]
|
|
3783
|
+
|
|
3784
|
+
[[package]]
|
|
3785
|
+
name = "zlib-rs"
|
|
3786
|
+
version = "0.6.3"
|
|
3787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3788
|
+
checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
|
|
3789
|
+
|
|
3790
|
+
[[package]]
|
|
3791
|
+
name = "zmij"
|
|
3792
|
+
version = "1.0.21"
|
|
3793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3794
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
3795
|
+
|
|
3796
|
+
[[package]]
|
|
3797
|
+
name = "zstd"
|
|
3798
|
+
version = "0.13.3"
|
|
3799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3800
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3801
|
+
dependencies = [
|
|
3802
|
+
"zstd-safe",
|
|
3803
|
+
]
|
|
3804
|
+
|
|
3805
|
+
[[package]]
|
|
3806
|
+
name = "zstd-safe"
|
|
3807
|
+
version = "7.2.4"
|
|
3808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3809
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3810
|
+
dependencies = [
|
|
3811
|
+
"zstd-sys",
|
|
3812
|
+
]
|
|
3813
|
+
|
|
3814
|
+
[[package]]
|
|
3815
|
+
name = "zstd-sys"
|
|
3816
|
+
version = "2.0.16+zstd.1.5.7"
|
|
3817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3818
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
3819
|
+
dependencies = [
|
|
3820
|
+
"cc",
|
|
3821
|
+
"pkg-config",
|
|
3822
|
+
]
|