data-flow-control 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.
- data_flow_control-0.1.0/Cargo.lock +3371 -0
- data_flow_control-0.1.0/Cargo.toml +27 -0
- data_flow_control-0.1.0/PKG-INFO +20 -0
- data_flow_control-0.1.0/passant-core/Cargo.toml +30 -0
- data_flow_control-0.1.0/passant-core/benches/rewrite_perf.rs +417 -0
- data_flow_control-0.1.0/passant-core/src/aggregate_registry.rs +658 -0
- data_flow_control-0.1.0/passant-core/src/catalog.rs +1167 -0
- data_flow_control-0.1.0/passant-core/src/diagnostics.rs +160 -0
- data_flow_control-0.1.0/passant-core/src/explain.rs +30 -0
- data_flow_control-0.1.0/passant-core/src/full_push.rs +69 -0
- data_flow_control-0.1.0/passant-core/src/identifiers.rs +508 -0
- data_flow_control-0.1.0/passant-core/src/intern.rs +45 -0
- data_flow_control-0.1.0/passant-core/src/ir.rs +221 -0
- data_flow_control-0.1.0/passant-core/src/lib.rs +81 -0
- data_flow_control-0.1.0/passant-core/src/optimizer.rs +181 -0
- data_flow_control-0.1.0/passant-core/src/parser.rs +375 -0
- data_flow_control-0.1.0/passant-core/src/partial_push.rs +455 -0
- data_flow_control-0.1.0/passant-core/src/planner.rs +406 -0
- data_flow_control-0.1.0/passant-core/src/policy.rs +604 -0
- data_flow_control-0.1.0/passant-core/src/policy_compile.rs +113 -0
- data_flow_control-0.1.0/passant-core/src/policy_index.rs +328 -0
- data_flow_control-0.1.0/passant-core/src/policy_parser.rs +159 -0
- data_flow_control-0.1.0/passant-core/src/policy_pgn.pest +52 -0
- data_flow_control-0.1.0/passant-core/src/policy_store/branch.rs +68 -0
- data_flow_control-0.1.0/passant-core/src/policy_store/compiled.rs +329 -0
- data_flow_control-0.1.0/passant-core/src/policy_store/delete.rs +61 -0
- data_flow_control-0.1.0/passant-core/src/policy_store/indexes.rs +449 -0
- data_flow_control-0.1.0/passant-core/src/policy_store/memory.rs +93 -0
- data_flow_control-0.1.0/passant-core/src/policy_store/mod.rs +764 -0
- data_flow_control-0.1.0/passant-core/src/query_analysis.rs +334 -0
- data_flow_control-0.1.0/passant-core/src/rewrite_stats.rs +197 -0
- data_flow_control-0.1.0/passant-core/src/rewrite_strategy.rs +400 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/aggregates.rs +337 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/columns.rs +679 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/constraint_preprocess.rs +230 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/derived_policy.rs +451 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/dimensions.rs +797 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/exists.rs +642 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/expr.rs +118 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/helpers.rs +341 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/limit.rs +537 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/mod.rs +289 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/plan/actions.rs +338 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/plan/applicability.rs +211 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/plan/dominance.rs +32 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/plan/mod.rs +123 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/plan/scope_plan.rs +479 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/plan/write_plan.rs +212 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/policy_expr.rs +1044 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/projection.rs +210 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/resolution.rs +706 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/scope.rs +74 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/select.rs +380 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/types.rs +183 -0
- data_flow_control-0.1.0/passant-core/src/rewriter/write_path.rs +267 -0
- data_flow_control-0.1.0/passant-core/src/semiring.rs +287 -0
- data_flow_control-0.1.0/passant-core/src/source_set_index.rs +183 -0
- data_flow_control-0.1.0/passant-core/src/source_sets/analysis.rs +154 -0
- data_flow_control-0.1.0/passant-core/src/source_sets/annotations.rs +16 -0
- data_flow_control-0.1.0/passant-core/src/source_sets/branch.rs +23 -0
- data_flow_control-0.1.0/passant-core/src/source_sets/mod.rs +153 -0
- data_flow_control-0.1.0/passant-core/src/source_sets/rewrites.rs +263 -0
- data_flow_control-0.1.0/passant-core/src/source_sets/split.rs +409 -0
- data_flow_control-0.1.0/passant-core/src/sql/ast_stats.rs +162 -0
- data_flow_control-0.1.0/passant-core/src/sql/builders.rs +442 -0
- data_flow_control-0.1.0/passant-core/src/sql/columns.rs +123 -0
- data_flow_control-0.1.0/passant-core/src/sql/dialect.rs +89 -0
- data_flow_control-0.1.0/passant-core/src/sql/expr.rs +284 -0
- data_flow_control-0.1.0/passant-core/src/sql/expr_key.rs +41 -0
- data_flow_control-0.1.0/passant-core/src/sql/mod.rs +29 -0
- data_flow_control-0.1.0/passant-core/src/sql/parse.rs +56 -0
- data_flow_control-0.1.0/passant-core/src/sql/render.rs +33 -0
- data_flow_control-0.1.0/passant-core/src/statement_tables.rs +59 -0
- data_flow_control-0.1.0/passant-core/src/threshold.rs +285 -0
- data_flow_control-0.1.0/passant-core/tests/common/duckdb.rs +144 -0
- data_flow_control-0.1.0/passant-core/tests/common/mod.rs +111 -0
- data_flow_control-0.1.0/passant-core/tests/completion/conformance.rs +140 -0
- data_flow_control-0.1.0/passant-core/tests/completion/main.rs +16 -0
- data_flow_control-0.1.0/passant-core/tests/completion/partial_push.rs +77 -0
- data_flow_control-0.1.0/passant-core/tests/completion/pgn.rs +73 -0
- data_flow_control-0.1.0/passant-core/tests/completion/pgn_unique.rs +168 -0
- data_flow_control-0.1.0/passant-core/tests/completion/policy_storage.rs +106 -0
- data_flow_control-0.1.0/passant-core/tests/completion/rewrite_api_parity.rs +186 -0
- data_flow_control-0.1.0/passant-core/tests/completion/semiring.rs +196 -0
- data_flow_control-0.1.0/passant-core/tests/completion/source_sets.rs +111 -0
- data_flow_control-0.1.0/passant-core/tests/completion/symmetric_self_join.rs +110 -0
- data_flow_control-0.1.0/passant-core/tests/completion/threshold.rs +80 -0
- data_flow_control-0.1.0/passant-core/tests/completion/unique_not_unique.rs +219 -0
- data_flow_control-0.1.0/passant-core/tests/dialect.rs +99 -0
- data_flow_control-0.1.0/passant-core/tests/execution/insert.rs +46 -0
- data_flow_control-0.1.0/passant-core/tests/execution/kill.rs +48 -0
- data_flow_control-0.1.0/passant-core/tests/execution/main.rs +15 -0
- data_flow_control-0.1.0/passant-core/tests/execution/oracle.rs +191 -0
- data_flow_control-0.1.0/passant-core/tests/execution/remove.rs +49 -0
- data_flow_control-0.1.0/passant-core/tests/execution/update.rs +23 -0
- data_flow_control-0.1.0/passant-core/tests/expected/duckdb/remove_scan.sql +1 -0
- data_flow_control-0.1.0/passant-core/tests/expected/postgres/remove_scan.sql +1 -0
- data_flow_control-0.1.0/passant-core/tests/expected/sqlite/remove_scan.sql +1 -0
- data_flow_control-0.1.0/passant-core/tests/explain_strategy.rs +178 -0
- data_flow_control-0.1.0/passant-core/tests/gaps/column_propagation.rs +83 -0
- data_flow_control-0.1.0/passant-core/tests/gaps/dimensions.rs +160 -0
- data_flow_control-0.1.0/passant-core/tests/gaps/exists_join.rs +64 -0
- data_flow_control-0.1.0/passant-core/tests/gaps/having_where.rs +44 -0
- data_flow_control-0.1.0/passant-core/tests/gaps/identifiers.rs +184 -0
- data_flow_control-0.1.0/passant-core/tests/gaps/insert_shapes.rs +107 -0
- data_flow_control-0.1.0/passant-core/tests/gaps/main.rs +26 -0
- data_flow_control-0.1.0/passant-core/tests/gaps/multi_source.rs +61 -0
- data_flow_control-0.1.0/passant-core/tests/gaps/operators.rs +147 -0
- data_flow_control-0.1.0/passant-core/tests/gaps/query_shapes.rs +105 -0
- data_flow_control-0.1.0/passant-core/tests/gaps/scalar_subquery.rs +19 -0
- data_flow_control-0.1.0/passant-core/tests/indexed_candidate_differential.rs +108 -0
- data_flow_control-0.1.0/passant-core/tests/insert_values_body.rs +18 -0
- data_flow_control-0.1.0/passant-core/tests/paper_examples.rs +109 -0
- data_flow_control-0.1.0/passant-core/tests/parser.rs +23 -0
- data_flow_control-0.1.0/passant-core/tests/planner.rs +318 -0
- data_flow_control-0.1.0/passant-core/tests/policy.rs +275 -0
- data_flow_control-0.1.0/passant-core/tests/policy_dialect.rs +20 -0
- data_flow_control-0.1.0/passant-core/tests/policy_store_memory.rs +82 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite/derived_policy.rs +66 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite/in_semijoin.rs +87 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite/insert.rs +159 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite/joins.rs +414 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite/main.rs +19 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite/output.rs +85 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite/recursive.rs +213 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite/scan.rs +401 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite/update.rs +102 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite_candidate_regression.rs +189 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite_fast_paths.rs +57 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite_large_registry.rs +105 -0
- data_flow_control-0.1.0/passant-core/tests/rewrite_stats_timings.rs +41 -0
- data_flow_control-0.1.0/passant-core/tests/scan_ready_expr.rs +44 -0
- data_flow_control-0.1.0/passant-core/tests/source_set_split_no_parse.rs +60 -0
- data_flow_control-0.1.0/passant-core/tests/sql_builders.rs +64 -0
- data_flow_control-0.1.0/passant-core/tests/sql_columns.rs +28 -0
- data_flow_control-0.1.0/passant-core/tests/ui_resolution.rs +164 -0
- data_flow_control-0.1.0/passant-py/Cargo.toml +20 -0
- data_flow_control-0.1.0/passant-py/src/bindings/catalog.rs +9 -0
- data_flow_control-0.1.0/passant-py/src/bindings/errors.rs +23 -0
- data_flow_control-0.1.0/passant-py/src/bindings/mod.rs +15 -0
- data_flow_control-0.1.0/passant-py/src/bindings/planner.rs +230 -0
- data_flow_control-0.1.0/passant-py/src/bindings/policy.rs +64 -0
- data_flow_control-0.1.0/passant-py/src/bindings/stats.rs +112 -0
- data_flow_control-0.1.0/passant-py/src/lib.rs +37 -0
- data_flow_control-0.1.0/pyproject.toml +54 -0
- data_flow_control-0.1.0/python/data_flow_control/__init__.py +17 -0
- data_flow_control-0.1.0/python/data_flow_control/_rust.py +91 -0
- data_flow_control-0.1.0/python/data_flow_control/adapters/__init__.py +11 -0
- data_flow_control-0.1.0/python/data_flow_control/adapters/base.py +49 -0
- data_flow_control-0.1.0/python/data_flow_control/adapters/clickhouse.py +98 -0
- data_flow_control-0.1.0/python/data_flow_control/adapters/datafusion.py +96 -0
- data_flow_control-0.1.0/python/data_flow_control/adapters/duckdb.py +207 -0
- data_flow_control-0.1.0/python/data_flow_control/adapters/kill.py +28 -0
- data_flow_control-0.1.0/python/data_flow_control/adapters/pg_catalog.py +79 -0
- data_flow_control-0.1.0/python/data_flow_control/adapters/postgres.py +66 -0
- data_flow_control-0.1.0/python/data_flow_control/adapters/registry.py +74 -0
- data_flow_control-0.1.0/python/data_flow_control/adapters/sqlite.py +73 -0
- data_flow_control-0.1.0/python/data_flow_control/adapters/umbra.py +61 -0
- data_flow_control-0.1.0/python/data_flow_control/aggregate_introspection.py +114 -0
- data_flow_control-0.1.0/python/data_flow_control/catalog.py +39 -0
- data_flow_control-0.1.0/python/data_flow_control/connection.py +465 -0
- data_flow_control-0.1.0/python/data_flow_control/dialect.py +37 -0
- data_flow_control-0.1.0/python/data_flow_control/options.py +18 -0
- data_flow_control-0.1.0/python/data_flow_control/planner.py +151 -0
- data_flow_control-0.1.0/python/data_flow_control/policy.py +152 -0
- data_flow_control-0.1.0/python/data_flow_control/ui.py +120 -0
|
@@ -0,0 +1,3371 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.7.8"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"getrandom 0.2.17",
|
|
18
|
+
"once_cell",
|
|
19
|
+
"version_check",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[[package]]
|
|
23
|
+
name = "ahash"
|
|
24
|
+
version = "0.8.12"
|
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"cfg-if",
|
|
29
|
+
"const-random",
|
|
30
|
+
"getrandom 0.3.4",
|
|
31
|
+
"once_cell",
|
|
32
|
+
"version_check",
|
|
33
|
+
"zerocopy",
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
[[package]]
|
|
37
|
+
name = "aho-corasick"
|
|
38
|
+
version = "1.1.4"
|
|
39
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
40
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
41
|
+
dependencies = [
|
|
42
|
+
"memchr",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
[[package]]
|
|
46
|
+
name = "android_system_properties"
|
|
47
|
+
version = "0.1.5"
|
|
48
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
49
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
50
|
+
dependencies = [
|
|
51
|
+
"libc",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "anes"
|
|
56
|
+
version = "0.1.6"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "anstream"
|
|
62
|
+
version = "1.0.0"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"anstyle",
|
|
67
|
+
"anstyle-parse",
|
|
68
|
+
"anstyle-query",
|
|
69
|
+
"anstyle-wincon",
|
|
70
|
+
"colorchoice",
|
|
71
|
+
"is_terminal_polyfill",
|
|
72
|
+
"utf8parse",
|
|
73
|
+
]
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "anstyle"
|
|
77
|
+
version = "1.0.14"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "anstyle-parse"
|
|
83
|
+
version = "1.0.0"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"utf8parse",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "anstyle-query"
|
|
92
|
+
version = "1.1.5"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
95
|
+
dependencies = [
|
|
96
|
+
"windows-sys 0.61.2",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "anstyle-wincon"
|
|
101
|
+
version = "3.0.11"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"anstyle",
|
|
106
|
+
"once_cell_polyfill",
|
|
107
|
+
"windows-sys 0.61.2",
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "anyhow"
|
|
112
|
+
version = "1.0.102"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "arbitrary"
|
|
118
|
+
version = "1.4.2"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"derive_arbitrary",
|
|
123
|
+
]
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "arrayvec"
|
|
127
|
+
version = "0.7.6"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "arrow"
|
|
133
|
+
version = "58.3.0"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "378530e55cd479eda3c14eb345310799717e6f76d0c332041e8487022166b471"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"arrow-arith",
|
|
138
|
+
"arrow-array",
|
|
139
|
+
"arrow-buffer",
|
|
140
|
+
"arrow-cast",
|
|
141
|
+
"arrow-data",
|
|
142
|
+
"arrow-ord",
|
|
143
|
+
"arrow-row",
|
|
144
|
+
"arrow-schema",
|
|
145
|
+
"arrow-select",
|
|
146
|
+
"arrow-string",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "arrow-arith"
|
|
151
|
+
version = "58.3.0"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "a0ab212d2c1886e802f51c5212d78ebbcbb0bec980fff9dadc1eb8d45cd0b738"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"arrow-array",
|
|
156
|
+
"arrow-buffer",
|
|
157
|
+
"arrow-data",
|
|
158
|
+
"arrow-schema",
|
|
159
|
+
"chrono",
|
|
160
|
+
"num-traits",
|
|
161
|
+
]
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "arrow-array"
|
|
165
|
+
version = "58.3.0"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "cfd33d3e92f207444098c75b42de99d329562be0cf686b307b097cc52b4e999e"
|
|
168
|
+
dependencies = [
|
|
169
|
+
"ahash 0.8.12",
|
|
170
|
+
"arrow-buffer",
|
|
171
|
+
"arrow-data",
|
|
172
|
+
"arrow-schema",
|
|
173
|
+
"chrono",
|
|
174
|
+
"half",
|
|
175
|
+
"hashbrown 0.17.1",
|
|
176
|
+
"num-complex",
|
|
177
|
+
"num-integer",
|
|
178
|
+
"num-traits",
|
|
179
|
+
]
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "arrow-buffer"
|
|
183
|
+
version = "58.3.0"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "0c6cd424c2693bcdbc150d843dc9d4d137dd2de4782ce6df491ad11a3a0416c0"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"bytes",
|
|
188
|
+
"half",
|
|
189
|
+
"num-bigint",
|
|
190
|
+
"num-traits",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "arrow-cast"
|
|
195
|
+
version = "58.3.0"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "4c5aefb56a2c02e9e2b30746241058b85f8983f0fcff2ba0c6d09006e1cded7f"
|
|
198
|
+
dependencies = [
|
|
199
|
+
"arrow-array",
|
|
200
|
+
"arrow-buffer",
|
|
201
|
+
"arrow-data",
|
|
202
|
+
"arrow-ord",
|
|
203
|
+
"arrow-schema",
|
|
204
|
+
"arrow-select",
|
|
205
|
+
"atoi",
|
|
206
|
+
"base64",
|
|
207
|
+
"chrono",
|
|
208
|
+
"comfy-table",
|
|
209
|
+
"half",
|
|
210
|
+
"lexical-core",
|
|
211
|
+
"num-traits",
|
|
212
|
+
"ryu",
|
|
213
|
+
]
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "arrow-data"
|
|
217
|
+
version = "58.3.0"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "3c88210023a2bfee1896af366309a3028fc3bcbd6515fa29a7990ee1baa08ee0"
|
|
220
|
+
dependencies = [
|
|
221
|
+
"arrow-buffer",
|
|
222
|
+
"arrow-schema",
|
|
223
|
+
"half",
|
|
224
|
+
"num-integer",
|
|
225
|
+
"num-traits",
|
|
226
|
+
]
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "arrow-ord"
|
|
230
|
+
version = "58.3.0"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "1bffd8fd2579286a5d63bac898159873e5094a79009940bcb42bbfce4f19f1d0"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"arrow-array",
|
|
235
|
+
"arrow-buffer",
|
|
236
|
+
"arrow-data",
|
|
237
|
+
"arrow-schema",
|
|
238
|
+
"arrow-select",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "arrow-row"
|
|
243
|
+
version = "58.3.0"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "bab5994731204603c73ba69267616c50f80780774c6bb0476f1f830625115e0c"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"arrow-array",
|
|
248
|
+
"arrow-buffer",
|
|
249
|
+
"arrow-data",
|
|
250
|
+
"arrow-schema",
|
|
251
|
+
"half",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "arrow-schema"
|
|
256
|
+
version = "58.3.0"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "f633dbfdf39c039ada1bf9e34c694816eb71fbb7dc78f613993b7245e078a1ed"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"bitflags",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "arrow-select"
|
|
265
|
+
version = "58.3.0"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "8cd065c54172ac787cf3f2f8d4107e0d3fdc26edba76fdf4f4cc170258942222"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"ahash 0.8.12",
|
|
270
|
+
"arrow-array",
|
|
271
|
+
"arrow-buffer",
|
|
272
|
+
"arrow-data",
|
|
273
|
+
"arrow-schema",
|
|
274
|
+
"num-traits",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "arrow-string"
|
|
279
|
+
version = "58.3.0"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "29dd7cda3ab9692f43a2e4acc444d760cc17b12bb6d8232ddf64e9bab7c06b42"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"arrow-array",
|
|
284
|
+
"arrow-buffer",
|
|
285
|
+
"arrow-data",
|
|
286
|
+
"arrow-schema",
|
|
287
|
+
"arrow-select",
|
|
288
|
+
"memchr",
|
|
289
|
+
"num-traits",
|
|
290
|
+
"regex",
|
|
291
|
+
"regex-syntax",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "assert_cmd"
|
|
296
|
+
version = "2.2.2"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"anstyle",
|
|
301
|
+
"bstr",
|
|
302
|
+
"libc",
|
|
303
|
+
"predicates",
|
|
304
|
+
"predicates-core",
|
|
305
|
+
"predicates-tree",
|
|
306
|
+
"wait-timeout",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "atoi"
|
|
311
|
+
version = "2.0.0"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"num-traits",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "atomic-waker"
|
|
320
|
+
version = "1.1.2"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "autocfg"
|
|
326
|
+
version = "1.5.0"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "base64"
|
|
332
|
+
version = "0.22.1"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "bitflags"
|
|
338
|
+
version = "2.11.1"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "bitvec"
|
|
344
|
+
version = "1.0.1"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"funty",
|
|
349
|
+
"radium",
|
|
350
|
+
"tap",
|
|
351
|
+
"wyz",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "block-buffer"
|
|
356
|
+
version = "0.10.4"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"generic-array",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "borsh"
|
|
365
|
+
version = "1.6.1"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"borsh-derive",
|
|
370
|
+
"bytes",
|
|
371
|
+
"cfg_aliases",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "borsh-derive"
|
|
376
|
+
version = "1.6.1"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "bfcfdc083699101d5a7965e49925975f2f55060f94f9a05e7187be95d530ca59"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"once_cell",
|
|
381
|
+
"proc-macro-crate",
|
|
382
|
+
"proc-macro2",
|
|
383
|
+
"quote",
|
|
384
|
+
"syn 2.0.117",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "bstr"
|
|
389
|
+
version = "1.12.1"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"memchr",
|
|
394
|
+
"regex-automata",
|
|
395
|
+
"serde",
|
|
396
|
+
]
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "bumpalo"
|
|
400
|
+
version = "3.20.3"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "bytecheck"
|
|
406
|
+
version = "0.6.12"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
|
|
409
|
+
dependencies = [
|
|
410
|
+
"bytecheck_derive",
|
|
411
|
+
"ptr_meta",
|
|
412
|
+
"simdutf8",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "bytecheck_derive"
|
|
417
|
+
version = "0.6.12"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"proc-macro2",
|
|
422
|
+
"quote",
|
|
423
|
+
"syn 1.0.109",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "bytemuck"
|
|
428
|
+
version = "1.25.0"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "byteorder"
|
|
434
|
+
version = "1.5.0"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "bytes"
|
|
440
|
+
version = "1.11.1"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "cast"
|
|
446
|
+
version = "0.3.0"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "cc"
|
|
452
|
+
version = "1.2.62"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"find-msvc-tools",
|
|
457
|
+
"jobserver",
|
|
458
|
+
"libc",
|
|
459
|
+
"shlex",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "cfg-if"
|
|
464
|
+
version = "1.0.4"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "cfg_aliases"
|
|
470
|
+
version = "0.2.1"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "chrono"
|
|
476
|
+
version = "0.4.44"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"iana-time-zone",
|
|
481
|
+
"num-traits",
|
|
482
|
+
"windows-link",
|
|
483
|
+
]
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "ciborium"
|
|
487
|
+
version = "0.2.2"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
490
|
+
dependencies = [
|
|
491
|
+
"ciborium-io",
|
|
492
|
+
"ciborium-ll",
|
|
493
|
+
"serde",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "ciborium-io"
|
|
498
|
+
version = "0.2.2"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "ciborium-ll"
|
|
504
|
+
version = "0.2.2"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
507
|
+
dependencies = [
|
|
508
|
+
"ciborium-io",
|
|
509
|
+
"half",
|
|
510
|
+
]
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "clap"
|
|
514
|
+
version = "4.6.0"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
517
|
+
dependencies = [
|
|
518
|
+
"clap_builder",
|
|
519
|
+
"clap_derive",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "clap_builder"
|
|
524
|
+
version = "4.6.0"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"anstream",
|
|
529
|
+
"anstyle",
|
|
530
|
+
"clap_lex",
|
|
531
|
+
"strsim",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "clap_derive"
|
|
536
|
+
version = "4.6.0"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"heck",
|
|
541
|
+
"proc-macro2",
|
|
542
|
+
"quote",
|
|
543
|
+
"syn 2.0.117",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "clap_lex"
|
|
548
|
+
version = "1.1.0"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "colorchoice"
|
|
554
|
+
version = "1.0.5"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "comfy-table"
|
|
560
|
+
version = "7.1.4"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a"
|
|
563
|
+
dependencies = [
|
|
564
|
+
"crossterm",
|
|
565
|
+
"unicode-segmentation",
|
|
566
|
+
"unicode-width",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "const-random"
|
|
571
|
+
version = "0.1.18"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"const-random-macro",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "const-random-macro"
|
|
580
|
+
version = "0.1.16"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"getrandom 0.2.17",
|
|
585
|
+
"once_cell",
|
|
586
|
+
"tiny-keccak",
|
|
587
|
+
]
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "core-foundation-sys"
|
|
591
|
+
version = "0.8.7"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "cpufeatures"
|
|
597
|
+
version = "0.2.17"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
600
|
+
dependencies = [
|
|
601
|
+
"libc",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "crc32fast"
|
|
606
|
+
version = "1.5.0"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"cfg-if",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "criterion"
|
|
615
|
+
version = "0.5.1"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"anes",
|
|
620
|
+
"cast",
|
|
621
|
+
"ciborium",
|
|
622
|
+
"clap",
|
|
623
|
+
"criterion-plot",
|
|
624
|
+
"is-terminal",
|
|
625
|
+
"itertools",
|
|
626
|
+
"num-traits",
|
|
627
|
+
"once_cell",
|
|
628
|
+
"oorandom",
|
|
629
|
+
"plotters",
|
|
630
|
+
"rayon",
|
|
631
|
+
"regex",
|
|
632
|
+
"serde",
|
|
633
|
+
"serde_derive",
|
|
634
|
+
"serde_json",
|
|
635
|
+
"tinytemplate",
|
|
636
|
+
"walkdir",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "criterion-plot"
|
|
641
|
+
version = "0.5.0"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
644
|
+
dependencies = [
|
|
645
|
+
"cast",
|
|
646
|
+
"itertools",
|
|
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 = "crossterm"
|
|
676
|
+
version = "0.28.1"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
679
|
+
dependencies = [
|
|
680
|
+
"bitflags",
|
|
681
|
+
"crossterm_winapi",
|
|
682
|
+
"parking_lot",
|
|
683
|
+
"rustix 0.38.44",
|
|
684
|
+
"winapi",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "crossterm_winapi"
|
|
689
|
+
version = "0.9.1"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"winapi",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "crunchy"
|
|
698
|
+
version = "0.2.4"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "crypto-common"
|
|
704
|
+
version = "0.1.7"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"generic-array",
|
|
709
|
+
"typenum",
|
|
710
|
+
]
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "derive_arbitrary"
|
|
714
|
+
version = "1.4.2"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"proc-macro2",
|
|
719
|
+
"quote",
|
|
720
|
+
"syn 2.0.117",
|
|
721
|
+
]
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "diff"
|
|
725
|
+
version = "0.1.13"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "difflib"
|
|
731
|
+
version = "0.4.0"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "digest"
|
|
737
|
+
version = "0.10.7"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
740
|
+
dependencies = [
|
|
741
|
+
"block-buffer",
|
|
742
|
+
"crypto-common",
|
|
743
|
+
]
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "displaydoc"
|
|
747
|
+
version = "0.2.5"
|
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
750
|
+
dependencies = [
|
|
751
|
+
"proc-macro2",
|
|
752
|
+
"quote",
|
|
753
|
+
"syn 2.0.117",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "duckdb"
|
|
758
|
+
version = "1.10503.1"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "0cb42b21e3be42ef14acda15ce8dc99c125ce5376b87c8016a432cf14ae65de1"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"arrow",
|
|
763
|
+
"cast",
|
|
764
|
+
"comfy-table",
|
|
765
|
+
"fallible-iterator",
|
|
766
|
+
"fallible-streaming-iterator",
|
|
767
|
+
"hashlink",
|
|
768
|
+
"libduckdb-sys",
|
|
769
|
+
"num",
|
|
770
|
+
"num-integer",
|
|
771
|
+
"rust_decimal",
|
|
772
|
+
"strum",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "either"
|
|
777
|
+
version = "1.16.0"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "equivalent"
|
|
783
|
+
version = "1.0.2"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "errno"
|
|
789
|
+
version = "0.3.14"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
792
|
+
dependencies = [
|
|
793
|
+
"libc",
|
|
794
|
+
"windows-sys 0.61.2",
|
|
795
|
+
]
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "fallible-iterator"
|
|
799
|
+
version = "0.3.0"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "fallible-streaming-iterator"
|
|
805
|
+
version = "0.1.9"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "filetime"
|
|
811
|
+
version = "0.2.29"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"cfg-if",
|
|
816
|
+
"libc",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "find-msvc-tools"
|
|
821
|
+
version = "0.1.9"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "flate2"
|
|
827
|
+
version = "1.1.9"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
830
|
+
dependencies = [
|
|
831
|
+
"crc32fast",
|
|
832
|
+
"miniz_oxide",
|
|
833
|
+
"zlib-rs",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "float-cmp"
|
|
838
|
+
version = "0.10.0"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"num-traits",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "foldhash"
|
|
847
|
+
version = "0.1.5"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "form_urlencoded"
|
|
853
|
+
version = "1.2.2"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
856
|
+
dependencies = [
|
|
857
|
+
"percent-encoding",
|
|
858
|
+
]
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "funty"
|
|
862
|
+
version = "2.0.0"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "futures-channel"
|
|
868
|
+
version = "0.3.32"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"futures-core",
|
|
873
|
+
"futures-sink",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "futures-core"
|
|
878
|
+
version = "0.3.32"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "futures-io"
|
|
884
|
+
version = "0.3.32"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "futures-sink"
|
|
890
|
+
version = "0.3.32"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "futures-task"
|
|
896
|
+
version = "0.3.32"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "futures-util"
|
|
902
|
+
version = "0.3.32"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"futures-core",
|
|
907
|
+
"futures-io",
|
|
908
|
+
"futures-sink",
|
|
909
|
+
"futures-task",
|
|
910
|
+
"memchr",
|
|
911
|
+
"pin-project-lite",
|
|
912
|
+
"slab",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "generic-array"
|
|
917
|
+
version = "0.14.7"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"typenum",
|
|
922
|
+
"version_check",
|
|
923
|
+
]
|
|
924
|
+
|
|
925
|
+
[[package]]
|
|
926
|
+
name = "getrandom"
|
|
927
|
+
version = "0.2.17"
|
|
928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
930
|
+
dependencies = [
|
|
931
|
+
"cfg-if",
|
|
932
|
+
"js-sys",
|
|
933
|
+
"libc",
|
|
934
|
+
"wasi",
|
|
935
|
+
"wasm-bindgen",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "getrandom"
|
|
940
|
+
version = "0.3.4"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
943
|
+
dependencies = [
|
|
944
|
+
"cfg-if",
|
|
945
|
+
"js-sys",
|
|
946
|
+
"libc",
|
|
947
|
+
"r-efi",
|
|
948
|
+
"wasip2",
|
|
949
|
+
"wasm-bindgen",
|
|
950
|
+
]
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "half"
|
|
954
|
+
version = "2.7.1"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"cfg-if",
|
|
959
|
+
"crunchy",
|
|
960
|
+
"num-traits",
|
|
961
|
+
"zerocopy",
|
|
962
|
+
]
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "hashbrown"
|
|
966
|
+
version = "0.12.3"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
969
|
+
dependencies = [
|
|
970
|
+
"ahash 0.7.8",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "hashbrown"
|
|
975
|
+
version = "0.15.5"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"foldhash",
|
|
980
|
+
]
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "hashbrown"
|
|
984
|
+
version = "0.17.1"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "hashlink"
|
|
990
|
+
version = "0.10.0"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
|
|
993
|
+
dependencies = [
|
|
994
|
+
"hashbrown 0.15.5",
|
|
995
|
+
]
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "heck"
|
|
999
|
+
version = "0.5.0"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "hermit-abi"
|
|
1005
|
+
version = "0.5.2"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "http"
|
|
1011
|
+
version = "1.4.0"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"bytes",
|
|
1016
|
+
"itoa",
|
|
1017
|
+
]
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "http-body"
|
|
1021
|
+
version = "1.0.1"
|
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1024
|
+
dependencies = [
|
|
1025
|
+
"bytes",
|
|
1026
|
+
"http",
|
|
1027
|
+
]
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "http-body-util"
|
|
1031
|
+
version = "0.1.3"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1034
|
+
dependencies = [
|
|
1035
|
+
"bytes",
|
|
1036
|
+
"futures-core",
|
|
1037
|
+
"http",
|
|
1038
|
+
"http-body",
|
|
1039
|
+
"pin-project-lite",
|
|
1040
|
+
]
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "httparse"
|
|
1044
|
+
version = "1.10.1"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "hyper"
|
|
1050
|
+
version = "1.9.0"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
1053
|
+
dependencies = [
|
|
1054
|
+
"atomic-waker",
|
|
1055
|
+
"bytes",
|
|
1056
|
+
"futures-channel",
|
|
1057
|
+
"futures-core",
|
|
1058
|
+
"http",
|
|
1059
|
+
"http-body",
|
|
1060
|
+
"httparse",
|
|
1061
|
+
"itoa",
|
|
1062
|
+
"pin-project-lite",
|
|
1063
|
+
"smallvec",
|
|
1064
|
+
"tokio",
|
|
1065
|
+
"want",
|
|
1066
|
+
]
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "hyper-rustls"
|
|
1070
|
+
version = "0.27.9"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"http",
|
|
1075
|
+
"hyper",
|
|
1076
|
+
"hyper-util",
|
|
1077
|
+
"rustls",
|
|
1078
|
+
"tokio",
|
|
1079
|
+
"tokio-rustls",
|
|
1080
|
+
"tower-service",
|
|
1081
|
+
"webpki-roots",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "hyper-util"
|
|
1086
|
+
version = "0.1.20"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"base64",
|
|
1091
|
+
"bytes",
|
|
1092
|
+
"futures-channel",
|
|
1093
|
+
"futures-util",
|
|
1094
|
+
"http",
|
|
1095
|
+
"http-body",
|
|
1096
|
+
"hyper",
|
|
1097
|
+
"ipnet",
|
|
1098
|
+
"libc",
|
|
1099
|
+
"percent-encoding",
|
|
1100
|
+
"pin-project-lite",
|
|
1101
|
+
"socket2",
|
|
1102
|
+
"tokio",
|
|
1103
|
+
"tower-service",
|
|
1104
|
+
"tracing",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "iana-time-zone"
|
|
1109
|
+
version = "0.1.65"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"android_system_properties",
|
|
1114
|
+
"core-foundation-sys",
|
|
1115
|
+
"iana-time-zone-haiku",
|
|
1116
|
+
"js-sys",
|
|
1117
|
+
"log",
|
|
1118
|
+
"wasm-bindgen",
|
|
1119
|
+
"windows-core",
|
|
1120
|
+
]
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "iana-time-zone-haiku"
|
|
1124
|
+
version = "0.1.2"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"cc",
|
|
1129
|
+
]
|
|
1130
|
+
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "icu_collections"
|
|
1133
|
+
version = "2.2.0"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
1136
|
+
dependencies = [
|
|
1137
|
+
"displaydoc",
|
|
1138
|
+
"potential_utf",
|
|
1139
|
+
"utf8_iter",
|
|
1140
|
+
"yoke",
|
|
1141
|
+
"zerofrom",
|
|
1142
|
+
"zerovec",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "icu_locale_core"
|
|
1147
|
+
version = "2.2.0"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"displaydoc",
|
|
1152
|
+
"litemap",
|
|
1153
|
+
"tinystr",
|
|
1154
|
+
"writeable",
|
|
1155
|
+
"zerovec",
|
|
1156
|
+
]
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "icu_normalizer"
|
|
1160
|
+
version = "2.2.0"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1163
|
+
dependencies = [
|
|
1164
|
+
"icu_collections",
|
|
1165
|
+
"icu_normalizer_data",
|
|
1166
|
+
"icu_properties",
|
|
1167
|
+
"icu_provider",
|
|
1168
|
+
"smallvec",
|
|
1169
|
+
"zerovec",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "icu_normalizer_data"
|
|
1174
|
+
version = "2.2.0"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "icu_properties"
|
|
1180
|
+
version = "2.2.0"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1183
|
+
dependencies = [
|
|
1184
|
+
"icu_collections",
|
|
1185
|
+
"icu_locale_core",
|
|
1186
|
+
"icu_properties_data",
|
|
1187
|
+
"icu_provider",
|
|
1188
|
+
"zerotrie",
|
|
1189
|
+
"zerovec",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "icu_properties_data"
|
|
1194
|
+
version = "2.2.0"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "icu_provider"
|
|
1200
|
+
version = "2.2.0"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"displaydoc",
|
|
1205
|
+
"icu_locale_core",
|
|
1206
|
+
"writeable",
|
|
1207
|
+
"yoke",
|
|
1208
|
+
"zerofrom",
|
|
1209
|
+
"zerotrie",
|
|
1210
|
+
"zerovec",
|
|
1211
|
+
]
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "idna"
|
|
1215
|
+
version = "1.1.0"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1218
|
+
dependencies = [
|
|
1219
|
+
"idna_adapter",
|
|
1220
|
+
"smallvec",
|
|
1221
|
+
"utf8_iter",
|
|
1222
|
+
]
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "idna_adapter"
|
|
1226
|
+
version = "1.2.2"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1229
|
+
dependencies = [
|
|
1230
|
+
"icu_normalizer",
|
|
1231
|
+
"icu_properties",
|
|
1232
|
+
]
|
|
1233
|
+
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "indexmap"
|
|
1236
|
+
version = "2.14.0"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1239
|
+
dependencies = [
|
|
1240
|
+
"equivalent",
|
|
1241
|
+
"hashbrown 0.17.1",
|
|
1242
|
+
]
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "indoc"
|
|
1246
|
+
version = "2.0.7"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1249
|
+
dependencies = [
|
|
1250
|
+
"rustversion",
|
|
1251
|
+
]
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "ipnet"
|
|
1255
|
+
version = "2.12.0"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "is-terminal"
|
|
1261
|
+
version = "0.4.17"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"hermit-abi",
|
|
1266
|
+
"libc",
|
|
1267
|
+
"windows-sys 0.61.2",
|
|
1268
|
+
]
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "is_terminal_polyfill"
|
|
1272
|
+
version = "1.70.2"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "itertools"
|
|
1278
|
+
version = "0.10.5"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1281
|
+
dependencies = [
|
|
1282
|
+
"either",
|
|
1283
|
+
]
|
|
1284
|
+
|
|
1285
|
+
[[package]]
|
|
1286
|
+
name = "itoa"
|
|
1287
|
+
version = "1.0.18"
|
|
1288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1290
|
+
|
|
1291
|
+
[[package]]
|
|
1292
|
+
name = "jobserver"
|
|
1293
|
+
version = "0.1.34"
|
|
1294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1296
|
+
dependencies = [
|
|
1297
|
+
"getrandom 0.3.4",
|
|
1298
|
+
"libc",
|
|
1299
|
+
]
|
|
1300
|
+
|
|
1301
|
+
[[package]]
|
|
1302
|
+
name = "js-sys"
|
|
1303
|
+
version = "0.3.99"
|
|
1304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1305
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
1306
|
+
dependencies = [
|
|
1307
|
+
"cfg-if",
|
|
1308
|
+
"futures-util",
|
|
1309
|
+
"once_cell",
|
|
1310
|
+
"wasm-bindgen",
|
|
1311
|
+
]
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "lexical-core"
|
|
1315
|
+
version = "1.0.6"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
1318
|
+
dependencies = [
|
|
1319
|
+
"lexical-parse-float",
|
|
1320
|
+
"lexical-parse-integer",
|
|
1321
|
+
"lexical-util",
|
|
1322
|
+
"lexical-write-float",
|
|
1323
|
+
"lexical-write-integer",
|
|
1324
|
+
]
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "lexical-parse-float"
|
|
1328
|
+
version = "1.0.6"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
1331
|
+
dependencies = [
|
|
1332
|
+
"lexical-parse-integer",
|
|
1333
|
+
"lexical-util",
|
|
1334
|
+
]
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "lexical-parse-integer"
|
|
1338
|
+
version = "1.0.6"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
1341
|
+
dependencies = [
|
|
1342
|
+
"lexical-util",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "lexical-util"
|
|
1347
|
+
version = "1.0.7"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
1350
|
+
|
|
1351
|
+
[[package]]
|
|
1352
|
+
name = "lexical-write-float"
|
|
1353
|
+
version = "1.0.6"
|
|
1354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
1356
|
+
dependencies = [
|
|
1357
|
+
"lexical-util",
|
|
1358
|
+
"lexical-write-integer",
|
|
1359
|
+
]
|
|
1360
|
+
|
|
1361
|
+
[[package]]
|
|
1362
|
+
name = "lexical-write-integer"
|
|
1363
|
+
version = "1.0.6"
|
|
1364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
1366
|
+
dependencies = [
|
|
1367
|
+
"lexical-util",
|
|
1368
|
+
]
|
|
1369
|
+
|
|
1370
|
+
[[package]]
|
|
1371
|
+
name = "libc"
|
|
1372
|
+
version = "0.2.184"
|
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "libduckdb-sys"
|
|
1378
|
+
version = "1.10503.1"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "c9a4389c243e7afa0fbc8d8471031335ddc8a2dac4534f3290c9c2ba3edabab5"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"cc",
|
|
1383
|
+
"flate2",
|
|
1384
|
+
"pkg-config",
|
|
1385
|
+
"reqwest",
|
|
1386
|
+
"serde",
|
|
1387
|
+
"serde_json",
|
|
1388
|
+
"tar",
|
|
1389
|
+
"vcpkg",
|
|
1390
|
+
"zip",
|
|
1391
|
+
]
|
|
1392
|
+
|
|
1393
|
+
[[package]]
|
|
1394
|
+
name = "libm"
|
|
1395
|
+
version = "0.2.16"
|
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "linux-raw-sys"
|
|
1401
|
+
version = "0.4.15"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "linux-raw-sys"
|
|
1407
|
+
version = "0.12.1"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "litemap"
|
|
1413
|
+
version = "0.8.2"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1416
|
+
|
|
1417
|
+
[[package]]
|
|
1418
|
+
name = "lock_api"
|
|
1419
|
+
version = "0.4.14"
|
|
1420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1422
|
+
dependencies = [
|
|
1423
|
+
"scopeguard",
|
|
1424
|
+
]
|
|
1425
|
+
|
|
1426
|
+
[[package]]
|
|
1427
|
+
name = "log"
|
|
1428
|
+
version = "0.4.29"
|
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "lru-slab"
|
|
1434
|
+
version = "0.1.2"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "memchr"
|
|
1440
|
+
version = "2.8.0"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1443
|
+
|
|
1444
|
+
[[package]]
|
|
1445
|
+
name = "memoffset"
|
|
1446
|
+
version = "0.9.1"
|
|
1447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1449
|
+
dependencies = [
|
|
1450
|
+
"autocfg",
|
|
1451
|
+
]
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "miniz_oxide"
|
|
1455
|
+
version = "0.8.9"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1458
|
+
dependencies = [
|
|
1459
|
+
"adler2",
|
|
1460
|
+
"simd-adler32",
|
|
1461
|
+
]
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "mio"
|
|
1465
|
+
version = "1.2.0"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
1468
|
+
dependencies = [
|
|
1469
|
+
"libc",
|
|
1470
|
+
"wasi",
|
|
1471
|
+
"windows-sys 0.61.2",
|
|
1472
|
+
]
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "normalize-line-endings"
|
|
1476
|
+
version = "0.3.0"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "num"
|
|
1482
|
+
version = "0.4.3"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
1485
|
+
dependencies = [
|
|
1486
|
+
"num-bigint",
|
|
1487
|
+
"num-complex",
|
|
1488
|
+
"num-integer",
|
|
1489
|
+
"num-iter",
|
|
1490
|
+
"num-rational",
|
|
1491
|
+
"num-traits",
|
|
1492
|
+
]
|
|
1493
|
+
|
|
1494
|
+
[[package]]
|
|
1495
|
+
name = "num-bigint"
|
|
1496
|
+
version = "0.4.6"
|
|
1497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1499
|
+
dependencies = [
|
|
1500
|
+
"num-integer",
|
|
1501
|
+
"num-traits",
|
|
1502
|
+
]
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "num-complex"
|
|
1506
|
+
version = "0.4.6"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1509
|
+
dependencies = [
|
|
1510
|
+
"num-traits",
|
|
1511
|
+
]
|
|
1512
|
+
|
|
1513
|
+
[[package]]
|
|
1514
|
+
name = "num-integer"
|
|
1515
|
+
version = "0.1.46"
|
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1518
|
+
dependencies = [
|
|
1519
|
+
"num-traits",
|
|
1520
|
+
]
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "num-iter"
|
|
1524
|
+
version = "0.1.45"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
1527
|
+
dependencies = [
|
|
1528
|
+
"autocfg",
|
|
1529
|
+
"num-integer",
|
|
1530
|
+
"num-traits",
|
|
1531
|
+
]
|
|
1532
|
+
|
|
1533
|
+
[[package]]
|
|
1534
|
+
name = "num-rational"
|
|
1535
|
+
version = "0.4.2"
|
|
1536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1537
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1538
|
+
dependencies = [
|
|
1539
|
+
"num-bigint",
|
|
1540
|
+
"num-integer",
|
|
1541
|
+
"num-traits",
|
|
1542
|
+
]
|
|
1543
|
+
|
|
1544
|
+
[[package]]
|
|
1545
|
+
name = "num-traits"
|
|
1546
|
+
version = "0.2.19"
|
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1549
|
+
dependencies = [
|
|
1550
|
+
"autocfg",
|
|
1551
|
+
"libm",
|
|
1552
|
+
]
|
|
1553
|
+
|
|
1554
|
+
[[package]]
|
|
1555
|
+
name = "once_cell"
|
|
1556
|
+
version = "1.21.4"
|
|
1557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1558
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1559
|
+
|
|
1560
|
+
[[package]]
|
|
1561
|
+
name = "once_cell_polyfill"
|
|
1562
|
+
version = "1.70.2"
|
|
1563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "oorandom"
|
|
1568
|
+
version = "11.1.5"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "parking_lot"
|
|
1574
|
+
version = "0.12.5"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1577
|
+
dependencies = [
|
|
1578
|
+
"lock_api",
|
|
1579
|
+
"parking_lot_core",
|
|
1580
|
+
]
|
|
1581
|
+
|
|
1582
|
+
[[package]]
|
|
1583
|
+
name = "parking_lot_core"
|
|
1584
|
+
version = "0.9.12"
|
|
1585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1587
|
+
dependencies = [
|
|
1588
|
+
"cfg-if",
|
|
1589
|
+
"libc",
|
|
1590
|
+
"redox_syscall",
|
|
1591
|
+
"smallvec",
|
|
1592
|
+
"windows-link",
|
|
1593
|
+
]
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "passant-cli"
|
|
1597
|
+
version = "0.1.0"
|
|
1598
|
+
dependencies = [
|
|
1599
|
+
"anyhow",
|
|
1600
|
+
"assert_cmd",
|
|
1601
|
+
"clap",
|
|
1602
|
+
"passant-core",
|
|
1603
|
+
"predicates",
|
|
1604
|
+
"serde_json",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "passant-core"
|
|
1609
|
+
version = "0.1.0"
|
|
1610
|
+
dependencies = [
|
|
1611
|
+
"anyhow",
|
|
1612
|
+
"criterion",
|
|
1613
|
+
"duckdb",
|
|
1614
|
+
"pest",
|
|
1615
|
+
"pest_derive",
|
|
1616
|
+
"pretty_assertions",
|
|
1617
|
+
"roaring",
|
|
1618
|
+
"serde",
|
|
1619
|
+
"serde_json",
|
|
1620
|
+
"smallvec",
|
|
1621
|
+
"sqlparser",
|
|
1622
|
+
"thiserror",
|
|
1623
|
+
]
|
|
1624
|
+
|
|
1625
|
+
[[package]]
|
|
1626
|
+
name = "passant-py"
|
|
1627
|
+
version = "0.1.0"
|
|
1628
|
+
dependencies = [
|
|
1629
|
+
"passant-core",
|
|
1630
|
+
"pyo3",
|
|
1631
|
+
"serde",
|
|
1632
|
+
"serde_json",
|
|
1633
|
+
]
|
|
1634
|
+
|
|
1635
|
+
[[package]]
|
|
1636
|
+
name = "percent-encoding"
|
|
1637
|
+
version = "2.3.2"
|
|
1638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "pest"
|
|
1643
|
+
version = "2.8.6"
|
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
+
checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
|
|
1646
|
+
dependencies = [
|
|
1647
|
+
"memchr",
|
|
1648
|
+
"ucd-trie",
|
|
1649
|
+
]
|
|
1650
|
+
|
|
1651
|
+
[[package]]
|
|
1652
|
+
name = "pest_derive"
|
|
1653
|
+
version = "2.8.6"
|
|
1654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1655
|
+
checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
|
|
1656
|
+
dependencies = [
|
|
1657
|
+
"pest",
|
|
1658
|
+
"pest_generator",
|
|
1659
|
+
]
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "pest_generator"
|
|
1663
|
+
version = "2.8.6"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
|
|
1666
|
+
dependencies = [
|
|
1667
|
+
"pest",
|
|
1668
|
+
"pest_meta",
|
|
1669
|
+
"proc-macro2",
|
|
1670
|
+
"quote",
|
|
1671
|
+
"syn 2.0.117",
|
|
1672
|
+
]
|
|
1673
|
+
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "pest_meta"
|
|
1676
|
+
version = "2.8.6"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
|
|
1679
|
+
dependencies = [
|
|
1680
|
+
"pest",
|
|
1681
|
+
"sha2",
|
|
1682
|
+
]
|
|
1683
|
+
|
|
1684
|
+
[[package]]
|
|
1685
|
+
name = "pin-project-lite"
|
|
1686
|
+
version = "0.2.17"
|
|
1687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1689
|
+
|
|
1690
|
+
[[package]]
|
|
1691
|
+
name = "pkg-config"
|
|
1692
|
+
version = "0.3.33"
|
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1695
|
+
|
|
1696
|
+
[[package]]
|
|
1697
|
+
name = "plotters"
|
|
1698
|
+
version = "0.3.7"
|
|
1699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1701
|
+
dependencies = [
|
|
1702
|
+
"num-traits",
|
|
1703
|
+
"plotters-backend",
|
|
1704
|
+
"plotters-svg",
|
|
1705
|
+
"wasm-bindgen",
|
|
1706
|
+
"web-sys",
|
|
1707
|
+
]
|
|
1708
|
+
|
|
1709
|
+
[[package]]
|
|
1710
|
+
name = "plotters-backend"
|
|
1711
|
+
version = "0.3.7"
|
|
1712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "plotters-svg"
|
|
1717
|
+
version = "0.3.7"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
1720
|
+
dependencies = [
|
|
1721
|
+
"plotters-backend",
|
|
1722
|
+
]
|
|
1723
|
+
|
|
1724
|
+
[[package]]
|
|
1725
|
+
name = "portable-atomic"
|
|
1726
|
+
version = "1.13.1"
|
|
1727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1729
|
+
|
|
1730
|
+
[[package]]
|
|
1731
|
+
name = "potential_utf"
|
|
1732
|
+
version = "0.1.5"
|
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1735
|
+
dependencies = [
|
|
1736
|
+
"zerovec",
|
|
1737
|
+
]
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "ppv-lite86"
|
|
1741
|
+
version = "0.2.21"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1744
|
+
dependencies = [
|
|
1745
|
+
"zerocopy",
|
|
1746
|
+
]
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "predicates"
|
|
1750
|
+
version = "3.1.4"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
1753
|
+
dependencies = [
|
|
1754
|
+
"anstyle",
|
|
1755
|
+
"difflib",
|
|
1756
|
+
"float-cmp",
|
|
1757
|
+
"normalize-line-endings",
|
|
1758
|
+
"predicates-core",
|
|
1759
|
+
"regex",
|
|
1760
|
+
]
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "predicates-core"
|
|
1764
|
+
version = "1.0.10"
|
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "predicates-tree"
|
|
1770
|
+
version = "1.0.13"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
1773
|
+
dependencies = [
|
|
1774
|
+
"predicates-core",
|
|
1775
|
+
"termtree",
|
|
1776
|
+
]
|
|
1777
|
+
|
|
1778
|
+
[[package]]
|
|
1779
|
+
name = "pretty_assertions"
|
|
1780
|
+
version = "1.4.1"
|
|
1781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
1783
|
+
dependencies = [
|
|
1784
|
+
"diff",
|
|
1785
|
+
"yansi",
|
|
1786
|
+
]
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "proc-macro-crate"
|
|
1790
|
+
version = "3.5.0"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
|
1793
|
+
dependencies = [
|
|
1794
|
+
"toml_edit",
|
|
1795
|
+
]
|
|
1796
|
+
|
|
1797
|
+
[[package]]
|
|
1798
|
+
name = "proc-macro2"
|
|
1799
|
+
version = "1.0.106"
|
|
1800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1802
|
+
dependencies = [
|
|
1803
|
+
"unicode-ident",
|
|
1804
|
+
]
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "ptr_meta"
|
|
1808
|
+
version = "0.1.4"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
|
|
1811
|
+
dependencies = [
|
|
1812
|
+
"ptr_meta_derive",
|
|
1813
|
+
]
|
|
1814
|
+
|
|
1815
|
+
[[package]]
|
|
1816
|
+
name = "ptr_meta_derive"
|
|
1817
|
+
version = "0.1.4"
|
|
1818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
+
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
1820
|
+
dependencies = [
|
|
1821
|
+
"proc-macro2",
|
|
1822
|
+
"quote",
|
|
1823
|
+
"syn 1.0.109",
|
|
1824
|
+
]
|
|
1825
|
+
|
|
1826
|
+
[[package]]
|
|
1827
|
+
name = "pyo3"
|
|
1828
|
+
version = "0.23.5"
|
|
1829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
1831
|
+
dependencies = [
|
|
1832
|
+
"cfg-if",
|
|
1833
|
+
"indoc",
|
|
1834
|
+
"libc",
|
|
1835
|
+
"memoffset",
|
|
1836
|
+
"once_cell",
|
|
1837
|
+
"portable-atomic",
|
|
1838
|
+
"pyo3-build-config",
|
|
1839
|
+
"pyo3-ffi",
|
|
1840
|
+
"pyo3-macros",
|
|
1841
|
+
"unindent",
|
|
1842
|
+
]
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "pyo3-build-config"
|
|
1846
|
+
version = "0.23.5"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
1849
|
+
dependencies = [
|
|
1850
|
+
"once_cell",
|
|
1851
|
+
"target-lexicon",
|
|
1852
|
+
]
|
|
1853
|
+
|
|
1854
|
+
[[package]]
|
|
1855
|
+
name = "pyo3-ffi"
|
|
1856
|
+
version = "0.23.5"
|
|
1857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
1859
|
+
dependencies = [
|
|
1860
|
+
"libc",
|
|
1861
|
+
"pyo3-build-config",
|
|
1862
|
+
]
|
|
1863
|
+
|
|
1864
|
+
[[package]]
|
|
1865
|
+
name = "pyo3-macros"
|
|
1866
|
+
version = "0.23.5"
|
|
1867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1868
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
1869
|
+
dependencies = [
|
|
1870
|
+
"proc-macro2",
|
|
1871
|
+
"pyo3-macros-backend",
|
|
1872
|
+
"quote",
|
|
1873
|
+
"syn 2.0.117",
|
|
1874
|
+
]
|
|
1875
|
+
|
|
1876
|
+
[[package]]
|
|
1877
|
+
name = "pyo3-macros-backend"
|
|
1878
|
+
version = "0.23.5"
|
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
1881
|
+
dependencies = [
|
|
1882
|
+
"heck",
|
|
1883
|
+
"proc-macro2",
|
|
1884
|
+
"pyo3-build-config",
|
|
1885
|
+
"quote",
|
|
1886
|
+
"syn 2.0.117",
|
|
1887
|
+
]
|
|
1888
|
+
|
|
1889
|
+
[[package]]
|
|
1890
|
+
name = "quinn"
|
|
1891
|
+
version = "0.11.9"
|
|
1892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1893
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
1894
|
+
dependencies = [
|
|
1895
|
+
"bytes",
|
|
1896
|
+
"cfg_aliases",
|
|
1897
|
+
"pin-project-lite",
|
|
1898
|
+
"quinn-proto",
|
|
1899
|
+
"quinn-udp",
|
|
1900
|
+
"rustc-hash",
|
|
1901
|
+
"rustls",
|
|
1902
|
+
"socket2",
|
|
1903
|
+
"thiserror",
|
|
1904
|
+
"tokio",
|
|
1905
|
+
"tracing",
|
|
1906
|
+
"web-time",
|
|
1907
|
+
]
|
|
1908
|
+
|
|
1909
|
+
[[package]]
|
|
1910
|
+
name = "quinn-proto"
|
|
1911
|
+
version = "0.11.14"
|
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
1914
|
+
dependencies = [
|
|
1915
|
+
"bytes",
|
|
1916
|
+
"getrandom 0.3.4",
|
|
1917
|
+
"lru-slab",
|
|
1918
|
+
"rand 0.9.4",
|
|
1919
|
+
"ring",
|
|
1920
|
+
"rustc-hash",
|
|
1921
|
+
"rustls",
|
|
1922
|
+
"rustls-pki-types",
|
|
1923
|
+
"slab",
|
|
1924
|
+
"thiserror",
|
|
1925
|
+
"tinyvec",
|
|
1926
|
+
"tracing",
|
|
1927
|
+
"web-time",
|
|
1928
|
+
]
|
|
1929
|
+
|
|
1930
|
+
[[package]]
|
|
1931
|
+
name = "quinn-udp"
|
|
1932
|
+
version = "0.5.14"
|
|
1933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1935
|
+
dependencies = [
|
|
1936
|
+
"cfg_aliases",
|
|
1937
|
+
"libc",
|
|
1938
|
+
"once_cell",
|
|
1939
|
+
"socket2",
|
|
1940
|
+
"tracing",
|
|
1941
|
+
"windows-sys 0.60.2",
|
|
1942
|
+
]
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "quote"
|
|
1946
|
+
version = "1.0.45"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1949
|
+
dependencies = [
|
|
1950
|
+
"proc-macro2",
|
|
1951
|
+
]
|
|
1952
|
+
|
|
1953
|
+
[[package]]
|
|
1954
|
+
name = "r-efi"
|
|
1955
|
+
version = "5.3.0"
|
|
1956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1957
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1958
|
+
|
|
1959
|
+
[[package]]
|
|
1960
|
+
name = "radium"
|
|
1961
|
+
version = "0.7.0"
|
|
1962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
1964
|
+
|
|
1965
|
+
[[package]]
|
|
1966
|
+
name = "rand"
|
|
1967
|
+
version = "0.8.6"
|
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
1970
|
+
dependencies = [
|
|
1971
|
+
"libc",
|
|
1972
|
+
"rand_chacha 0.3.1",
|
|
1973
|
+
"rand_core 0.6.4",
|
|
1974
|
+
]
|
|
1975
|
+
|
|
1976
|
+
[[package]]
|
|
1977
|
+
name = "rand"
|
|
1978
|
+
version = "0.9.4"
|
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1981
|
+
dependencies = [
|
|
1982
|
+
"rand_chacha 0.9.0",
|
|
1983
|
+
"rand_core 0.9.5",
|
|
1984
|
+
]
|
|
1985
|
+
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "rand_chacha"
|
|
1988
|
+
version = "0.3.1"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1991
|
+
dependencies = [
|
|
1992
|
+
"ppv-lite86",
|
|
1993
|
+
"rand_core 0.6.4",
|
|
1994
|
+
]
|
|
1995
|
+
|
|
1996
|
+
[[package]]
|
|
1997
|
+
name = "rand_chacha"
|
|
1998
|
+
version = "0.9.0"
|
|
1999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2001
|
+
dependencies = [
|
|
2002
|
+
"ppv-lite86",
|
|
2003
|
+
"rand_core 0.9.5",
|
|
2004
|
+
]
|
|
2005
|
+
|
|
2006
|
+
[[package]]
|
|
2007
|
+
name = "rand_core"
|
|
2008
|
+
version = "0.6.4"
|
|
2009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2011
|
+
dependencies = [
|
|
2012
|
+
"getrandom 0.2.17",
|
|
2013
|
+
]
|
|
2014
|
+
|
|
2015
|
+
[[package]]
|
|
2016
|
+
name = "rand_core"
|
|
2017
|
+
version = "0.9.5"
|
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2020
|
+
dependencies = [
|
|
2021
|
+
"getrandom 0.3.4",
|
|
2022
|
+
]
|
|
2023
|
+
|
|
2024
|
+
[[package]]
|
|
2025
|
+
name = "rayon"
|
|
2026
|
+
version = "1.12.0"
|
|
2027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
2029
|
+
dependencies = [
|
|
2030
|
+
"either",
|
|
2031
|
+
"rayon-core",
|
|
2032
|
+
]
|
|
2033
|
+
|
|
2034
|
+
[[package]]
|
|
2035
|
+
name = "rayon-core"
|
|
2036
|
+
version = "1.13.0"
|
|
2037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2039
|
+
dependencies = [
|
|
2040
|
+
"crossbeam-deque",
|
|
2041
|
+
"crossbeam-utils",
|
|
2042
|
+
]
|
|
2043
|
+
|
|
2044
|
+
[[package]]
|
|
2045
|
+
name = "redox_syscall"
|
|
2046
|
+
version = "0.5.18"
|
|
2047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2048
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2049
|
+
dependencies = [
|
|
2050
|
+
"bitflags",
|
|
2051
|
+
]
|
|
2052
|
+
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "regex"
|
|
2055
|
+
version = "1.12.3"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2058
|
+
dependencies = [
|
|
2059
|
+
"aho-corasick",
|
|
2060
|
+
"memchr",
|
|
2061
|
+
"regex-automata",
|
|
2062
|
+
"regex-syntax",
|
|
2063
|
+
]
|
|
2064
|
+
|
|
2065
|
+
[[package]]
|
|
2066
|
+
name = "regex-automata"
|
|
2067
|
+
version = "0.4.14"
|
|
2068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2069
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2070
|
+
dependencies = [
|
|
2071
|
+
"aho-corasick",
|
|
2072
|
+
"memchr",
|
|
2073
|
+
"regex-syntax",
|
|
2074
|
+
]
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "regex-syntax"
|
|
2078
|
+
version = "0.8.10"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
2081
|
+
|
|
2082
|
+
[[package]]
|
|
2083
|
+
name = "rend"
|
|
2084
|
+
version = "0.4.2"
|
|
2085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
|
+
checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
|
|
2087
|
+
dependencies = [
|
|
2088
|
+
"bytecheck",
|
|
2089
|
+
]
|
|
2090
|
+
|
|
2091
|
+
[[package]]
|
|
2092
|
+
name = "reqwest"
|
|
2093
|
+
version = "0.12.28"
|
|
2094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
2096
|
+
dependencies = [
|
|
2097
|
+
"base64",
|
|
2098
|
+
"bytes",
|
|
2099
|
+
"futures-channel",
|
|
2100
|
+
"futures-core",
|
|
2101
|
+
"futures-util",
|
|
2102
|
+
"http",
|
|
2103
|
+
"http-body",
|
|
2104
|
+
"http-body-util",
|
|
2105
|
+
"hyper",
|
|
2106
|
+
"hyper-rustls",
|
|
2107
|
+
"hyper-util",
|
|
2108
|
+
"js-sys",
|
|
2109
|
+
"log",
|
|
2110
|
+
"percent-encoding",
|
|
2111
|
+
"pin-project-lite",
|
|
2112
|
+
"quinn",
|
|
2113
|
+
"rustls",
|
|
2114
|
+
"rustls-pki-types",
|
|
2115
|
+
"serde",
|
|
2116
|
+
"serde_json",
|
|
2117
|
+
"serde_urlencoded",
|
|
2118
|
+
"sync_wrapper",
|
|
2119
|
+
"tokio",
|
|
2120
|
+
"tokio-rustls",
|
|
2121
|
+
"tower",
|
|
2122
|
+
"tower-http",
|
|
2123
|
+
"tower-service",
|
|
2124
|
+
"url",
|
|
2125
|
+
"wasm-bindgen",
|
|
2126
|
+
"wasm-bindgen-futures",
|
|
2127
|
+
"web-sys",
|
|
2128
|
+
"webpki-roots",
|
|
2129
|
+
]
|
|
2130
|
+
|
|
2131
|
+
[[package]]
|
|
2132
|
+
name = "ring"
|
|
2133
|
+
version = "0.17.14"
|
|
2134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2135
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2136
|
+
dependencies = [
|
|
2137
|
+
"cc",
|
|
2138
|
+
"cfg-if",
|
|
2139
|
+
"getrandom 0.2.17",
|
|
2140
|
+
"libc",
|
|
2141
|
+
"untrusted",
|
|
2142
|
+
"windows-sys 0.52.0",
|
|
2143
|
+
]
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "rkyv"
|
|
2147
|
+
version = "0.7.46"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"bitvec",
|
|
2152
|
+
"bytecheck",
|
|
2153
|
+
"bytes",
|
|
2154
|
+
"hashbrown 0.12.3",
|
|
2155
|
+
"ptr_meta",
|
|
2156
|
+
"rend",
|
|
2157
|
+
"rkyv_derive",
|
|
2158
|
+
"seahash",
|
|
2159
|
+
"tinyvec",
|
|
2160
|
+
"uuid",
|
|
2161
|
+
]
|
|
2162
|
+
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "rkyv_derive"
|
|
2165
|
+
version = "0.7.46"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
|
|
2168
|
+
dependencies = [
|
|
2169
|
+
"proc-macro2",
|
|
2170
|
+
"quote",
|
|
2171
|
+
"syn 1.0.109",
|
|
2172
|
+
]
|
|
2173
|
+
|
|
2174
|
+
[[package]]
|
|
2175
|
+
name = "roaring"
|
|
2176
|
+
version = "0.10.12"
|
|
2177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2178
|
+
checksum = "19e8d2cfa184d94d0726d650a9f4a1be7f9b76ac9fdb954219878dc00c1c1e7b"
|
|
2179
|
+
dependencies = [
|
|
2180
|
+
"bytemuck",
|
|
2181
|
+
"byteorder",
|
|
2182
|
+
]
|
|
2183
|
+
|
|
2184
|
+
[[package]]
|
|
2185
|
+
name = "rust_decimal"
|
|
2186
|
+
version = "1.42.0"
|
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
+
checksum = "0c5108e3d4d903e21aac27f12ba5377b6b34f9f44b325e4894c7924169d06995"
|
|
2189
|
+
dependencies = [
|
|
2190
|
+
"arrayvec",
|
|
2191
|
+
"borsh",
|
|
2192
|
+
"bytes",
|
|
2193
|
+
"num-traits",
|
|
2194
|
+
"rand 0.8.6",
|
|
2195
|
+
"rkyv",
|
|
2196
|
+
"serde",
|
|
2197
|
+
"serde_json",
|
|
2198
|
+
"wasm-bindgen",
|
|
2199
|
+
]
|
|
2200
|
+
|
|
2201
|
+
[[package]]
|
|
2202
|
+
name = "rustc-hash"
|
|
2203
|
+
version = "2.1.2"
|
|
2204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2206
|
+
|
|
2207
|
+
[[package]]
|
|
2208
|
+
name = "rustix"
|
|
2209
|
+
version = "0.38.44"
|
|
2210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2211
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2212
|
+
dependencies = [
|
|
2213
|
+
"bitflags",
|
|
2214
|
+
"errno",
|
|
2215
|
+
"libc",
|
|
2216
|
+
"linux-raw-sys 0.4.15",
|
|
2217
|
+
"windows-sys 0.59.0",
|
|
2218
|
+
]
|
|
2219
|
+
|
|
2220
|
+
[[package]]
|
|
2221
|
+
name = "rustix"
|
|
2222
|
+
version = "1.1.4"
|
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2225
|
+
dependencies = [
|
|
2226
|
+
"bitflags",
|
|
2227
|
+
"errno",
|
|
2228
|
+
"libc",
|
|
2229
|
+
"linux-raw-sys 0.12.1",
|
|
2230
|
+
"windows-sys 0.61.2",
|
|
2231
|
+
]
|
|
2232
|
+
|
|
2233
|
+
[[package]]
|
|
2234
|
+
name = "rustls"
|
|
2235
|
+
version = "0.23.40"
|
|
2236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
2238
|
+
dependencies = [
|
|
2239
|
+
"once_cell",
|
|
2240
|
+
"ring",
|
|
2241
|
+
"rustls-pki-types",
|
|
2242
|
+
"rustls-webpki",
|
|
2243
|
+
"subtle",
|
|
2244
|
+
"zeroize",
|
|
2245
|
+
]
|
|
2246
|
+
|
|
2247
|
+
[[package]]
|
|
2248
|
+
name = "rustls-pki-types"
|
|
2249
|
+
version = "1.14.1"
|
|
2250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2251
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
2252
|
+
dependencies = [
|
|
2253
|
+
"web-time",
|
|
2254
|
+
"zeroize",
|
|
2255
|
+
]
|
|
2256
|
+
|
|
2257
|
+
[[package]]
|
|
2258
|
+
name = "rustls-webpki"
|
|
2259
|
+
version = "0.103.13"
|
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2262
|
+
dependencies = [
|
|
2263
|
+
"ring",
|
|
2264
|
+
"rustls-pki-types",
|
|
2265
|
+
"untrusted",
|
|
2266
|
+
]
|
|
2267
|
+
|
|
2268
|
+
[[package]]
|
|
2269
|
+
name = "rustversion"
|
|
2270
|
+
version = "1.0.22"
|
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2273
|
+
|
|
2274
|
+
[[package]]
|
|
2275
|
+
name = "ryu"
|
|
2276
|
+
version = "1.0.23"
|
|
2277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2278
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2279
|
+
|
|
2280
|
+
[[package]]
|
|
2281
|
+
name = "same-file"
|
|
2282
|
+
version = "1.0.6"
|
|
2283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2285
|
+
dependencies = [
|
|
2286
|
+
"winapi-util",
|
|
2287
|
+
]
|
|
2288
|
+
|
|
2289
|
+
[[package]]
|
|
2290
|
+
name = "scopeguard"
|
|
2291
|
+
version = "1.2.0"
|
|
2292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2293
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2294
|
+
|
|
2295
|
+
[[package]]
|
|
2296
|
+
name = "seahash"
|
|
2297
|
+
version = "4.1.0"
|
|
2298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2299
|
+
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
|
2300
|
+
|
|
2301
|
+
[[package]]
|
|
2302
|
+
name = "serde"
|
|
2303
|
+
version = "1.0.228"
|
|
2304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2306
|
+
dependencies = [
|
|
2307
|
+
"serde_core",
|
|
2308
|
+
"serde_derive",
|
|
2309
|
+
]
|
|
2310
|
+
|
|
2311
|
+
[[package]]
|
|
2312
|
+
name = "serde_core"
|
|
2313
|
+
version = "1.0.228"
|
|
2314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2315
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2316
|
+
dependencies = [
|
|
2317
|
+
"serde_derive",
|
|
2318
|
+
]
|
|
2319
|
+
|
|
2320
|
+
[[package]]
|
|
2321
|
+
name = "serde_derive"
|
|
2322
|
+
version = "1.0.228"
|
|
2323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2324
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2325
|
+
dependencies = [
|
|
2326
|
+
"proc-macro2",
|
|
2327
|
+
"quote",
|
|
2328
|
+
"syn 2.0.117",
|
|
2329
|
+
]
|
|
2330
|
+
|
|
2331
|
+
[[package]]
|
|
2332
|
+
name = "serde_json"
|
|
2333
|
+
version = "1.0.149"
|
|
2334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
2336
|
+
dependencies = [
|
|
2337
|
+
"itoa",
|
|
2338
|
+
"memchr",
|
|
2339
|
+
"serde",
|
|
2340
|
+
"serde_core",
|
|
2341
|
+
"zmij",
|
|
2342
|
+
]
|
|
2343
|
+
|
|
2344
|
+
[[package]]
|
|
2345
|
+
name = "serde_urlencoded"
|
|
2346
|
+
version = "0.7.1"
|
|
2347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2349
|
+
dependencies = [
|
|
2350
|
+
"form_urlencoded",
|
|
2351
|
+
"itoa",
|
|
2352
|
+
"ryu",
|
|
2353
|
+
"serde",
|
|
2354
|
+
]
|
|
2355
|
+
|
|
2356
|
+
[[package]]
|
|
2357
|
+
name = "sha2"
|
|
2358
|
+
version = "0.10.9"
|
|
2359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2360
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2361
|
+
dependencies = [
|
|
2362
|
+
"cfg-if",
|
|
2363
|
+
"cpufeatures",
|
|
2364
|
+
"digest",
|
|
2365
|
+
]
|
|
2366
|
+
|
|
2367
|
+
[[package]]
|
|
2368
|
+
name = "shlex"
|
|
2369
|
+
version = "1.3.0"
|
|
2370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2372
|
+
|
|
2373
|
+
[[package]]
|
|
2374
|
+
name = "simd-adler32"
|
|
2375
|
+
version = "0.3.9"
|
|
2376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2377
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
2378
|
+
|
|
2379
|
+
[[package]]
|
|
2380
|
+
name = "simdutf8"
|
|
2381
|
+
version = "0.1.5"
|
|
2382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2383
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
2384
|
+
|
|
2385
|
+
[[package]]
|
|
2386
|
+
name = "slab"
|
|
2387
|
+
version = "0.4.12"
|
|
2388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2390
|
+
|
|
2391
|
+
[[package]]
|
|
2392
|
+
name = "smallvec"
|
|
2393
|
+
version = "1.15.1"
|
|
2394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2396
|
+
|
|
2397
|
+
[[package]]
|
|
2398
|
+
name = "socket2"
|
|
2399
|
+
version = "0.6.3"
|
|
2400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
2402
|
+
dependencies = [
|
|
2403
|
+
"libc",
|
|
2404
|
+
"windows-sys 0.61.2",
|
|
2405
|
+
]
|
|
2406
|
+
|
|
2407
|
+
[[package]]
|
|
2408
|
+
name = "sqlparser"
|
|
2409
|
+
version = "0.53.0"
|
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
+
checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8"
|
|
2412
|
+
dependencies = [
|
|
2413
|
+
"log",
|
|
2414
|
+
"serde",
|
|
2415
|
+
]
|
|
2416
|
+
|
|
2417
|
+
[[package]]
|
|
2418
|
+
name = "stable_deref_trait"
|
|
2419
|
+
version = "1.2.1"
|
|
2420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2421
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2422
|
+
|
|
2423
|
+
[[package]]
|
|
2424
|
+
name = "strsim"
|
|
2425
|
+
version = "0.11.1"
|
|
2426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2427
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2428
|
+
|
|
2429
|
+
[[package]]
|
|
2430
|
+
name = "strum"
|
|
2431
|
+
version = "0.27.2"
|
|
2432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2433
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
2434
|
+
dependencies = [
|
|
2435
|
+
"strum_macros",
|
|
2436
|
+
]
|
|
2437
|
+
|
|
2438
|
+
[[package]]
|
|
2439
|
+
name = "strum_macros"
|
|
2440
|
+
version = "0.27.2"
|
|
2441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
2443
|
+
dependencies = [
|
|
2444
|
+
"heck",
|
|
2445
|
+
"proc-macro2",
|
|
2446
|
+
"quote",
|
|
2447
|
+
"syn 2.0.117",
|
|
2448
|
+
]
|
|
2449
|
+
|
|
2450
|
+
[[package]]
|
|
2451
|
+
name = "subtle"
|
|
2452
|
+
version = "2.6.1"
|
|
2453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2454
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2455
|
+
|
|
2456
|
+
[[package]]
|
|
2457
|
+
name = "syn"
|
|
2458
|
+
version = "1.0.109"
|
|
2459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2460
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2461
|
+
dependencies = [
|
|
2462
|
+
"proc-macro2",
|
|
2463
|
+
"quote",
|
|
2464
|
+
"unicode-ident",
|
|
2465
|
+
]
|
|
2466
|
+
|
|
2467
|
+
[[package]]
|
|
2468
|
+
name = "syn"
|
|
2469
|
+
version = "2.0.117"
|
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
2472
|
+
dependencies = [
|
|
2473
|
+
"proc-macro2",
|
|
2474
|
+
"quote",
|
|
2475
|
+
"unicode-ident",
|
|
2476
|
+
]
|
|
2477
|
+
|
|
2478
|
+
[[package]]
|
|
2479
|
+
name = "sync_wrapper"
|
|
2480
|
+
version = "1.0.2"
|
|
2481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2482
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2483
|
+
dependencies = [
|
|
2484
|
+
"futures-core",
|
|
2485
|
+
]
|
|
2486
|
+
|
|
2487
|
+
[[package]]
|
|
2488
|
+
name = "synstructure"
|
|
2489
|
+
version = "0.13.2"
|
|
2490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2492
|
+
dependencies = [
|
|
2493
|
+
"proc-macro2",
|
|
2494
|
+
"quote",
|
|
2495
|
+
"syn 2.0.117",
|
|
2496
|
+
]
|
|
2497
|
+
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "tap"
|
|
2500
|
+
version = "1.0.1"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
2503
|
+
|
|
2504
|
+
[[package]]
|
|
2505
|
+
name = "tar"
|
|
2506
|
+
version = "0.4.46"
|
|
2507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2508
|
+
checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
|
|
2509
|
+
dependencies = [
|
|
2510
|
+
"filetime",
|
|
2511
|
+
"libc",
|
|
2512
|
+
"xattr",
|
|
2513
|
+
]
|
|
2514
|
+
|
|
2515
|
+
[[package]]
|
|
2516
|
+
name = "target-lexicon"
|
|
2517
|
+
version = "0.12.16"
|
|
2518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2519
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
2520
|
+
|
|
2521
|
+
[[package]]
|
|
2522
|
+
name = "termtree"
|
|
2523
|
+
version = "0.5.1"
|
|
2524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2525
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
2526
|
+
|
|
2527
|
+
[[package]]
|
|
2528
|
+
name = "thiserror"
|
|
2529
|
+
version = "2.0.18"
|
|
2530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2532
|
+
dependencies = [
|
|
2533
|
+
"thiserror-impl",
|
|
2534
|
+
]
|
|
2535
|
+
|
|
2536
|
+
[[package]]
|
|
2537
|
+
name = "thiserror-impl"
|
|
2538
|
+
version = "2.0.18"
|
|
2539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2540
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2541
|
+
dependencies = [
|
|
2542
|
+
"proc-macro2",
|
|
2543
|
+
"quote",
|
|
2544
|
+
"syn 2.0.117",
|
|
2545
|
+
]
|
|
2546
|
+
|
|
2547
|
+
[[package]]
|
|
2548
|
+
name = "tiny-keccak"
|
|
2549
|
+
version = "2.0.2"
|
|
2550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2551
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
2552
|
+
dependencies = [
|
|
2553
|
+
"crunchy",
|
|
2554
|
+
]
|
|
2555
|
+
|
|
2556
|
+
[[package]]
|
|
2557
|
+
name = "tinystr"
|
|
2558
|
+
version = "0.8.3"
|
|
2559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2560
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2561
|
+
dependencies = [
|
|
2562
|
+
"displaydoc",
|
|
2563
|
+
"zerovec",
|
|
2564
|
+
]
|
|
2565
|
+
|
|
2566
|
+
[[package]]
|
|
2567
|
+
name = "tinytemplate"
|
|
2568
|
+
version = "1.2.1"
|
|
2569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
2571
|
+
dependencies = [
|
|
2572
|
+
"serde",
|
|
2573
|
+
"serde_json",
|
|
2574
|
+
]
|
|
2575
|
+
|
|
2576
|
+
[[package]]
|
|
2577
|
+
name = "tinyvec"
|
|
2578
|
+
version = "1.11.0"
|
|
2579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
2581
|
+
dependencies = [
|
|
2582
|
+
"tinyvec_macros",
|
|
2583
|
+
]
|
|
2584
|
+
|
|
2585
|
+
[[package]]
|
|
2586
|
+
name = "tinyvec_macros"
|
|
2587
|
+
version = "0.1.1"
|
|
2588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2589
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2590
|
+
|
|
2591
|
+
[[package]]
|
|
2592
|
+
name = "tokio"
|
|
2593
|
+
version = "1.52.3"
|
|
2594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
2596
|
+
dependencies = [
|
|
2597
|
+
"bytes",
|
|
2598
|
+
"libc",
|
|
2599
|
+
"mio",
|
|
2600
|
+
"pin-project-lite",
|
|
2601
|
+
"socket2",
|
|
2602
|
+
"windows-sys 0.61.2",
|
|
2603
|
+
]
|
|
2604
|
+
|
|
2605
|
+
[[package]]
|
|
2606
|
+
name = "tokio-rustls"
|
|
2607
|
+
version = "0.26.4"
|
|
2608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2609
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2610
|
+
dependencies = [
|
|
2611
|
+
"rustls",
|
|
2612
|
+
"tokio",
|
|
2613
|
+
]
|
|
2614
|
+
|
|
2615
|
+
[[package]]
|
|
2616
|
+
name = "toml_datetime"
|
|
2617
|
+
version = "1.1.1+spec-1.1.0"
|
|
2618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2619
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
2620
|
+
dependencies = [
|
|
2621
|
+
"serde_core",
|
|
2622
|
+
]
|
|
2623
|
+
|
|
2624
|
+
[[package]]
|
|
2625
|
+
name = "toml_edit"
|
|
2626
|
+
version = "0.25.11+spec-1.1.0"
|
|
2627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
+
checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b"
|
|
2629
|
+
dependencies = [
|
|
2630
|
+
"indexmap",
|
|
2631
|
+
"toml_datetime",
|
|
2632
|
+
"toml_parser",
|
|
2633
|
+
"winnow",
|
|
2634
|
+
]
|
|
2635
|
+
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "toml_parser"
|
|
2638
|
+
version = "1.1.2+spec-1.1.0"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
2641
|
+
dependencies = [
|
|
2642
|
+
"winnow",
|
|
2643
|
+
]
|
|
2644
|
+
|
|
2645
|
+
[[package]]
|
|
2646
|
+
name = "tower"
|
|
2647
|
+
version = "0.5.3"
|
|
2648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2649
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
2650
|
+
dependencies = [
|
|
2651
|
+
"futures-core",
|
|
2652
|
+
"futures-util",
|
|
2653
|
+
"pin-project-lite",
|
|
2654
|
+
"sync_wrapper",
|
|
2655
|
+
"tokio",
|
|
2656
|
+
"tower-layer",
|
|
2657
|
+
"tower-service",
|
|
2658
|
+
]
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "tower-http"
|
|
2662
|
+
version = "0.6.11"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
2665
|
+
dependencies = [
|
|
2666
|
+
"bitflags",
|
|
2667
|
+
"bytes",
|
|
2668
|
+
"futures-util",
|
|
2669
|
+
"http",
|
|
2670
|
+
"http-body",
|
|
2671
|
+
"pin-project-lite",
|
|
2672
|
+
"tower",
|
|
2673
|
+
"tower-layer",
|
|
2674
|
+
"tower-service",
|
|
2675
|
+
"url",
|
|
2676
|
+
]
|
|
2677
|
+
|
|
2678
|
+
[[package]]
|
|
2679
|
+
name = "tower-layer"
|
|
2680
|
+
version = "0.3.3"
|
|
2681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2682
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
2683
|
+
|
|
2684
|
+
[[package]]
|
|
2685
|
+
name = "tower-service"
|
|
2686
|
+
version = "0.3.3"
|
|
2687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2689
|
+
|
|
2690
|
+
[[package]]
|
|
2691
|
+
name = "tracing"
|
|
2692
|
+
version = "0.1.44"
|
|
2693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2695
|
+
dependencies = [
|
|
2696
|
+
"pin-project-lite",
|
|
2697
|
+
"tracing-core",
|
|
2698
|
+
]
|
|
2699
|
+
|
|
2700
|
+
[[package]]
|
|
2701
|
+
name = "tracing-core"
|
|
2702
|
+
version = "0.1.36"
|
|
2703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2704
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2705
|
+
dependencies = [
|
|
2706
|
+
"once_cell",
|
|
2707
|
+
]
|
|
2708
|
+
|
|
2709
|
+
[[package]]
|
|
2710
|
+
name = "try-lock"
|
|
2711
|
+
version = "0.2.5"
|
|
2712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2713
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2714
|
+
|
|
2715
|
+
[[package]]
|
|
2716
|
+
name = "typenum"
|
|
2717
|
+
version = "1.20.1"
|
|
2718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2719
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
2720
|
+
|
|
2721
|
+
[[package]]
|
|
2722
|
+
name = "ucd-trie"
|
|
2723
|
+
version = "0.1.7"
|
|
2724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
2726
|
+
|
|
2727
|
+
[[package]]
|
|
2728
|
+
name = "unicode-ident"
|
|
2729
|
+
version = "1.0.24"
|
|
2730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2731
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2732
|
+
|
|
2733
|
+
[[package]]
|
|
2734
|
+
name = "unicode-segmentation"
|
|
2735
|
+
version = "1.13.2"
|
|
2736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
2738
|
+
|
|
2739
|
+
[[package]]
|
|
2740
|
+
name = "unicode-width"
|
|
2741
|
+
version = "0.2.2"
|
|
2742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
2744
|
+
|
|
2745
|
+
[[package]]
|
|
2746
|
+
name = "unindent"
|
|
2747
|
+
version = "0.2.4"
|
|
2748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2749
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
2750
|
+
|
|
2751
|
+
[[package]]
|
|
2752
|
+
name = "untrusted"
|
|
2753
|
+
version = "0.9.0"
|
|
2754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2755
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2756
|
+
|
|
2757
|
+
[[package]]
|
|
2758
|
+
name = "url"
|
|
2759
|
+
version = "2.5.8"
|
|
2760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2762
|
+
dependencies = [
|
|
2763
|
+
"form_urlencoded",
|
|
2764
|
+
"idna",
|
|
2765
|
+
"percent-encoding",
|
|
2766
|
+
"serde",
|
|
2767
|
+
]
|
|
2768
|
+
|
|
2769
|
+
[[package]]
|
|
2770
|
+
name = "utf8_iter"
|
|
2771
|
+
version = "1.0.4"
|
|
2772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2773
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2774
|
+
|
|
2775
|
+
[[package]]
|
|
2776
|
+
name = "utf8parse"
|
|
2777
|
+
version = "0.2.2"
|
|
2778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2780
|
+
|
|
2781
|
+
[[package]]
|
|
2782
|
+
name = "uuid"
|
|
2783
|
+
version = "1.23.1"
|
|
2784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2785
|
+
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
2786
|
+
dependencies = [
|
|
2787
|
+
"js-sys",
|
|
2788
|
+
"wasm-bindgen",
|
|
2789
|
+
]
|
|
2790
|
+
|
|
2791
|
+
[[package]]
|
|
2792
|
+
name = "vcpkg"
|
|
2793
|
+
version = "0.2.15"
|
|
2794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2795
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2796
|
+
|
|
2797
|
+
[[package]]
|
|
2798
|
+
name = "version_check"
|
|
2799
|
+
version = "0.9.5"
|
|
2800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2801
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2802
|
+
|
|
2803
|
+
[[package]]
|
|
2804
|
+
name = "wait-timeout"
|
|
2805
|
+
version = "0.2.1"
|
|
2806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2807
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
2808
|
+
dependencies = [
|
|
2809
|
+
"libc",
|
|
2810
|
+
]
|
|
2811
|
+
|
|
2812
|
+
[[package]]
|
|
2813
|
+
name = "walkdir"
|
|
2814
|
+
version = "2.5.0"
|
|
2815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2816
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2817
|
+
dependencies = [
|
|
2818
|
+
"same-file",
|
|
2819
|
+
"winapi-util",
|
|
2820
|
+
]
|
|
2821
|
+
|
|
2822
|
+
[[package]]
|
|
2823
|
+
name = "want"
|
|
2824
|
+
version = "0.3.1"
|
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2827
|
+
dependencies = [
|
|
2828
|
+
"try-lock",
|
|
2829
|
+
]
|
|
2830
|
+
|
|
2831
|
+
[[package]]
|
|
2832
|
+
name = "wasi"
|
|
2833
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2835
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2836
|
+
|
|
2837
|
+
[[package]]
|
|
2838
|
+
name = "wasip2"
|
|
2839
|
+
version = "1.0.3+wasi-0.2.9"
|
|
2840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2841
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
2842
|
+
dependencies = [
|
|
2843
|
+
"wit-bindgen",
|
|
2844
|
+
]
|
|
2845
|
+
|
|
2846
|
+
[[package]]
|
|
2847
|
+
name = "wasm-bindgen"
|
|
2848
|
+
version = "0.2.122"
|
|
2849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2850
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
2851
|
+
dependencies = [
|
|
2852
|
+
"cfg-if",
|
|
2853
|
+
"once_cell",
|
|
2854
|
+
"rustversion",
|
|
2855
|
+
"serde",
|
|
2856
|
+
"wasm-bindgen-macro",
|
|
2857
|
+
"wasm-bindgen-shared",
|
|
2858
|
+
]
|
|
2859
|
+
|
|
2860
|
+
[[package]]
|
|
2861
|
+
name = "wasm-bindgen-futures"
|
|
2862
|
+
version = "0.4.72"
|
|
2863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2864
|
+
checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
|
|
2865
|
+
dependencies = [
|
|
2866
|
+
"js-sys",
|
|
2867
|
+
"wasm-bindgen",
|
|
2868
|
+
]
|
|
2869
|
+
|
|
2870
|
+
[[package]]
|
|
2871
|
+
name = "wasm-bindgen-macro"
|
|
2872
|
+
version = "0.2.122"
|
|
2873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2874
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
2875
|
+
dependencies = [
|
|
2876
|
+
"quote",
|
|
2877
|
+
"wasm-bindgen-macro-support",
|
|
2878
|
+
]
|
|
2879
|
+
|
|
2880
|
+
[[package]]
|
|
2881
|
+
name = "wasm-bindgen-macro-support"
|
|
2882
|
+
version = "0.2.122"
|
|
2883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2884
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
2885
|
+
dependencies = [
|
|
2886
|
+
"bumpalo",
|
|
2887
|
+
"proc-macro2",
|
|
2888
|
+
"quote",
|
|
2889
|
+
"syn 2.0.117",
|
|
2890
|
+
"wasm-bindgen-shared",
|
|
2891
|
+
]
|
|
2892
|
+
|
|
2893
|
+
[[package]]
|
|
2894
|
+
name = "wasm-bindgen-shared"
|
|
2895
|
+
version = "0.2.122"
|
|
2896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
2898
|
+
dependencies = [
|
|
2899
|
+
"unicode-ident",
|
|
2900
|
+
]
|
|
2901
|
+
|
|
2902
|
+
[[package]]
|
|
2903
|
+
name = "web-sys"
|
|
2904
|
+
version = "0.3.99"
|
|
2905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2906
|
+
checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
|
|
2907
|
+
dependencies = [
|
|
2908
|
+
"js-sys",
|
|
2909
|
+
"wasm-bindgen",
|
|
2910
|
+
]
|
|
2911
|
+
|
|
2912
|
+
[[package]]
|
|
2913
|
+
name = "web-time"
|
|
2914
|
+
version = "1.1.0"
|
|
2915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2916
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2917
|
+
dependencies = [
|
|
2918
|
+
"js-sys",
|
|
2919
|
+
"wasm-bindgen",
|
|
2920
|
+
]
|
|
2921
|
+
|
|
2922
|
+
[[package]]
|
|
2923
|
+
name = "webpki-roots"
|
|
2924
|
+
version = "1.0.7"
|
|
2925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2926
|
+
checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
|
|
2927
|
+
dependencies = [
|
|
2928
|
+
"rustls-pki-types",
|
|
2929
|
+
]
|
|
2930
|
+
|
|
2931
|
+
[[package]]
|
|
2932
|
+
name = "winapi"
|
|
2933
|
+
version = "0.3.9"
|
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2936
|
+
dependencies = [
|
|
2937
|
+
"winapi-i686-pc-windows-gnu",
|
|
2938
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2939
|
+
]
|
|
2940
|
+
|
|
2941
|
+
[[package]]
|
|
2942
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2943
|
+
version = "0.4.0"
|
|
2944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2945
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2946
|
+
|
|
2947
|
+
[[package]]
|
|
2948
|
+
name = "winapi-util"
|
|
2949
|
+
version = "0.1.11"
|
|
2950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2951
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2952
|
+
dependencies = [
|
|
2953
|
+
"windows-sys 0.61.2",
|
|
2954
|
+
]
|
|
2955
|
+
|
|
2956
|
+
[[package]]
|
|
2957
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2958
|
+
version = "0.4.0"
|
|
2959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2961
|
+
|
|
2962
|
+
[[package]]
|
|
2963
|
+
name = "windows-core"
|
|
2964
|
+
version = "0.62.2"
|
|
2965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2966
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2967
|
+
dependencies = [
|
|
2968
|
+
"windows-implement",
|
|
2969
|
+
"windows-interface",
|
|
2970
|
+
"windows-link",
|
|
2971
|
+
"windows-result",
|
|
2972
|
+
"windows-strings",
|
|
2973
|
+
]
|
|
2974
|
+
|
|
2975
|
+
[[package]]
|
|
2976
|
+
name = "windows-implement"
|
|
2977
|
+
version = "0.60.2"
|
|
2978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2979
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2980
|
+
dependencies = [
|
|
2981
|
+
"proc-macro2",
|
|
2982
|
+
"quote",
|
|
2983
|
+
"syn 2.0.117",
|
|
2984
|
+
]
|
|
2985
|
+
|
|
2986
|
+
[[package]]
|
|
2987
|
+
name = "windows-interface"
|
|
2988
|
+
version = "0.59.3"
|
|
2989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2991
|
+
dependencies = [
|
|
2992
|
+
"proc-macro2",
|
|
2993
|
+
"quote",
|
|
2994
|
+
"syn 2.0.117",
|
|
2995
|
+
]
|
|
2996
|
+
|
|
2997
|
+
[[package]]
|
|
2998
|
+
name = "windows-link"
|
|
2999
|
+
version = "0.2.1"
|
|
3000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3001
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3002
|
+
|
|
3003
|
+
[[package]]
|
|
3004
|
+
name = "windows-result"
|
|
3005
|
+
version = "0.4.1"
|
|
3006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3007
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3008
|
+
dependencies = [
|
|
3009
|
+
"windows-link",
|
|
3010
|
+
]
|
|
3011
|
+
|
|
3012
|
+
[[package]]
|
|
3013
|
+
name = "windows-strings"
|
|
3014
|
+
version = "0.5.1"
|
|
3015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3016
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3017
|
+
dependencies = [
|
|
3018
|
+
"windows-link",
|
|
3019
|
+
]
|
|
3020
|
+
|
|
3021
|
+
[[package]]
|
|
3022
|
+
name = "windows-sys"
|
|
3023
|
+
version = "0.52.0"
|
|
3024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3025
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3026
|
+
dependencies = [
|
|
3027
|
+
"windows-targets 0.52.6",
|
|
3028
|
+
]
|
|
3029
|
+
|
|
3030
|
+
[[package]]
|
|
3031
|
+
name = "windows-sys"
|
|
3032
|
+
version = "0.59.0"
|
|
3033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3034
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3035
|
+
dependencies = [
|
|
3036
|
+
"windows-targets 0.52.6",
|
|
3037
|
+
]
|
|
3038
|
+
|
|
3039
|
+
[[package]]
|
|
3040
|
+
name = "windows-sys"
|
|
3041
|
+
version = "0.60.2"
|
|
3042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3043
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3044
|
+
dependencies = [
|
|
3045
|
+
"windows-targets 0.53.5",
|
|
3046
|
+
]
|
|
3047
|
+
|
|
3048
|
+
[[package]]
|
|
3049
|
+
name = "windows-sys"
|
|
3050
|
+
version = "0.61.2"
|
|
3051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3052
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3053
|
+
dependencies = [
|
|
3054
|
+
"windows-link",
|
|
3055
|
+
]
|
|
3056
|
+
|
|
3057
|
+
[[package]]
|
|
3058
|
+
name = "windows-targets"
|
|
3059
|
+
version = "0.52.6"
|
|
3060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3061
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3062
|
+
dependencies = [
|
|
3063
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3064
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3065
|
+
"windows_i686_gnu 0.52.6",
|
|
3066
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3067
|
+
"windows_i686_msvc 0.52.6",
|
|
3068
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3069
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3070
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3071
|
+
]
|
|
3072
|
+
|
|
3073
|
+
[[package]]
|
|
3074
|
+
name = "windows-targets"
|
|
3075
|
+
version = "0.53.5"
|
|
3076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3078
|
+
dependencies = [
|
|
3079
|
+
"windows-link",
|
|
3080
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3081
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3082
|
+
"windows_i686_gnu 0.53.1",
|
|
3083
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3084
|
+
"windows_i686_msvc 0.53.1",
|
|
3085
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3086
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3087
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3088
|
+
]
|
|
3089
|
+
|
|
3090
|
+
[[package]]
|
|
3091
|
+
name = "windows_aarch64_gnullvm"
|
|
3092
|
+
version = "0.52.6"
|
|
3093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3094
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3095
|
+
|
|
3096
|
+
[[package]]
|
|
3097
|
+
name = "windows_aarch64_gnullvm"
|
|
3098
|
+
version = "0.53.1"
|
|
3099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3100
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3101
|
+
|
|
3102
|
+
[[package]]
|
|
3103
|
+
name = "windows_aarch64_msvc"
|
|
3104
|
+
version = "0.52.6"
|
|
3105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3106
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3107
|
+
|
|
3108
|
+
[[package]]
|
|
3109
|
+
name = "windows_aarch64_msvc"
|
|
3110
|
+
version = "0.53.1"
|
|
3111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3112
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3113
|
+
|
|
3114
|
+
[[package]]
|
|
3115
|
+
name = "windows_i686_gnu"
|
|
3116
|
+
version = "0.52.6"
|
|
3117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3118
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3119
|
+
|
|
3120
|
+
[[package]]
|
|
3121
|
+
name = "windows_i686_gnu"
|
|
3122
|
+
version = "0.53.1"
|
|
3123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3124
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3125
|
+
|
|
3126
|
+
[[package]]
|
|
3127
|
+
name = "windows_i686_gnullvm"
|
|
3128
|
+
version = "0.52.6"
|
|
3129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3130
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3131
|
+
|
|
3132
|
+
[[package]]
|
|
3133
|
+
name = "windows_i686_gnullvm"
|
|
3134
|
+
version = "0.53.1"
|
|
3135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3136
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3137
|
+
|
|
3138
|
+
[[package]]
|
|
3139
|
+
name = "windows_i686_msvc"
|
|
3140
|
+
version = "0.52.6"
|
|
3141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3142
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3143
|
+
|
|
3144
|
+
[[package]]
|
|
3145
|
+
name = "windows_i686_msvc"
|
|
3146
|
+
version = "0.53.1"
|
|
3147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3148
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3149
|
+
|
|
3150
|
+
[[package]]
|
|
3151
|
+
name = "windows_x86_64_gnu"
|
|
3152
|
+
version = "0.52.6"
|
|
3153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3155
|
+
|
|
3156
|
+
[[package]]
|
|
3157
|
+
name = "windows_x86_64_gnu"
|
|
3158
|
+
version = "0.53.1"
|
|
3159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3160
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3161
|
+
|
|
3162
|
+
[[package]]
|
|
3163
|
+
name = "windows_x86_64_gnullvm"
|
|
3164
|
+
version = "0.52.6"
|
|
3165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3166
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3167
|
+
|
|
3168
|
+
[[package]]
|
|
3169
|
+
name = "windows_x86_64_gnullvm"
|
|
3170
|
+
version = "0.53.1"
|
|
3171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3172
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3173
|
+
|
|
3174
|
+
[[package]]
|
|
3175
|
+
name = "windows_x86_64_msvc"
|
|
3176
|
+
version = "0.52.6"
|
|
3177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3178
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3179
|
+
|
|
3180
|
+
[[package]]
|
|
3181
|
+
name = "windows_x86_64_msvc"
|
|
3182
|
+
version = "0.53.1"
|
|
3183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3184
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3185
|
+
|
|
3186
|
+
[[package]]
|
|
3187
|
+
name = "winnow"
|
|
3188
|
+
version = "1.0.3"
|
|
3189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3190
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
3191
|
+
dependencies = [
|
|
3192
|
+
"memchr",
|
|
3193
|
+
]
|
|
3194
|
+
|
|
3195
|
+
[[package]]
|
|
3196
|
+
name = "wit-bindgen"
|
|
3197
|
+
version = "0.57.1"
|
|
3198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3199
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3200
|
+
|
|
3201
|
+
[[package]]
|
|
3202
|
+
name = "writeable"
|
|
3203
|
+
version = "0.6.3"
|
|
3204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3205
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
3206
|
+
|
|
3207
|
+
[[package]]
|
|
3208
|
+
name = "wyz"
|
|
3209
|
+
version = "0.5.1"
|
|
3210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3211
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
3212
|
+
dependencies = [
|
|
3213
|
+
"tap",
|
|
3214
|
+
]
|
|
3215
|
+
|
|
3216
|
+
[[package]]
|
|
3217
|
+
name = "xattr"
|
|
3218
|
+
version = "1.6.1"
|
|
3219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3220
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
3221
|
+
dependencies = [
|
|
3222
|
+
"libc",
|
|
3223
|
+
"rustix 1.1.4",
|
|
3224
|
+
]
|
|
3225
|
+
|
|
3226
|
+
[[package]]
|
|
3227
|
+
name = "yansi"
|
|
3228
|
+
version = "1.0.1"
|
|
3229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3230
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
3231
|
+
|
|
3232
|
+
[[package]]
|
|
3233
|
+
name = "yoke"
|
|
3234
|
+
version = "0.8.2"
|
|
3235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3236
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
3237
|
+
dependencies = [
|
|
3238
|
+
"stable_deref_trait",
|
|
3239
|
+
"yoke-derive",
|
|
3240
|
+
"zerofrom",
|
|
3241
|
+
]
|
|
3242
|
+
|
|
3243
|
+
[[package]]
|
|
3244
|
+
name = "yoke-derive"
|
|
3245
|
+
version = "0.8.2"
|
|
3246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3247
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3248
|
+
dependencies = [
|
|
3249
|
+
"proc-macro2",
|
|
3250
|
+
"quote",
|
|
3251
|
+
"syn 2.0.117",
|
|
3252
|
+
"synstructure",
|
|
3253
|
+
]
|
|
3254
|
+
|
|
3255
|
+
[[package]]
|
|
3256
|
+
name = "zerocopy"
|
|
3257
|
+
version = "0.8.48"
|
|
3258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3259
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
3260
|
+
dependencies = [
|
|
3261
|
+
"zerocopy-derive",
|
|
3262
|
+
]
|
|
3263
|
+
|
|
3264
|
+
[[package]]
|
|
3265
|
+
name = "zerocopy-derive"
|
|
3266
|
+
version = "0.8.48"
|
|
3267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3268
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
3269
|
+
dependencies = [
|
|
3270
|
+
"proc-macro2",
|
|
3271
|
+
"quote",
|
|
3272
|
+
"syn 2.0.117",
|
|
3273
|
+
]
|
|
3274
|
+
|
|
3275
|
+
[[package]]
|
|
3276
|
+
name = "zerofrom"
|
|
3277
|
+
version = "0.1.8"
|
|
3278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3279
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
3280
|
+
dependencies = [
|
|
3281
|
+
"zerofrom-derive",
|
|
3282
|
+
]
|
|
3283
|
+
|
|
3284
|
+
[[package]]
|
|
3285
|
+
name = "zerofrom-derive"
|
|
3286
|
+
version = "0.1.7"
|
|
3287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3288
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3289
|
+
dependencies = [
|
|
3290
|
+
"proc-macro2",
|
|
3291
|
+
"quote",
|
|
3292
|
+
"syn 2.0.117",
|
|
3293
|
+
"synstructure",
|
|
3294
|
+
]
|
|
3295
|
+
|
|
3296
|
+
[[package]]
|
|
3297
|
+
name = "zeroize"
|
|
3298
|
+
version = "1.8.2"
|
|
3299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3300
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3301
|
+
|
|
3302
|
+
[[package]]
|
|
3303
|
+
name = "zerotrie"
|
|
3304
|
+
version = "0.2.4"
|
|
3305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3306
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
3307
|
+
dependencies = [
|
|
3308
|
+
"displaydoc",
|
|
3309
|
+
"yoke",
|
|
3310
|
+
"zerofrom",
|
|
3311
|
+
]
|
|
3312
|
+
|
|
3313
|
+
[[package]]
|
|
3314
|
+
name = "zerovec"
|
|
3315
|
+
version = "0.11.6"
|
|
3316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3317
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3318
|
+
dependencies = [
|
|
3319
|
+
"yoke",
|
|
3320
|
+
"zerofrom",
|
|
3321
|
+
"zerovec-derive",
|
|
3322
|
+
]
|
|
3323
|
+
|
|
3324
|
+
[[package]]
|
|
3325
|
+
name = "zerovec-derive"
|
|
3326
|
+
version = "0.11.3"
|
|
3327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3328
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
3329
|
+
dependencies = [
|
|
3330
|
+
"proc-macro2",
|
|
3331
|
+
"quote",
|
|
3332
|
+
"syn 2.0.117",
|
|
3333
|
+
]
|
|
3334
|
+
|
|
3335
|
+
[[package]]
|
|
3336
|
+
name = "zip"
|
|
3337
|
+
version = "6.0.0"
|
|
3338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3339
|
+
checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b"
|
|
3340
|
+
dependencies = [
|
|
3341
|
+
"arbitrary",
|
|
3342
|
+
"crc32fast",
|
|
3343
|
+
"flate2",
|
|
3344
|
+
"indexmap",
|
|
3345
|
+
"memchr",
|
|
3346
|
+
"zopfli",
|
|
3347
|
+
]
|
|
3348
|
+
|
|
3349
|
+
[[package]]
|
|
3350
|
+
name = "zlib-rs"
|
|
3351
|
+
version = "0.6.3"
|
|
3352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3353
|
+
checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
|
|
3354
|
+
|
|
3355
|
+
[[package]]
|
|
3356
|
+
name = "zmij"
|
|
3357
|
+
version = "1.0.21"
|
|
3358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3359
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
3360
|
+
|
|
3361
|
+
[[package]]
|
|
3362
|
+
name = "zopfli"
|
|
3363
|
+
version = "0.8.3"
|
|
3364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3365
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
3366
|
+
dependencies = [
|
|
3367
|
+
"bumpalo",
|
|
3368
|
+
"crc32fast",
|
|
3369
|
+
"log",
|
|
3370
|
+
"simd-adler32",
|
|
3371
|
+
]
|