polars-df 0.15.0 → 0.26.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +274 -0
- data/Cargo.lock +1465 -867
- data/Cargo.toml +3 -0
- data/LICENSE.txt +2 -2
- data/README.md +87 -37
- data/ext/polars/Cargo.toml +47 -16
- data/ext/polars/src/c_api/allocator.rs +7 -0
- data/ext/polars/src/c_api/mod.rs +1 -0
- data/ext/polars/src/catalog/mod.rs +1 -0
- data/ext/polars/src/catalog/unity.rs +470 -0
- data/ext/polars/src/conversion/any_value.rs +99 -84
- data/ext/polars/src/conversion/categorical.rs +30 -0
- data/ext/polars/src/conversion/chunked_array.rs +71 -62
- data/ext/polars/src/conversion/datetime.rs +63 -0
- data/ext/polars/src/conversion/mod.rs +796 -312
- data/ext/polars/src/dataframe/construction.rs +6 -18
- data/ext/polars/src/dataframe/export.rs +30 -39
- data/ext/polars/src/dataframe/general.rs +294 -362
- data/ext/polars/src/dataframe/io.rs +33 -150
- data/ext/polars/src/dataframe/map.rs +175 -0
- data/ext/polars/src/dataframe/mod.rs +37 -5
- data/ext/polars/src/dataframe/serde.rs +23 -8
- data/ext/polars/src/error.rs +44 -7
- data/ext/polars/src/exceptions.rs +21 -8
- data/ext/polars/src/expr/array.rs +86 -22
- data/ext/polars/src/expr/binary.rs +50 -1
- data/ext/polars/src/expr/bitwise.rs +39 -0
- data/ext/polars/src/expr/categorical.rs +20 -0
- data/ext/polars/src/expr/datatype.rs +51 -0
- data/ext/polars/src/expr/datetime.rs +99 -41
- data/ext/polars/src/expr/extension.rs +12 -0
- data/ext/polars/src/expr/general.rs +252 -128
- data/ext/polars/src/expr/list.rs +56 -60
- data/ext/polars/src/expr/meta.rs +30 -35
- data/ext/polars/src/expr/mod.rs +28 -6
- data/ext/polars/src/expr/name.rs +29 -14
- data/ext/polars/src/expr/rolling.rs +111 -3
- data/ext/polars/src/expr/selector.rs +219 -0
- data/ext/polars/src/expr/serde.rs +28 -0
- data/ext/polars/src/expr/string.rs +118 -20
- data/ext/polars/src/expr/struct.rs +14 -1
- data/ext/polars/src/file.rs +194 -86
- data/ext/polars/src/functions/aggregation.rs +13 -12
- data/ext/polars/src/functions/business.rs +2 -3
- data/ext/polars/src/functions/eager.rs +3 -2
- data/ext/polars/src/functions/io.rs +90 -18
- data/ext/polars/src/functions/lazy.rs +267 -118
- data/ext/polars/src/functions/meta.rs +8 -7
- data/ext/polars/src/functions/misc.rs +1 -1
- data/ext/polars/src/functions/mod.rs +2 -1
- data/ext/polars/src/functions/range.rs +88 -31
- data/ext/polars/src/functions/strings.rs +6 -0
- data/ext/polars/src/functions/utils.rs +8 -0
- data/ext/polars/src/interop/arrow/mod.rs +52 -1
- data/ext/polars/src/interop/arrow/{to_ruby.rs → to_rb.rs} +37 -7
- data/ext/polars/src/interop/arrow/to_rust.rs +43 -0
- data/ext/polars/src/interop/numo/to_numo_df.rs +1 -1
- data/ext/polars/src/interop/numo/to_numo_series.rs +72 -50
- data/ext/polars/src/io/cloud_options.rs +107 -0
- data/ext/polars/src/io/mod.rs +4 -0
- data/ext/polars/src/io/scan_options.rs +113 -0
- data/ext/polars/src/io/sink_options.rs +46 -0
- data/ext/polars/src/io/sink_output.rs +21 -0
- data/ext/polars/src/lazyframe/exitable.rs +39 -0
- data/ext/polars/src/lazyframe/general.rs +846 -368
- data/ext/polars/src/lazyframe/mod.rs +58 -5
- data/ext/polars/src/lazyframe/optflags.rs +59 -0
- data/ext/polars/src/lazyframe/serde.rs +36 -4
- data/ext/polars/src/lazyframe/sink.rs +46 -0
- data/ext/polars/src/lazygroupby.rs +38 -9
- data/ext/polars/src/lib.rs +574 -165
- data/ext/polars/src/map/lazy.rs +44 -74
- data/ext/polars/src/map/mod.rs +18 -254
- data/ext/polars/src/map/series.rs +241 -1087
- data/ext/polars/src/on_startup.rs +192 -9
- data/ext/polars/src/prelude.rs +1 -0
- data/ext/polars/src/rb_modules.rs +10 -57
- data/ext/polars/src/ruby/exceptions.rs +26 -0
- data/ext/polars/src/ruby/gvl.rs +104 -0
- data/ext/polars/src/ruby/lazy.rs +46 -0
- data/ext/polars/src/ruby/mod.rs +11 -0
- data/ext/polars/src/ruby/numo.rs +52 -0
- data/ext/polars/src/ruby/plan_callback.rs +198 -0
- data/ext/polars/src/ruby/rb_modules.rs +16 -0
- data/ext/polars/src/ruby/ruby_convert_registry.rs +51 -0
- data/ext/polars/src/ruby/ruby_function.rs +11 -0
- data/ext/polars/src/ruby/ruby_udf.rs +164 -0
- data/ext/polars/src/ruby/thread.rs +65 -0
- data/ext/polars/src/ruby/utils.rs +39 -0
- data/ext/polars/src/series/aggregation.rs +116 -91
- data/ext/polars/src/series/arithmetic.rs +16 -22
- data/ext/polars/src/series/comparison.rs +101 -222
- data/ext/polars/src/series/construction.rs +80 -70
- data/ext/polars/src/series/export.rs +98 -56
- data/ext/polars/src/series/general.rs +323 -440
- data/ext/polars/src/series/import.rs +22 -5
- data/ext/polars/src/series/map.rs +103 -0
- data/ext/polars/src/series/mod.rs +57 -15
- data/ext/polars/src/series/scatter.rs +139 -82
- data/ext/polars/src/sql.rs +16 -9
- data/ext/polars/src/testing/frame.rs +31 -0
- data/ext/polars/src/testing/mod.rs +5 -0
- data/ext/polars/src/testing/series.rs +31 -0
- data/ext/polars/src/timeout.rs +105 -0
- data/ext/polars/src/utils.rs +105 -4
- data/lib/polars/array_expr.rb +500 -22
- data/lib/polars/array_name_space.rb +384 -10
- data/lib/polars/batched_csv_reader.rb +48 -66
- data/lib/polars/binary_expr.rb +217 -0
- data/lib/polars/binary_name_space.rb +155 -1
- data/lib/polars/cat_expr.rb +224 -0
- data/lib/polars/cat_name_space.rb +132 -32
- data/lib/polars/catalog/unity/catalog_info.rb +20 -0
- data/lib/polars/catalog/unity/column_info.rb +31 -0
- data/lib/polars/catalog/unity/namespace_info.rb +21 -0
- data/lib/polars/catalog/unity/table_info.rb +50 -0
- data/lib/polars/catalog.rb +448 -0
- data/lib/polars/collect_batches.rb +22 -0
- data/lib/polars/config.rb +3 -3
- data/lib/polars/convert.rb +201 -36
- data/lib/polars/data_frame.rb +2851 -1017
- data/lib/polars/data_frame_plot.rb +173 -0
- data/lib/polars/data_type_expr.rb +52 -0
- data/lib/polars/data_type_group.rb +6 -0
- data/lib/polars/data_types.rb +118 -18
- data/lib/polars/date_time_expr.rb +426 -84
- data/lib/polars/date_time_name_space.rb +384 -111
- data/lib/polars/dynamic_group_by.rb +102 -10
- data/lib/polars/exceptions.rb +50 -5
- data/lib/polars/expr.rb +2159 -915
- data/lib/polars/extension_expr.rb +39 -0
- data/lib/polars/extension_name_space.rb +39 -0
- data/lib/polars/functions/aggregation/horizontal.rb +11 -6
- data/lib/polars/functions/aggregation/vertical.rb +2 -3
- data/lib/polars/functions/as_datatype.rb +290 -8
- data/lib/polars/functions/business.rb +95 -0
- data/lib/polars/functions/col.rb +6 -5
- data/lib/polars/functions/datatype.rb +62 -0
- data/lib/polars/functions/eager.rb +426 -24
- data/lib/polars/functions/escape_regex.rb +21 -0
- data/lib/polars/functions/lazy.rb +813 -195
- data/lib/polars/functions/lit.rb +21 -10
- data/lib/polars/functions/range/int_range.rb +74 -2
- data/lib/polars/functions/range/linear_space.rb +195 -0
- data/lib/polars/functions/range/time_range.rb +1 -1
- data/lib/polars/functions/repeat.rb +7 -12
- data/lib/polars/functions/whenthen.rb +2 -2
- data/lib/polars/group_by.rb +188 -58
- data/lib/polars/iceberg_dataset.rb +108 -0
- data/lib/polars/in_process_query.rb +37 -0
- data/lib/polars/io/cloud.rb +18 -0
- data/lib/polars/io/csv.rb +336 -128
- data/lib/polars/io/database.rb +19 -4
- data/lib/polars/io/delta.rb +134 -0
- data/lib/polars/io/iceberg.rb +34 -0
- data/lib/polars/io/ipc.rb +63 -63
- data/lib/polars/io/json.rb +16 -0
- data/lib/polars/io/lines.rb +172 -0
- data/lib/polars/io/ndjson.rb +176 -20
- data/lib/polars/io/parquet.rb +173 -95
- data/lib/polars/io/scan_options.rb +55 -0
- data/lib/polars/io/sink_options.rb +27 -0
- data/lib/polars/io/utils.rb +17 -0
- data/lib/polars/lazy_frame.rb +3017 -622
- data/lib/polars/lazy_group_by.rb +436 -2
- data/lib/polars/list_expr.rb +551 -59
- data/lib/polars/list_name_space.rb +465 -51
- data/lib/polars/meta_expr.rb +146 -24
- data/lib/polars/name_expr.rb +87 -2
- data/lib/polars/query_opt_flags.rb +264 -0
- data/lib/polars/rolling_group_by.rb +90 -5
- data/lib/polars/scan_cast_options.rb +86 -0
- data/lib/polars/schema.rb +128 -0
- data/lib/polars/selector.rb +245 -0
- data/lib/polars/selectors.rb +1048 -201
- data/lib/polars/series.rb +2522 -774
- data/lib/polars/series_plot.rb +72 -0
- data/lib/polars/slice.rb +1 -1
- data/lib/polars/sql_context.rb +13 -6
- data/lib/polars/string_cache.rb +19 -72
- data/lib/polars/string_expr.rb +561 -107
- data/lib/polars/string_name_space.rb +781 -109
- data/lib/polars/struct_expr.rb +139 -18
- data/lib/polars/struct_name_space.rb +19 -1
- data/lib/polars/testing.rb +24 -273
- data/lib/polars/utils/constants.rb +2 -0
- data/lib/polars/utils/construction/data_frame.rb +410 -0
- data/lib/polars/utils/construction/series.rb +350 -0
- data/lib/polars/utils/construction/utils.rb +9 -0
- data/lib/polars/utils/convert.rb +18 -8
- data/lib/polars/utils/deprecation.rb +11 -0
- data/lib/polars/utils/parse.rb +62 -9
- data/lib/polars/utils/reduce_balanced.rb +43 -0
- data/lib/polars/utils/serde.rb +22 -0
- data/lib/polars/utils/unstable.rb +19 -0
- data/lib/polars/utils/various.rb +86 -1
- data/lib/polars/utils.rb +63 -48
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +85 -2
- metadata +80 -28
- data/ext/polars/src/allocator.rs +0 -13
- data/ext/polars/src/batched_csv.rs +0 -138
- data/ext/polars/src/functions/string_cache.rs +0 -25
- data/ext/polars/src/map/dataframe.rs +0 -338
- data/lib/polars/plot.rb +0 -109
data/Cargo.lock
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
@@ -25,12 +25,12 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
|
25
25
|
|
|
26
26
|
[[package]]
|
|
27
27
|
name = "ahash"
|
|
28
|
-
version = "0.8.
|
|
28
|
+
version = "0.8.12"
|
|
29
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
-
checksum = "
|
|
30
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
31
31
|
dependencies = [
|
|
32
32
|
"cfg-if",
|
|
33
|
-
"getrandom",
|
|
33
|
+
"getrandom 0.3.3",
|
|
34
34
|
"once_cell",
|
|
35
35
|
"version_check",
|
|
36
36
|
"zerocopy",
|
|
@@ -62,15 +62,9 @@ dependencies = [
|
|
|
62
62
|
|
|
63
63
|
[[package]]
|
|
64
64
|
name = "allocator-api2"
|
|
65
|
-
version = "0.2.
|
|
66
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
-
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
|
68
|
-
|
|
69
|
-
[[package]]
|
|
70
|
-
name = "android-tzdata"
|
|
71
|
-
version = "0.1.1"
|
|
65
|
+
version = "0.2.21"
|
|
72
66
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
-
checksum = "
|
|
67
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
74
68
|
|
|
75
69
|
[[package]]
|
|
76
70
|
name = "android_system_properties"
|
|
@@ -83,18 +77,19 @@ dependencies = [
|
|
|
83
77
|
|
|
84
78
|
[[package]]
|
|
85
79
|
name = "argminmax"
|
|
86
|
-
version = "0.6.
|
|
80
|
+
version = "0.6.3"
|
|
87
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
-
checksum = "
|
|
82
|
+
checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
|
|
89
83
|
dependencies = [
|
|
84
|
+
"half",
|
|
90
85
|
"num-traits",
|
|
91
86
|
]
|
|
92
87
|
|
|
93
88
|
[[package]]
|
|
94
89
|
name = "array-init-cursor"
|
|
95
|
-
version = "0.2.
|
|
90
|
+
version = "0.2.1"
|
|
96
91
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
-
checksum = "
|
|
92
|
+
checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
|
|
98
93
|
|
|
99
94
|
[[package]]
|
|
100
95
|
name = "arrayref"
|
|
@@ -108,6 +103,18 @@ version = "0.7.6"
|
|
|
108
103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
104
|
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
110
105
|
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "async-channel"
|
|
108
|
+
version = "2.3.1"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
|
|
111
|
+
dependencies = [
|
|
112
|
+
"concurrent-queue",
|
|
113
|
+
"event-listener-strategy",
|
|
114
|
+
"futures-core",
|
|
115
|
+
"pin-project-lite",
|
|
116
|
+
]
|
|
117
|
+
|
|
111
118
|
[[package]]
|
|
112
119
|
name = "async-stream"
|
|
113
120
|
version = "0.3.6"
|
|
@@ -127,35 +134,29 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
|
127
134
|
dependencies = [
|
|
128
135
|
"proc-macro2",
|
|
129
136
|
"quote",
|
|
130
|
-
"syn
|
|
137
|
+
"syn",
|
|
131
138
|
]
|
|
132
139
|
|
|
133
140
|
[[package]]
|
|
134
141
|
name = "async-trait"
|
|
135
|
-
version = "0.1.
|
|
142
|
+
version = "0.1.88"
|
|
136
143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
-
checksum = "
|
|
144
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
138
145
|
dependencies = [
|
|
139
146
|
"proc-macro2",
|
|
140
147
|
"quote",
|
|
141
|
-
"syn
|
|
148
|
+
"syn",
|
|
142
149
|
]
|
|
143
150
|
|
|
144
151
|
[[package]]
|
|
145
|
-
name = "
|
|
146
|
-
version = "
|
|
152
|
+
name = "atoi_simd"
|
|
153
|
+
version = "0.17.0"
|
|
147
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
-
checksum = "
|
|
155
|
+
checksum = "8ad17c7c205c2c28b527b9845eeb91cf1b4d008b438f98ce0e628227a822758e"
|
|
149
156
|
dependencies = [
|
|
150
|
-
"
|
|
157
|
+
"debug_unsafe",
|
|
151
158
|
]
|
|
152
159
|
|
|
153
|
-
[[package]]
|
|
154
|
-
name = "atoi_simd"
|
|
155
|
-
version = "0.15.6"
|
|
156
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
-
checksum = "9ae037714f313c1353189ead58ef9eec30a8e8dc101b2622d461418fd59e28a9"
|
|
158
|
-
|
|
159
160
|
[[package]]
|
|
160
161
|
name = "atomic-waker"
|
|
161
162
|
version = "1.1.2"
|
|
@@ -184,9 +185,9 @@ dependencies = [
|
|
|
184
185
|
|
|
185
186
|
[[package]]
|
|
186
187
|
name = "backtrace"
|
|
187
|
-
version = "0.3.
|
|
188
|
+
version = "0.3.75"
|
|
188
189
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
-
checksum = "
|
|
190
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
|
190
191
|
dependencies = [
|
|
191
192
|
"addr2line",
|
|
192
193
|
"cfg-if",
|
|
@@ -194,7 +195,7 @@ dependencies = [
|
|
|
194
195
|
"miniz_oxide",
|
|
195
196
|
"object",
|
|
196
197
|
"rustc-demangle",
|
|
197
|
-
"windows-targets",
|
|
198
|
+
"windows-targets 0.52.6",
|
|
198
199
|
]
|
|
199
200
|
|
|
200
201
|
[[package]]
|
|
@@ -203,6 +204,26 @@ version = "0.22.1"
|
|
|
203
204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
205
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
205
206
|
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "bincode"
|
|
209
|
+
version = "2.0.1"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
|
|
212
|
+
dependencies = [
|
|
213
|
+
"bincode_derive",
|
|
214
|
+
"serde",
|
|
215
|
+
"unty",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "bincode_derive"
|
|
220
|
+
version = "2.0.1"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"virtue",
|
|
225
|
+
]
|
|
226
|
+
|
|
206
227
|
[[package]]
|
|
207
228
|
name = "bindgen"
|
|
208
229
|
version = "0.69.5"
|
|
@@ -220,23 +241,23 @@ dependencies = [
|
|
|
220
241
|
"regex",
|
|
221
242
|
"rustc-hash 1.1.0",
|
|
222
243
|
"shlex",
|
|
223
|
-
"syn
|
|
244
|
+
"syn",
|
|
224
245
|
]
|
|
225
246
|
|
|
226
247
|
[[package]]
|
|
227
248
|
name = "bitflags"
|
|
228
|
-
version = "2.
|
|
249
|
+
version = "2.9.1"
|
|
229
250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
-
checksum = "
|
|
251
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
|
231
252
|
dependencies = [
|
|
232
253
|
"serde",
|
|
233
254
|
]
|
|
234
255
|
|
|
235
256
|
[[package]]
|
|
236
257
|
name = "blake3"
|
|
237
|
-
version = "1.
|
|
258
|
+
version = "1.8.2"
|
|
238
259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
-
checksum = "
|
|
260
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
|
240
261
|
dependencies = [
|
|
241
262
|
"arrayref",
|
|
242
263
|
"arrayvec",
|
|
@@ -254,11 +275,17 @@ dependencies = [
|
|
|
254
275
|
"generic-array",
|
|
255
276
|
]
|
|
256
277
|
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "boxcar"
|
|
280
|
+
version = "0.2.13"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "26c4925bc979b677330a8c7fe7a8c94af2dbb4a2d37b4a20a80d884400f46baa"
|
|
283
|
+
|
|
257
284
|
[[package]]
|
|
258
285
|
name = "brotli"
|
|
259
|
-
version = "
|
|
286
|
+
version = "8.0.1"
|
|
260
287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
-
checksum = "
|
|
288
|
+
checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
|
|
262
289
|
dependencies = [
|
|
263
290
|
"alloc-no-stdlib",
|
|
264
291
|
"alloc-stdlib",
|
|
@@ -267,9 +294,9 @@ dependencies = [
|
|
|
267
294
|
|
|
268
295
|
[[package]]
|
|
269
296
|
name = "brotli-decompressor"
|
|
270
|
-
version = "
|
|
297
|
+
version = "5.0.0"
|
|
271
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
-
checksum = "
|
|
299
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
273
300
|
dependencies = [
|
|
274
301
|
"alloc-no-stdlib",
|
|
275
302
|
"alloc-stdlib",
|
|
@@ -277,28 +304,28 @@ dependencies = [
|
|
|
277
304
|
|
|
278
305
|
[[package]]
|
|
279
306
|
name = "bumpalo"
|
|
280
|
-
version = "3.
|
|
307
|
+
version = "3.17.0"
|
|
281
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
-
checksum = "
|
|
309
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
283
310
|
|
|
284
311
|
[[package]]
|
|
285
312
|
name = "bytemuck"
|
|
286
|
-
version = "1.
|
|
313
|
+
version = "1.23.0"
|
|
287
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
-
checksum = "
|
|
315
|
+
checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
|
|
289
316
|
dependencies = [
|
|
290
317
|
"bytemuck_derive",
|
|
291
318
|
]
|
|
292
319
|
|
|
293
320
|
[[package]]
|
|
294
321
|
name = "bytemuck_derive"
|
|
295
|
-
version = "1.
|
|
322
|
+
version = "1.9.3"
|
|
296
323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
-
checksum = "
|
|
324
|
+
checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
|
|
298
325
|
dependencies = [
|
|
299
326
|
"proc-macro2",
|
|
300
327
|
"quote",
|
|
301
|
-
"syn
|
|
328
|
+
"syn",
|
|
302
329
|
]
|
|
303
330
|
|
|
304
331
|
[[package]]
|
|
@@ -309,9 +336,12 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
309
336
|
|
|
310
337
|
[[package]]
|
|
311
338
|
name = "bytes"
|
|
312
|
-
version = "1.
|
|
339
|
+
version = "1.11.1"
|
|
313
340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
-
checksum = "
|
|
341
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"serde",
|
|
344
|
+
]
|
|
315
345
|
|
|
316
346
|
[[package]]
|
|
317
347
|
name = "castaway"
|
|
@@ -324,9 +354,9 @@ dependencies = [
|
|
|
324
354
|
|
|
325
355
|
[[package]]
|
|
326
356
|
name = "cc"
|
|
327
|
-
version = "1.
|
|
357
|
+
version = "1.2.23"
|
|
328
358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
-
checksum = "
|
|
359
|
+
checksum = "5f4ac86a9e5bc1e2b3449ab9d7d3a6a405e3d1bb28d7b9be8614f55846ae3766"
|
|
330
360
|
dependencies = [
|
|
331
361
|
"jobserver",
|
|
332
362
|
"libc",
|
|
@@ -356,66 +386,26 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
356
386
|
|
|
357
387
|
[[package]]
|
|
358
388
|
name = "chrono"
|
|
359
|
-
version = "0.4.
|
|
389
|
+
version = "0.4.44"
|
|
360
390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
-
checksum = "
|
|
391
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
362
392
|
dependencies = [
|
|
363
|
-
"android-tzdata",
|
|
364
393
|
"iana-time-zone",
|
|
365
394
|
"js-sys",
|
|
366
395
|
"num-traits",
|
|
367
396
|
"serde",
|
|
368
397
|
"wasm-bindgen",
|
|
369
|
-
"windows-
|
|
398
|
+
"windows-link 0.2.1",
|
|
370
399
|
]
|
|
371
400
|
|
|
372
401
|
[[package]]
|
|
373
402
|
name = "chrono-tz"
|
|
374
|
-
version = "0.
|
|
403
|
+
version = "0.10.4"
|
|
375
404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
-
checksum = "
|
|
405
|
+
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
|
377
406
|
dependencies = [
|
|
378
407
|
"chrono",
|
|
379
|
-
"chrono-tz-build",
|
|
380
|
-
"phf",
|
|
381
|
-
]
|
|
382
|
-
|
|
383
|
-
[[package]]
|
|
384
|
-
name = "chrono-tz-build"
|
|
385
|
-
version = "0.2.1"
|
|
386
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
-
checksum = "433e39f13c9a060046954e0592a8d0a4bcb1040125cbf91cb8ee58964cfb350f"
|
|
388
|
-
dependencies = [
|
|
389
|
-
"parse-zoneinfo",
|
|
390
408
|
"phf",
|
|
391
|
-
"phf_codegen",
|
|
392
|
-
]
|
|
393
|
-
|
|
394
|
-
[[package]]
|
|
395
|
-
name = "ciborium"
|
|
396
|
-
version = "0.2.2"
|
|
397
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
-
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
399
|
-
dependencies = [
|
|
400
|
-
"ciborium-io",
|
|
401
|
-
"ciborium-ll",
|
|
402
|
-
"serde",
|
|
403
|
-
]
|
|
404
|
-
|
|
405
|
-
[[package]]
|
|
406
|
-
name = "ciborium-io"
|
|
407
|
-
version = "0.2.2"
|
|
408
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
-
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
410
|
-
|
|
411
|
-
[[package]]
|
|
412
|
-
name = "ciborium-ll"
|
|
413
|
-
version = "0.2.2"
|
|
414
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
-
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
416
|
-
dependencies = [
|
|
417
|
-
"ciborium-io",
|
|
418
|
-
"half",
|
|
419
409
|
]
|
|
420
410
|
|
|
421
411
|
[[package]]
|
|
@@ -431,21 +421,20 @@ dependencies = [
|
|
|
431
421
|
|
|
432
422
|
[[package]]
|
|
433
423
|
name = "comfy-table"
|
|
434
|
-
version = "7.1.
|
|
424
|
+
version = "7.1.4"
|
|
435
425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
-
checksum = "
|
|
426
|
+
checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a"
|
|
437
427
|
dependencies = [
|
|
438
428
|
"crossterm",
|
|
439
|
-
"
|
|
440
|
-
"strum_macros",
|
|
429
|
+
"unicode-segmentation",
|
|
441
430
|
"unicode-width",
|
|
442
431
|
]
|
|
443
432
|
|
|
444
433
|
[[package]]
|
|
445
434
|
name = "compact_str"
|
|
446
|
-
version = "0.
|
|
435
|
+
version = "0.9.0"
|
|
447
436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
-
checksum = "
|
|
437
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
449
438
|
dependencies = [
|
|
450
439
|
"castaway",
|
|
451
440
|
"cfg-if",
|
|
@@ -456,6 +445,15 @@ dependencies = [
|
|
|
456
445
|
"static_assertions",
|
|
457
446
|
]
|
|
458
447
|
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "concurrent-queue"
|
|
450
|
+
version = "2.5.0"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"crossbeam-utils",
|
|
455
|
+
]
|
|
456
|
+
|
|
459
457
|
[[package]]
|
|
460
458
|
name = "constant_time_eq"
|
|
461
459
|
version = "0.3.1"
|
|
@@ -464,9 +462,9 @@ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
|
464
462
|
|
|
465
463
|
[[package]]
|
|
466
464
|
name = "core-foundation"
|
|
467
|
-
version = "0.
|
|
465
|
+
version = "0.10.0"
|
|
468
466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
-
checksum = "
|
|
467
|
+
checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
|
|
470
468
|
dependencies = [
|
|
471
469
|
"core-foundation-sys",
|
|
472
470
|
"libc",
|
|
@@ -478,6 +476,15 @@ version = "0.8.7"
|
|
|
478
476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
477
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
480
478
|
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "cpufeatures"
|
|
481
|
+
version = "0.2.17"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"libc",
|
|
486
|
+
]
|
|
487
|
+
|
|
481
488
|
[[package]]
|
|
482
489
|
name = "crc"
|
|
483
490
|
version = "2.1.0"
|
|
@@ -504,18 +511,18 @@ dependencies = [
|
|
|
504
511
|
|
|
505
512
|
[[package]]
|
|
506
513
|
name = "crossbeam-channel"
|
|
507
|
-
version = "0.5.
|
|
514
|
+
version = "0.5.15"
|
|
508
515
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
-
checksum = "
|
|
516
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
510
517
|
dependencies = [
|
|
511
518
|
"crossbeam-utils",
|
|
512
519
|
]
|
|
513
520
|
|
|
514
521
|
[[package]]
|
|
515
522
|
name = "crossbeam-deque"
|
|
516
|
-
version = "0.8.
|
|
523
|
+
version = "0.8.6"
|
|
517
524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
-
checksum = "
|
|
525
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
519
526
|
dependencies = [
|
|
520
527
|
"crossbeam-epoch",
|
|
521
528
|
"crossbeam-utils",
|
|
@@ -532,29 +539,29 @@ dependencies = [
|
|
|
532
539
|
|
|
533
540
|
[[package]]
|
|
534
541
|
name = "crossbeam-queue"
|
|
535
|
-
version = "0.3.
|
|
542
|
+
version = "0.3.12"
|
|
536
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
-
checksum = "
|
|
544
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
538
545
|
dependencies = [
|
|
539
546
|
"crossbeam-utils",
|
|
540
547
|
]
|
|
541
548
|
|
|
542
549
|
[[package]]
|
|
543
550
|
name = "crossbeam-utils"
|
|
544
|
-
version = "0.8.
|
|
551
|
+
version = "0.8.21"
|
|
545
552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
-
checksum = "
|
|
553
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
547
554
|
|
|
548
555
|
[[package]]
|
|
549
556
|
name = "crossterm"
|
|
550
|
-
version = "0.
|
|
557
|
+
version = "0.28.1"
|
|
551
558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "
|
|
559
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
553
560
|
dependencies = [
|
|
554
561
|
"bitflags",
|
|
555
562
|
"crossterm_winapi",
|
|
556
|
-
"libc",
|
|
557
563
|
"parking_lot",
|
|
564
|
+
"rustix 0.38.44",
|
|
558
565
|
"winapi",
|
|
559
566
|
]
|
|
560
567
|
|
|
@@ -569,9 +576,9 @@ dependencies = [
|
|
|
569
576
|
|
|
570
577
|
[[package]]
|
|
571
578
|
name = "crunchy"
|
|
572
|
-
version = "0.2.
|
|
579
|
+
version = "0.2.4"
|
|
573
580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
-
checksum = "
|
|
581
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
575
582
|
|
|
576
583
|
[[package]]
|
|
577
584
|
name = "crypto-common"
|
|
@@ -583,6 +590,12 @@ dependencies = [
|
|
|
583
590
|
"typenum",
|
|
584
591
|
]
|
|
585
592
|
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "debug_unsafe"
|
|
595
|
+
version = "0.1.3"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "85d3cef41d236720ed453e102153a53e4cc3d2fde848c0078a50cf249e8e3e5b"
|
|
598
|
+
|
|
586
599
|
[[package]]
|
|
587
600
|
name = "digest"
|
|
588
601
|
version = "0.10.7"
|
|
@@ -594,59 +607,73 @@ dependencies = [
|
|
|
594
607
|
]
|
|
595
608
|
|
|
596
609
|
[[package]]
|
|
597
|
-
name = "
|
|
598
|
-
version = "0.
|
|
610
|
+
name = "displaydoc"
|
|
611
|
+
version = "0.2.5"
|
|
599
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
-
checksum = "
|
|
613
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"proc-macro2",
|
|
616
|
+
"quote",
|
|
617
|
+
"syn",
|
|
618
|
+
]
|
|
601
619
|
|
|
602
620
|
[[package]]
|
|
603
621
|
name = "dyn-clone"
|
|
604
|
-
version = "1.0.
|
|
622
|
+
version = "1.0.19"
|
|
605
623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
-
checksum = "
|
|
624
|
+
checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
|
|
607
625
|
|
|
608
626
|
[[package]]
|
|
609
627
|
name = "either"
|
|
610
|
-
version = "1.
|
|
628
|
+
version = "1.15.0"
|
|
611
629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
-
checksum = "
|
|
630
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
613
631
|
dependencies = [
|
|
614
632
|
"serde",
|
|
615
633
|
]
|
|
616
634
|
|
|
617
635
|
[[package]]
|
|
618
|
-
name = "
|
|
619
|
-
version = "0.
|
|
636
|
+
name = "equivalent"
|
|
637
|
+
version = "1.0.2"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "errno"
|
|
643
|
+
version = "0.3.12"
|
|
620
644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
-
checksum = "
|
|
645
|
+
checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
|
|
622
646
|
dependencies = [
|
|
623
|
-
"
|
|
624
|
-
"
|
|
625
|
-
"quote",
|
|
626
|
-
"syn 2.0.85",
|
|
647
|
+
"libc",
|
|
648
|
+
"windows-sys 0.59.0",
|
|
627
649
|
]
|
|
628
650
|
|
|
629
651
|
[[package]]
|
|
630
|
-
name = "
|
|
631
|
-
version = "1.
|
|
652
|
+
name = "ethnum"
|
|
653
|
+
version = "1.5.1"
|
|
632
654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
-
checksum = "
|
|
655
|
+
checksum = "0939f82868b77ef93ce3c3c3daf2b3c526b456741da5a1a4559e590965b6026b"
|
|
634
656
|
|
|
635
657
|
[[package]]
|
|
636
|
-
name = "
|
|
637
|
-
version = "
|
|
658
|
+
name = "event-listener"
|
|
659
|
+
version = "5.4.0"
|
|
638
660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
-
checksum = "
|
|
661
|
+
checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
|
|
640
662
|
dependencies = [
|
|
641
|
-
"
|
|
642
|
-
"
|
|
663
|
+
"concurrent-queue",
|
|
664
|
+
"parking",
|
|
665
|
+
"pin-project-lite",
|
|
643
666
|
]
|
|
644
667
|
|
|
645
668
|
[[package]]
|
|
646
|
-
name = "
|
|
647
|
-
version = "
|
|
669
|
+
name = "event-listener-strategy"
|
|
670
|
+
version = "0.5.4"
|
|
648
671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
-
checksum = "
|
|
672
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"event-listener",
|
|
675
|
+
"pin-project-lite",
|
|
676
|
+
]
|
|
650
677
|
|
|
651
678
|
[[package]]
|
|
652
679
|
name = "fallible-streaming-iterator"
|
|
@@ -655,18 +682,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
655
682
|
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
656
683
|
|
|
657
684
|
[[package]]
|
|
658
|
-
name = "fast-
|
|
659
|
-
version = "0.2.
|
|
685
|
+
name = "fast-float2"
|
|
686
|
+
version = "0.2.3"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "fastrand"
|
|
692
|
+
version = "2.4.1"
|
|
660
693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
-
checksum = "
|
|
694
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
662
695
|
|
|
663
696
|
[[package]]
|
|
664
697
|
name = "flate2"
|
|
665
|
-
version = "1.
|
|
698
|
+
version = "1.1.1"
|
|
666
699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
-
checksum = "
|
|
700
|
+
checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
|
|
668
701
|
dependencies = [
|
|
669
702
|
"crc32fast",
|
|
703
|
+
"libz-rs-sys",
|
|
670
704
|
"miniz_oxide",
|
|
671
705
|
]
|
|
672
706
|
|
|
@@ -687,9 +721,15 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
687
721
|
|
|
688
722
|
[[package]]
|
|
689
723
|
name = "foldhash"
|
|
690
|
-
version = "0.1.
|
|
724
|
+
version = "0.1.5"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "foldhash"
|
|
730
|
+
version = "0.2.0"
|
|
691
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
-
checksum = "
|
|
732
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
693
733
|
|
|
694
734
|
[[package]]
|
|
695
735
|
name = "form_urlencoded"
|
|
@@ -702,12 +742,12 @@ dependencies = [
|
|
|
702
742
|
|
|
703
743
|
[[package]]
|
|
704
744
|
name = "fs4"
|
|
705
|
-
version = "0.
|
|
745
|
+
version = "0.13.1"
|
|
706
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
-
checksum = "
|
|
747
|
+
checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
|
|
708
748
|
dependencies = [
|
|
709
|
-
"rustix",
|
|
710
|
-
"windows-sys 0.
|
|
749
|
+
"rustix 1.0.7",
|
|
750
|
+
"windows-sys 0.59.0",
|
|
711
751
|
]
|
|
712
752
|
|
|
713
753
|
[[package]]
|
|
@@ -766,7 +806,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
|
766
806
|
dependencies = [
|
|
767
807
|
"proc-macro2",
|
|
768
808
|
"quote",
|
|
769
|
-
"syn
|
|
809
|
+
"syn",
|
|
770
810
|
]
|
|
771
811
|
|
|
772
812
|
[[package]]
|
|
@@ -811,14 +851,28 @@ dependencies = [
|
|
|
811
851
|
|
|
812
852
|
[[package]]
|
|
813
853
|
name = "getrandom"
|
|
814
|
-
version = "0.2.
|
|
854
|
+
version = "0.2.16"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
857
|
+
dependencies = [
|
|
858
|
+
"cfg-if",
|
|
859
|
+
"js-sys",
|
|
860
|
+
"libc",
|
|
861
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
862
|
+
"wasm-bindgen",
|
|
863
|
+
]
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "getrandom"
|
|
867
|
+
version = "0.3.3"
|
|
815
868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
-
checksum = "
|
|
869
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
817
870
|
dependencies = [
|
|
818
871
|
"cfg-if",
|
|
819
872
|
"js-sys",
|
|
820
873
|
"libc",
|
|
821
|
-
"
|
|
874
|
+
"r-efi",
|
|
875
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
822
876
|
"wasm-bindgen",
|
|
823
877
|
]
|
|
824
878
|
|
|
@@ -830,15 +884,15 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
|
830
884
|
|
|
831
885
|
[[package]]
|
|
832
886
|
name = "glob"
|
|
833
|
-
version = "0.3.
|
|
887
|
+
version = "0.3.2"
|
|
834
888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
-
checksum = "
|
|
889
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
836
890
|
|
|
837
891
|
[[package]]
|
|
838
892
|
name = "h2"
|
|
839
|
-
version = "0.4.
|
|
893
|
+
version = "0.4.10"
|
|
840
894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
-
checksum = "
|
|
895
|
+
checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
|
|
842
896
|
dependencies = [
|
|
843
897
|
"atomic-waker",
|
|
844
898
|
"bytes",
|
|
@@ -855,67 +909,59 @@ dependencies = [
|
|
|
855
909
|
|
|
856
910
|
[[package]]
|
|
857
911
|
name = "half"
|
|
858
|
-
version = "2.
|
|
912
|
+
version = "2.7.1"
|
|
859
913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
-
checksum = "
|
|
914
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
861
915
|
dependencies = [
|
|
916
|
+
"bytemuck",
|
|
862
917
|
"cfg-if",
|
|
863
918
|
"crunchy",
|
|
919
|
+
"num-traits",
|
|
920
|
+
"serde",
|
|
921
|
+
"zerocopy",
|
|
864
922
|
]
|
|
865
923
|
|
|
866
924
|
[[package]]
|
|
867
925
|
name = "halfbrown"
|
|
868
|
-
version = "0.
|
|
926
|
+
version = "0.4.0"
|
|
869
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
-
checksum = "
|
|
928
|
+
checksum = "0c7ed2f2edad8a14c8186b847909a41fbb9c3eafa44f88bd891114ed5019da09"
|
|
871
929
|
dependencies = [
|
|
872
|
-
"hashbrown 0.
|
|
930
|
+
"hashbrown 0.16.1",
|
|
873
931
|
"serde",
|
|
874
932
|
]
|
|
875
933
|
|
|
876
934
|
[[package]]
|
|
877
935
|
name = "hashbrown"
|
|
878
|
-
version = "0.
|
|
936
|
+
version = "0.15.5"
|
|
879
937
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
-
checksum = "
|
|
938
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
881
939
|
dependencies = [
|
|
882
|
-
"ahash",
|
|
883
940
|
"allocator-api2",
|
|
884
|
-
"
|
|
885
|
-
"
|
|
941
|
+
"equivalent",
|
|
942
|
+
"foldhash 0.1.5",
|
|
886
943
|
]
|
|
887
944
|
|
|
888
945
|
[[package]]
|
|
889
946
|
name = "hashbrown"
|
|
890
|
-
version = "0.
|
|
947
|
+
version = "0.16.1"
|
|
891
948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
-
checksum = "
|
|
949
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
893
950
|
dependencies = [
|
|
894
951
|
"allocator-api2",
|
|
895
952
|
"equivalent",
|
|
896
|
-
"foldhash",
|
|
953
|
+
"foldhash 0.2.0",
|
|
897
954
|
"rayon",
|
|
898
955
|
"serde",
|
|
956
|
+
"serde_core",
|
|
899
957
|
]
|
|
900
958
|
|
|
901
|
-
[[package]]
|
|
902
|
-
name = "heck"
|
|
903
|
-
version = "0.4.1"
|
|
904
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
-
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
906
|
-
|
|
907
959
|
[[package]]
|
|
908
960
|
name = "heck"
|
|
909
961
|
version = "0.5.0"
|
|
910
962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
963
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
912
964
|
|
|
913
|
-
[[package]]
|
|
914
|
-
name = "hermit-abi"
|
|
915
|
-
version = "0.3.9"
|
|
916
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
-
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
918
|
-
|
|
919
965
|
[[package]]
|
|
920
966
|
name = "hex"
|
|
921
967
|
version = "0.4.3"
|
|
@@ -924,18 +970,18 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
|
924
970
|
|
|
925
971
|
[[package]]
|
|
926
972
|
name = "home"
|
|
927
|
-
version = "0.5.
|
|
973
|
+
version = "0.5.11"
|
|
928
974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
-
checksum = "
|
|
975
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
|
930
976
|
dependencies = [
|
|
931
|
-
"windows-sys 0.
|
|
977
|
+
"windows-sys 0.59.0",
|
|
932
978
|
]
|
|
933
979
|
|
|
934
980
|
[[package]]
|
|
935
981
|
name = "http"
|
|
936
|
-
version = "1.1
|
|
982
|
+
version = "1.3.1"
|
|
937
983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
-
checksum = "
|
|
984
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
939
985
|
dependencies = [
|
|
940
986
|
"bytes",
|
|
941
987
|
"fnv",
|
|
@@ -954,12 +1000,12 @@ dependencies = [
|
|
|
954
1000
|
|
|
955
1001
|
[[package]]
|
|
956
1002
|
name = "http-body-util"
|
|
957
|
-
version = "0.1.
|
|
1003
|
+
version = "0.1.3"
|
|
958
1004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
-
checksum = "
|
|
1005
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
960
1006
|
dependencies = [
|
|
961
1007
|
"bytes",
|
|
962
|
-
"futures-
|
|
1008
|
+
"futures-core",
|
|
963
1009
|
"http",
|
|
964
1010
|
"http-body",
|
|
965
1011
|
"pin-project-lite",
|
|
@@ -967,21 +1013,21 @@ dependencies = [
|
|
|
967
1013
|
|
|
968
1014
|
[[package]]
|
|
969
1015
|
name = "httparse"
|
|
970
|
-
version = "1.
|
|
1016
|
+
version = "1.10.1"
|
|
971
1017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
-
checksum = "
|
|
1018
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
973
1019
|
|
|
974
1020
|
[[package]]
|
|
975
1021
|
name = "humantime"
|
|
976
|
-
version = "2.
|
|
1022
|
+
version = "2.2.0"
|
|
977
1023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
-
checksum = "
|
|
1024
|
+
checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
|
|
979
1025
|
|
|
980
1026
|
[[package]]
|
|
981
1027
|
name = "hyper"
|
|
982
|
-
version = "1.
|
|
1028
|
+
version = "1.6.0"
|
|
983
1029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
-
checksum = "
|
|
1030
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
|
985
1031
|
dependencies = [
|
|
986
1032
|
"bytes",
|
|
987
1033
|
"futures-channel",
|
|
@@ -999,9 +1045,9 @@ dependencies = [
|
|
|
999
1045
|
|
|
1000
1046
|
[[package]]
|
|
1001
1047
|
name = "hyper-rustls"
|
|
1002
|
-
version = "0.27.
|
|
1048
|
+
version = "0.27.5"
|
|
1003
1049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
-
checksum = "
|
|
1050
|
+
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
|
1005
1051
|
dependencies = [
|
|
1006
1052
|
"futures-util",
|
|
1007
1053
|
"http",
|
|
@@ -1017,9 +1063,9 @@ dependencies = [
|
|
|
1017
1063
|
|
|
1018
1064
|
[[package]]
|
|
1019
1065
|
name = "hyper-util"
|
|
1020
|
-
version = "0.1.
|
|
1066
|
+
version = "0.1.12"
|
|
1021
1067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
-
checksum = "
|
|
1068
|
+
checksum = "cf9f1e950e0d9d1d3c47184416723cf29c0d1f93bd8cccf37e4beb6b44f31710"
|
|
1023
1069
|
dependencies = [
|
|
1024
1070
|
"bytes",
|
|
1025
1071
|
"futures-channel",
|
|
@@ -1027,6 +1073,7 @@ dependencies = [
|
|
|
1027
1073
|
"http",
|
|
1028
1074
|
"http-body",
|
|
1029
1075
|
"hyper",
|
|
1076
|
+
"libc",
|
|
1030
1077
|
"pin-project-lite",
|
|
1031
1078
|
"socket2",
|
|
1032
1079
|
"tokio",
|
|
@@ -1036,16 +1083,17 @@ dependencies = [
|
|
|
1036
1083
|
|
|
1037
1084
|
[[package]]
|
|
1038
1085
|
name = "iana-time-zone"
|
|
1039
|
-
version = "0.1.
|
|
1086
|
+
version = "0.1.63"
|
|
1040
1087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
-
checksum = "
|
|
1088
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
|
1042
1089
|
dependencies = [
|
|
1043
1090
|
"android_system_properties",
|
|
1044
1091
|
"core-foundation-sys",
|
|
1045
1092
|
"iana-time-zone-haiku",
|
|
1046
1093
|
"js-sys",
|
|
1094
|
+
"log",
|
|
1047
1095
|
"wasm-bindgen",
|
|
1048
|
-
"windows-core
|
|
1096
|
+
"windows-core",
|
|
1049
1097
|
]
|
|
1050
1098
|
|
|
1051
1099
|
[[package]]
|
|
@@ -1058,103 +1106,171 @@ dependencies = [
|
|
|
1058
1106
|
]
|
|
1059
1107
|
|
|
1060
1108
|
[[package]]
|
|
1061
|
-
name = "
|
|
1062
|
-
version = "0.
|
|
1109
|
+
name = "icu_collections"
|
|
1110
|
+
version = "2.0.0"
|
|
1063
1111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
-
checksum = "
|
|
1112
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
1065
1113
|
dependencies = [
|
|
1066
|
-
"
|
|
1067
|
-
"
|
|
1114
|
+
"displaydoc",
|
|
1115
|
+
"potential_utf",
|
|
1116
|
+
"yoke",
|
|
1117
|
+
"zerofrom",
|
|
1118
|
+
"zerovec",
|
|
1068
1119
|
]
|
|
1069
1120
|
|
|
1070
1121
|
[[package]]
|
|
1071
|
-
name = "
|
|
1072
|
-
version = "2.
|
|
1122
|
+
name = "icu_locale_core"
|
|
1123
|
+
version = "2.0.0"
|
|
1073
1124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
-
checksum = "
|
|
1125
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
1075
1126
|
dependencies = [
|
|
1076
|
-
"
|
|
1077
|
-
"
|
|
1078
|
-
"
|
|
1127
|
+
"displaydoc",
|
|
1128
|
+
"litemap",
|
|
1129
|
+
"tinystr",
|
|
1130
|
+
"writeable",
|
|
1131
|
+
"zerovec",
|
|
1079
1132
|
]
|
|
1080
1133
|
|
|
1081
1134
|
[[package]]
|
|
1082
|
-
name = "
|
|
1083
|
-
version = "2.0.
|
|
1135
|
+
name = "icu_normalizer"
|
|
1136
|
+
version = "2.0.0"
|
|
1084
1137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
-
checksum = "
|
|
1138
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"displaydoc",
|
|
1141
|
+
"icu_collections",
|
|
1142
|
+
"icu_normalizer_data",
|
|
1143
|
+
"icu_properties",
|
|
1144
|
+
"icu_provider",
|
|
1145
|
+
"smallvec",
|
|
1146
|
+
"zerovec",
|
|
1147
|
+
]
|
|
1086
1148
|
|
|
1087
1149
|
[[package]]
|
|
1088
|
-
name = "
|
|
1089
|
-
version = "2.
|
|
1150
|
+
name = "icu_normalizer_data"
|
|
1151
|
+
version = "2.0.0"
|
|
1090
1152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
-
checksum = "
|
|
1153
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
1092
1154
|
|
|
1093
1155
|
[[package]]
|
|
1094
|
-
name = "
|
|
1095
|
-
version = "0.
|
|
1156
|
+
name = "icu_properties"
|
|
1157
|
+
version = "2.0.1"
|
|
1096
1158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
-
checksum = "
|
|
1159
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
1098
1160
|
dependencies = [
|
|
1099
|
-
"
|
|
1161
|
+
"displaydoc",
|
|
1162
|
+
"icu_collections",
|
|
1163
|
+
"icu_locale_core",
|
|
1164
|
+
"icu_properties_data",
|
|
1165
|
+
"icu_provider",
|
|
1166
|
+
"potential_utf",
|
|
1167
|
+
"zerotrie",
|
|
1168
|
+
"zerovec",
|
|
1100
1169
|
]
|
|
1101
1170
|
|
|
1102
1171
|
[[package]]
|
|
1103
|
-
name = "
|
|
1104
|
-
version = "0.
|
|
1172
|
+
name = "icu_properties_data"
|
|
1173
|
+
version = "2.0.1"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "icu_provider"
|
|
1179
|
+
version = "2.0.0"
|
|
1105
1180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
-
checksum = "
|
|
1181
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
1107
1182
|
dependencies = [
|
|
1108
|
-
"
|
|
1183
|
+
"displaydoc",
|
|
1184
|
+
"icu_locale_core",
|
|
1185
|
+
"stable_deref_trait",
|
|
1186
|
+
"tinystr",
|
|
1187
|
+
"writeable",
|
|
1188
|
+
"yoke",
|
|
1189
|
+
"zerofrom",
|
|
1190
|
+
"zerotrie",
|
|
1191
|
+
"zerovec",
|
|
1109
1192
|
]
|
|
1110
1193
|
|
|
1111
1194
|
[[package]]
|
|
1112
|
-
name = "
|
|
1113
|
-
version = "1.0.
|
|
1195
|
+
name = "idna"
|
|
1196
|
+
version = "1.0.3"
|
|
1114
1197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
-
checksum = "
|
|
1198
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"idna_adapter",
|
|
1201
|
+
"smallvec",
|
|
1202
|
+
"utf8_iter",
|
|
1203
|
+
]
|
|
1116
1204
|
|
|
1117
1205
|
[[package]]
|
|
1118
|
-
name = "
|
|
1119
|
-
version = "1.
|
|
1206
|
+
name = "idna_adapter"
|
|
1207
|
+
version = "1.2.1"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"icu_normalizer",
|
|
1212
|
+
"icu_properties",
|
|
1213
|
+
]
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "indexmap"
|
|
1217
|
+
version = "2.12.0"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
1220
|
+
dependencies = [
|
|
1221
|
+
"equivalent",
|
|
1222
|
+
"hashbrown 0.16.1",
|
|
1223
|
+
"serde",
|
|
1224
|
+
"serde_core",
|
|
1225
|
+
]
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "ipnet"
|
|
1229
|
+
version = "2.11.0"
|
|
1120
1230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
-
checksum = "
|
|
1231
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1122
1232
|
|
|
1123
1233
|
[[package]]
|
|
1124
|
-
name = "
|
|
1125
|
-
version = "0.
|
|
1234
|
+
name = "itertools"
|
|
1235
|
+
version = "0.12.1"
|
|
1126
1236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
-
checksum = "
|
|
1237
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1128
1238
|
dependencies = [
|
|
1129
|
-
"
|
|
1130
|
-
"libc",
|
|
1239
|
+
"either",
|
|
1131
1240
|
]
|
|
1132
1241
|
|
|
1133
1242
|
[[package]]
|
|
1134
|
-
name = "
|
|
1135
|
-
version = "0.
|
|
1243
|
+
name = "itertools"
|
|
1244
|
+
version = "0.14.0"
|
|
1136
1245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1137
|
-
checksum = "
|
|
1246
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1138
1247
|
dependencies = [
|
|
1139
|
-
"
|
|
1140
|
-
"libc",
|
|
1248
|
+
"either",
|
|
1141
1249
|
]
|
|
1142
1250
|
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "itoa"
|
|
1253
|
+
version = "1.0.15"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1256
|
+
|
|
1143
1257
|
[[package]]
|
|
1144
1258
|
name = "jobserver"
|
|
1145
|
-
version = "0.1.
|
|
1259
|
+
version = "0.1.33"
|
|
1146
1260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
-
checksum = "
|
|
1261
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
1148
1262
|
dependencies = [
|
|
1263
|
+
"getrandom 0.3.3",
|
|
1149
1264
|
"libc",
|
|
1150
1265
|
]
|
|
1151
1266
|
|
|
1152
1267
|
[[package]]
|
|
1153
1268
|
name = "js-sys"
|
|
1154
|
-
version = "0.3.
|
|
1269
|
+
version = "0.3.77"
|
|
1155
1270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
-
checksum = "
|
|
1271
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1157
1272
|
dependencies = [
|
|
1273
|
+
"once_cell",
|
|
1158
1274
|
"wasm-bindgen",
|
|
1159
1275
|
]
|
|
1160
1276
|
|
|
@@ -1183,9 +1299,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
|
1183
1299
|
|
|
1184
1300
|
[[package]]
|
|
1185
1301
|
name = "libc"
|
|
1186
|
-
version = "0.2.
|
|
1302
|
+
version = "0.2.186"
|
|
1187
1303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
-
checksum = "
|
|
1304
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1189
1305
|
|
|
1190
1306
|
[[package]]
|
|
1191
1307
|
name = "libflate"
|
|
@@ -1209,35 +1325,56 @@ dependencies = [
|
|
|
1209
1325
|
|
|
1210
1326
|
[[package]]
|
|
1211
1327
|
name = "libloading"
|
|
1212
|
-
version = "0.8.
|
|
1328
|
+
version = "0.8.7"
|
|
1213
1329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
-
checksum = "
|
|
1330
|
+
checksum = "6a793df0d7afeac54f95b471d3af7f0d4fb975699f972341a4b76988d49cdf0c"
|
|
1215
1331
|
dependencies = [
|
|
1216
1332
|
"cfg-if",
|
|
1217
|
-
"windows-targets",
|
|
1333
|
+
"windows-targets 0.53.0",
|
|
1218
1334
|
]
|
|
1219
1335
|
|
|
1220
1336
|
[[package]]
|
|
1221
1337
|
name = "libm"
|
|
1222
|
-
version = "0.2.
|
|
1338
|
+
version = "0.2.15"
|
|
1223
1339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
-
checksum = "
|
|
1340
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1225
1341
|
|
|
1226
1342
|
[[package]]
|
|
1227
1343
|
name = "libmimalloc-sys"
|
|
1228
|
-
version = "0.1.
|
|
1344
|
+
version = "0.1.44"
|
|
1229
1345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
-
checksum = "
|
|
1346
|
+
checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
|
|
1231
1347
|
dependencies = [
|
|
1232
1348
|
"cc",
|
|
1233
1349
|
"libc",
|
|
1234
1350
|
]
|
|
1235
1351
|
|
|
1236
1352
|
[[package]]
|
|
1237
|
-
name = "
|
|
1238
|
-
version = "0.
|
|
1353
|
+
name = "libz-rs-sys"
|
|
1354
|
+
version = "0.5.0"
|
|
1355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1356
|
+
checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a"
|
|
1357
|
+
dependencies = [
|
|
1358
|
+
"zlib-rs",
|
|
1359
|
+
]
|
|
1360
|
+
|
|
1361
|
+
[[package]]
|
|
1362
|
+
name = "linux-raw-sys"
|
|
1363
|
+
version = "0.4.15"
|
|
1364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "linux-raw-sys"
|
|
1369
|
+
version = "0.9.4"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1372
|
+
|
|
1373
|
+
[[package]]
|
|
1374
|
+
name = "litemap"
|
|
1375
|
+
version = "0.8.0"
|
|
1239
1376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
-
checksum = "
|
|
1377
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
1241
1378
|
|
|
1242
1379
|
[[package]]
|
|
1243
1380
|
name = "lock_api"
|
|
@@ -1251,15 +1388,21 @@ dependencies = [
|
|
|
1251
1388
|
|
|
1252
1389
|
[[package]]
|
|
1253
1390
|
name = "log"
|
|
1254
|
-
version = "0.4.
|
|
1391
|
+
version = "0.4.27"
|
|
1255
1392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
-
checksum = "
|
|
1393
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "lru-slab"
|
|
1397
|
+
version = "0.1.2"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1257
1400
|
|
|
1258
1401
|
[[package]]
|
|
1259
1402
|
name = "lz4"
|
|
1260
|
-
version = "1.28.
|
|
1403
|
+
version = "1.28.1"
|
|
1261
1404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
-
checksum = "
|
|
1405
|
+
checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
|
|
1263
1406
|
dependencies = [
|
|
1264
1407
|
"lz4-sys",
|
|
1265
1408
|
]
|
|
@@ -1276,10 +1419,11 @@ dependencies = [
|
|
|
1276
1419
|
|
|
1277
1420
|
[[package]]
|
|
1278
1421
|
name = "magnus"
|
|
1279
|
-
version = "0.
|
|
1422
|
+
version = "0.8.2"
|
|
1280
1423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
-
checksum = "
|
|
1424
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
1282
1425
|
dependencies = [
|
|
1426
|
+
"chrono",
|
|
1283
1427
|
"magnus-macros",
|
|
1284
1428
|
"rb-sys",
|
|
1285
1429
|
"rb-sys-env",
|
|
@@ -1288,13 +1432,13 @@ dependencies = [
|
|
|
1288
1432
|
|
|
1289
1433
|
[[package]]
|
|
1290
1434
|
name = "magnus-macros"
|
|
1291
|
-
version = "0.
|
|
1435
|
+
version = "0.8.0"
|
|
1292
1436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1293
|
-
checksum = "
|
|
1437
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
1294
1438
|
dependencies = [
|
|
1295
1439
|
"proc-macro2",
|
|
1296
1440
|
"quote",
|
|
1297
|
-
"syn
|
|
1441
|
+
"syn",
|
|
1298
1442
|
]
|
|
1299
1443
|
|
|
1300
1444
|
[[package]]
|
|
@@ -1315,27 +1459,18 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
|
1315
1459
|
|
|
1316
1460
|
[[package]]
|
|
1317
1461
|
name = "memmap2"
|
|
1318
|
-
version = "0.
|
|
1462
|
+
version = "0.9.5"
|
|
1319
1463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
-
checksum = "
|
|
1464
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
|
1321
1465
|
dependencies = [
|
|
1322
1466
|
"libc",
|
|
1323
1467
|
]
|
|
1324
1468
|
|
|
1325
|
-
[[package]]
|
|
1326
|
-
name = "memoffset"
|
|
1327
|
-
version = "0.9.1"
|
|
1328
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
-
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1330
|
-
dependencies = [
|
|
1331
|
-
"autocfg",
|
|
1332
|
-
]
|
|
1333
|
-
|
|
1334
1469
|
[[package]]
|
|
1335
1470
|
name = "mimalloc"
|
|
1336
|
-
version = "0.1.
|
|
1471
|
+
version = "0.1.48"
|
|
1337
1472
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
-
checksum = "
|
|
1473
|
+
checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
|
|
1339
1474
|
dependencies = [
|
|
1340
1475
|
"libmimalloc-sys",
|
|
1341
1476
|
]
|
|
@@ -1354,47 +1489,24 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
1354
1489
|
|
|
1355
1490
|
[[package]]
|
|
1356
1491
|
name = "miniz_oxide"
|
|
1357
|
-
version = "0.8.
|
|
1492
|
+
version = "0.8.8"
|
|
1358
1493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
-
checksum = "
|
|
1494
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
1360
1495
|
dependencies = [
|
|
1361
1496
|
"adler2",
|
|
1362
1497
|
]
|
|
1363
1498
|
|
|
1364
1499
|
[[package]]
|
|
1365
1500
|
name = "mio"
|
|
1366
|
-
version = "1.0.
|
|
1501
|
+
version = "1.0.3"
|
|
1367
1502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
-
checksum = "
|
|
1503
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
1369
1504
|
dependencies = [
|
|
1370
|
-
"hermit-abi",
|
|
1371
1505
|
"libc",
|
|
1372
|
-
"wasi",
|
|
1506
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1373
1507
|
"windows-sys 0.52.0",
|
|
1374
1508
|
]
|
|
1375
1509
|
|
|
1376
|
-
[[package]]
|
|
1377
|
-
name = "multiversion"
|
|
1378
|
-
version = "0.7.4"
|
|
1379
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
-
checksum = "c4851161a11d3ad0bf9402d90ffc3967bf231768bfd7aeb61755ad06dbf1a142"
|
|
1381
|
-
dependencies = [
|
|
1382
|
-
"multiversion-macros",
|
|
1383
|
-
"target-features",
|
|
1384
|
-
]
|
|
1385
|
-
|
|
1386
|
-
[[package]]
|
|
1387
|
-
name = "multiversion-macros"
|
|
1388
|
-
version = "0.7.4"
|
|
1389
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
-
checksum = "79a74ddee9e0c27d2578323c13905793e91622148f138ba29738f9dddb835e90"
|
|
1391
|
-
dependencies = [
|
|
1392
|
-
"proc-macro2",
|
|
1393
|
-
"quote",
|
|
1394
|
-
"syn 1.0.109",
|
|
1395
|
-
"target-features",
|
|
1396
|
-
]
|
|
1397
|
-
|
|
1398
1510
|
[[package]]
|
|
1399
1511
|
name = "nom"
|
|
1400
1512
|
version = "7.1.3"
|
|
@@ -1416,13 +1528,24 @@ dependencies = [
|
|
|
1416
1528
|
|
|
1417
1529
|
[[package]]
|
|
1418
1530
|
name = "ntapi"
|
|
1419
|
-
version = "0.4.
|
|
1531
|
+
version = "0.4.3"
|
|
1420
1532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
-
checksum = "
|
|
1533
|
+
checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
|
|
1422
1534
|
dependencies = [
|
|
1423
1535
|
"winapi",
|
|
1424
1536
|
]
|
|
1425
1537
|
|
|
1538
|
+
[[package]]
|
|
1539
|
+
name = "num-derive"
|
|
1540
|
+
version = "0.4.2"
|
|
1541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
1543
|
+
dependencies = [
|
|
1544
|
+
"proc-macro2",
|
|
1545
|
+
"quote",
|
|
1546
|
+
"syn",
|
|
1547
|
+
]
|
|
1548
|
+
|
|
1426
1549
|
[[package]]
|
|
1427
1550
|
name = "num-traits"
|
|
1428
1551
|
version = "0.2.19"
|
|
@@ -1433,29 +1556,52 @@ dependencies = [
|
|
|
1433
1556
|
"libm",
|
|
1434
1557
|
]
|
|
1435
1558
|
|
|
1559
|
+
[[package]]
|
|
1560
|
+
name = "objc2-core-foundation"
|
|
1561
|
+
version = "0.3.2"
|
|
1562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1563
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
1564
|
+
dependencies = [
|
|
1565
|
+
"bitflags",
|
|
1566
|
+
]
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "objc2-io-kit"
|
|
1570
|
+
version = "0.3.2"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15"
|
|
1573
|
+
dependencies = [
|
|
1574
|
+
"libc",
|
|
1575
|
+
"objc2-core-foundation",
|
|
1576
|
+
]
|
|
1577
|
+
|
|
1436
1578
|
[[package]]
|
|
1437
1579
|
name = "object"
|
|
1438
|
-
version = "0.36.
|
|
1580
|
+
version = "0.36.7"
|
|
1439
1581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
-
checksum = "
|
|
1582
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1441
1583
|
dependencies = [
|
|
1442
1584
|
"memchr",
|
|
1443
1585
|
]
|
|
1444
1586
|
|
|
1445
1587
|
[[package]]
|
|
1446
1588
|
name = "object_store"
|
|
1447
|
-
version = "0.
|
|
1589
|
+
version = "0.13.1"
|
|
1448
1590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
-
checksum = "
|
|
1591
|
+
checksum = "c2858065e55c148d294a9f3aae3b0fa9458edadb41a108397094566f4e3c0dfb"
|
|
1450
1592
|
dependencies = [
|
|
1451
1593
|
"async-trait",
|
|
1452
1594
|
"base64",
|
|
1453
1595
|
"bytes",
|
|
1454
1596
|
"chrono",
|
|
1597
|
+
"form_urlencoded",
|
|
1455
1598
|
"futures",
|
|
1599
|
+
"http",
|
|
1600
|
+
"http-body-util",
|
|
1601
|
+
"httparse",
|
|
1456
1602
|
"humantime",
|
|
1457
1603
|
"hyper",
|
|
1458
|
-
"itertools 0.
|
|
1604
|
+
"itertools 0.14.0",
|
|
1459
1605
|
"md-5",
|
|
1460
1606
|
"parking_lot",
|
|
1461
1607
|
"percent-encoding",
|
|
@@ -1463,27 +1609,36 @@ dependencies = [
|
|
|
1463
1609
|
"rand",
|
|
1464
1610
|
"reqwest",
|
|
1465
1611
|
"ring",
|
|
1466
|
-
"rustls-
|
|
1612
|
+
"rustls-pki-types",
|
|
1467
1613
|
"serde",
|
|
1468
1614
|
"serde_json",
|
|
1469
|
-
"
|
|
1615
|
+
"serde_urlencoded",
|
|
1616
|
+
"thiserror",
|
|
1470
1617
|
"tokio",
|
|
1471
1618
|
"tracing",
|
|
1472
1619
|
"url",
|
|
1473
1620
|
"walkdir",
|
|
1621
|
+
"wasm-bindgen-futures",
|
|
1622
|
+
"web-time",
|
|
1474
1623
|
]
|
|
1475
1624
|
|
|
1476
1625
|
[[package]]
|
|
1477
1626
|
name = "once_cell"
|
|
1478
|
-
version = "1.
|
|
1627
|
+
version = "1.21.3"
|
|
1479
1628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
-
checksum = "
|
|
1629
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1481
1630
|
|
|
1482
1631
|
[[package]]
|
|
1483
1632
|
name = "openssl-probe"
|
|
1484
|
-
version = "0.1.
|
|
1633
|
+
version = "0.1.6"
|
|
1485
1634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
-
checksum = "
|
|
1635
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1636
|
+
|
|
1637
|
+
[[package]]
|
|
1638
|
+
name = "parking"
|
|
1639
|
+
version = "2.2.1"
|
|
1640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
1487
1642
|
|
|
1488
1643
|
[[package]]
|
|
1489
1644
|
name = "parking_lot"
|
|
@@ -1505,17 +1660,14 @@ dependencies = [
|
|
|
1505
1660
|
"libc",
|
|
1506
1661
|
"redox_syscall",
|
|
1507
1662
|
"smallvec",
|
|
1508
|
-
"windows-targets",
|
|
1663
|
+
"windows-targets 0.52.6",
|
|
1509
1664
|
]
|
|
1510
1665
|
|
|
1511
1666
|
[[package]]
|
|
1512
|
-
name = "
|
|
1513
|
-
version = "0.
|
|
1667
|
+
name = "paste"
|
|
1668
|
+
version = "1.0.15"
|
|
1514
1669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
-
checksum = "
|
|
1516
|
-
dependencies = [
|
|
1517
|
-
"regex",
|
|
1518
|
-
]
|
|
1670
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1519
1671
|
|
|
1520
1672
|
[[package]]
|
|
1521
1673
|
name = "percent-encoding"
|
|
@@ -1525,47 +1677,27 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1525
1677
|
|
|
1526
1678
|
[[package]]
|
|
1527
1679
|
name = "phf"
|
|
1528
|
-
version = "0.
|
|
1529
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
-
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
|
1531
|
-
dependencies = [
|
|
1532
|
-
"phf_shared",
|
|
1533
|
-
]
|
|
1534
|
-
|
|
1535
|
-
[[package]]
|
|
1536
|
-
name = "phf_codegen"
|
|
1537
|
-
version = "0.11.2"
|
|
1538
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
-
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
|
1540
|
-
dependencies = [
|
|
1541
|
-
"phf_generator",
|
|
1542
|
-
"phf_shared",
|
|
1543
|
-
]
|
|
1544
|
-
|
|
1545
|
-
[[package]]
|
|
1546
|
-
name = "phf_generator"
|
|
1547
|
-
version = "0.11.2"
|
|
1680
|
+
version = "0.12.1"
|
|
1548
1681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
-
checksum = "
|
|
1682
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
1550
1683
|
dependencies = [
|
|
1551
1684
|
"phf_shared",
|
|
1552
|
-
"rand",
|
|
1553
1685
|
]
|
|
1554
1686
|
|
|
1555
1687
|
[[package]]
|
|
1556
1688
|
name = "phf_shared"
|
|
1557
|
-
version = "0.
|
|
1689
|
+
version = "0.12.1"
|
|
1558
1690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
-
checksum = "
|
|
1691
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
1560
1692
|
dependencies = [
|
|
1561
1693
|
"siphasher",
|
|
1562
1694
|
]
|
|
1563
1695
|
|
|
1564
1696
|
[[package]]
|
|
1565
1697
|
name = "pin-project-lite"
|
|
1566
|
-
version = "0.2.
|
|
1698
|
+
version = "0.2.16"
|
|
1567
1699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
-
checksum = "
|
|
1700
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1569
1701
|
|
|
1570
1702
|
[[package]]
|
|
1571
1703
|
name = "pin-utils"
|
|
@@ -1575,50 +1707,34 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1575
1707
|
|
|
1576
1708
|
[[package]]
|
|
1577
1709
|
name = "pkg-config"
|
|
1578
|
-
version = "0.3.
|
|
1710
|
+
version = "0.3.32"
|
|
1579
1711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
-
checksum = "
|
|
1712
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1581
1713
|
|
|
1582
1714
|
[[package]]
|
|
1583
1715
|
name = "planus"
|
|
1584
|
-
version = "
|
|
1716
|
+
version = "1.1.1"
|
|
1585
1717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
-
checksum = "
|
|
1718
|
+
checksum = "3daf8e3d4b712abe1d690838f6e29fb76b76ea19589c4afa39ec30e12f62af71"
|
|
1587
1719
|
dependencies = [
|
|
1588
1720
|
"array-init-cursor",
|
|
1721
|
+
"hashbrown 0.15.5",
|
|
1589
1722
|
]
|
|
1590
1723
|
|
|
1591
1724
|
[[package]]
|
|
1592
1725
|
name = "polars"
|
|
1593
|
-
version = "0.
|
|
1594
|
-
dependencies = [
|
|
1595
|
-
"ahash",
|
|
1596
|
-
"bytes",
|
|
1597
|
-
"chrono",
|
|
1598
|
-
"either",
|
|
1599
|
-
"jemallocator",
|
|
1600
|
-
"magnus",
|
|
1601
|
-
"mimalloc",
|
|
1602
|
-
"polars 0.44.2",
|
|
1603
|
-
"polars-arrow",
|
|
1604
|
-
"polars-core",
|
|
1605
|
-
"polars-parquet",
|
|
1606
|
-
"polars-plan",
|
|
1607
|
-
"polars-utils",
|
|
1608
|
-
"regex",
|
|
1609
|
-
"serde_json",
|
|
1610
|
-
]
|
|
1611
|
-
|
|
1612
|
-
[[package]]
|
|
1613
|
-
name = "polars"
|
|
1614
|
-
version = "0.44.2"
|
|
1726
|
+
version = "0.54.4"
|
|
1615
1727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
-
checksum = "
|
|
1728
|
+
checksum = "82f1f122456ec136102033b13f71905b7c3f01e526642679c86aace9f9cdefde"
|
|
1617
1729
|
dependencies = [
|
|
1618
|
-
"getrandom",
|
|
1730
|
+
"getrandom 0.2.16",
|
|
1731
|
+
"getrandom 0.3.3",
|
|
1619
1732
|
"polars-arrow",
|
|
1733
|
+
"polars-buffer",
|
|
1734
|
+
"polars-compute",
|
|
1620
1735
|
"polars-core",
|
|
1621
1736
|
"polars-error",
|
|
1737
|
+
"polars-expr",
|
|
1622
1738
|
"polars-io",
|
|
1623
1739
|
"polars-lazy",
|
|
1624
1740
|
"polars-ops",
|
|
@@ -1632,38 +1748,35 @@ dependencies = [
|
|
|
1632
1748
|
|
|
1633
1749
|
[[package]]
|
|
1634
1750
|
name = "polars-arrow"
|
|
1635
|
-
version = "0.
|
|
1751
|
+
version = "0.54.4"
|
|
1636
1752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
-
checksum = "
|
|
1753
|
+
checksum = "87d4892d5cc6461bb4a184d18e6fa03a5d316ee1d6de06a33dfa08d479fbc2db"
|
|
1638
1754
|
dependencies = [
|
|
1639
|
-
"ahash",
|
|
1640
|
-
"atoi",
|
|
1641
1755
|
"atoi_simd",
|
|
1642
1756
|
"avro-schema",
|
|
1757
|
+
"bitflags",
|
|
1643
1758
|
"bytemuck",
|
|
1759
|
+
"bytes",
|
|
1644
1760
|
"chrono",
|
|
1645
1761
|
"chrono-tz",
|
|
1646
1762
|
"dyn-clone",
|
|
1647
1763
|
"either",
|
|
1648
1764
|
"ethnum",
|
|
1649
|
-
"
|
|
1650
|
-
"getrandom",
|
|
1651
|
-
"
|
|
1765
|
+
"getrandom 0.2.16",
|
|
1766
|
+
"getrandom 0.3.3",
|
|
1767
|
+
"half",
|
|
1768
|
+
"hashbrown 0.16.1",
|
|
1652
1769
|
"itoa",
|
|
1653
|
-
"itoap",
|
|
1654
1770
|
"lz4",
|
|
1655
|
-
"multiversion",
|
|
1656
1771
|
"num-traits",
|
|
1657
|
-
"parking_lot",
|
|
1658
1772
|
"polars-arrow-format",
|
|
1773
|
+
"polars-buffer",
|
|
1659
1774
|
"polars-error",
|
|
1660
1775
|
"polars-schema",
|
|
1661
1776
|
"polars-utils",
|
|
1662
|
-
"ryu",
|
|
1663
1777
|
"serde",
|
|
1664
1778
|
"simdutf8",
|
|
1665
1779
|
"streaming-iterator",
|
|
1666
|
-
"strength_reduce",
|
|
1667
1780
|
"strum_macros",
|
|
1668
1781
|
"version_check",
|
|
1669
1782
|
"zstd",
|
|
@@ -1671,50 +1784,108 @@ dependencies = [
|
|
|
1671
1784
|
|
|
1672
1785
|
[[package]]
|
|
1673
1786
|
name = "polars-arrow-format"
|
|
1674
|
-
version = "0.
|
|
1787
|
+
version = "0.2.0"
|
|
1675
1788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
-
checksum = "
|
|
1789
|
+
checksum = "863c04c514be005eced7db7053e20d49f7e7a58048a282fa52dfea1fd5434e78"
|
|
1677
1790
|
dependencies = [
|
|
1678
1791
|
"planus",
|
|
1679
1792
|
"serde",
|
|
1680
1793
|
]
|
|
1681
1794
|
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "polars-async"
|
|
1797
|
+
version = "0.54.4"
|
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
+
checksum = "91e87f836190486f500b28347436985cc0af29b7a514e53f98840d396ce4d5f5"
|
|
1800
|
+
dependencies = [
|
|
1801
|
+
"atomic-waker",
|
|
1802
|
+
"crossbeam-channel",
|
|
1803
|
+
"crossbeam-deque",
|
|
1804
|
+
"crossbeam-utils",
|
|
1805
|
+
"parking_lot",
|
|
1806
|
+
"pin-project-lite",
|
|
1807
|
+
"polars-config",
|
|
1808
|
+
"polars-error",
|
|
1809
|
+
"polars-utils",
|
|
1810
|
+
"rand",
|
|
1811
|
+
"slotmap",
|
|
1812
|
+
"tokio",
|
|
1813
|
+
]
|
|
1814
|
+
|
|
1815
|
+
[[package]]
|
|
1816
|
+
name = "polars-buffer"
|
|
1817
|
+
version = "0.54.4"
|
|
1818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
+
checksum = "e481eeaf33c544ac0dd71a2e375553ca2fdae47b3472a96eaccb6eb43218783d"
|
|
1820
|
+
dependencies = [
|
|
1821
|
+
"bytemuck",
|
|
1822
|
+
"either",
|
|
1823
|
+
"polars-utils",
|
|
1824
|
+
"serde",
|
|
1825
|
+
"version_check",
|
|
1826
|
+
]
|
|
1827
|
+
|
|
1682
1828
|
[[package]]
|
|
1683
1829
|
name = "polars-compute"
|
|
1684
|
-
version = "0.
|
|
1830
|
+
version = "0.54.4"
|
|
1685
1831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
-
checksum = "
|
|
1832
|
+
checksum = "c55d41642a9ee887ac394c5a310af3256fa8340a86cde2cb624c515aa963461c"
|
|
1687
1833
|
dependencies = [
|
|
1834
|
+
"atoi_simd",
|
|
1688
1835
|
"bytemuck",
|
|
1836
|
+
"chrono",
|
|
1689
1837
|
"either",
|
|
1838
|
+
"fast-float2",
|
|
1839
|
+
"half",
|
|
1840
|
+
"hashbrown 0.16.1",
|
|
1841
|
+
"itoa",
|
|
1690
1842
|
"num-traits",
|
|
1691
1843
|
"polars-arrow",
|
|
1844
|
+
"polars-buffer",
|
|
1692
1845
|
"polars-error",
|
|
1693
1846
|
"polars-utils",
|
|
1847
|
+
"rand",
|
|
1848
|
+
"serde",
|
|
1694
1849
|
"strength_reduce",
|
|
1850
|
+
"strum_macros",
|
|
1695
1851
|
"version_check",
|
|
1852
|
+
"zmij",
|
|
1853
|
+
]
|
|
1854
|
+
|
|
1855
|
+
[[package]]
|
|
1856
|
+
name = "polars-config"
|
|
1857
|
+
version = "0.54.4"
|
|
1858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
+
checksum = "65af861341b00eac73bcb65423fb5cc3d2322526d6b7561a0ddf094947c38033"
|
|
1860
|
+
dependencies = [
|
|
1861
|
+
"polars-error",
|
|
1862
|
+
"serde",
|
|
1696
1863
|
]
|
|
1697
1864
|
|
|
1698
1865
|
[[package]]
|
|
1699
1866
|
name = "polars-core"
|
|
1700
|
-
version = "0.
|
|
1867
|
+
version = "0.54.4"
|
|
1701
1868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
-
checksum = "
|
|
1869
|
+
checksum = "3e5924fc46306054bae78f9d35ea5e404cf185baa7f170eb55a16ff95191069c"
|
|
1703
1870
|
dependencies = [
|
|
1704
|
-
"ahash",
|
|
1705
1871
|
"bitflags",
|
|
1872
|
+
"boxcar",
|
|
1706
1873
|
"bytemuck",
|
|
1707
1874
|
"chrono",
|
|
1708
1875
|
"chrono-tz",
|
|
1709
1876
|
"comfy-table",
|
|
1710
1877
|
"either",
|
|
1711
|
-
"
|
|
1712
|
-
"hashbrown 0.
|
|
1878
|
+
"getrandom 0.3.3",
|
|
1879
|
+
"hashbrown 0.16.1",
|
|
1713
1880
|
"indexmap",
|
|
1881
|
+
"itoa",
|
|
1714
1882
|
"num-traits",
|
|
1715
|
-
"once_cell",
|
|
1716
1883
|
"polars-arrow",
|
|
1884
|
+
"polars-async",
|
|
1885
|
+
"polars-buffer",
|
|
1717
1886
|
"polars-compute",
|
|
1887
|
+
"polars-config",
|
|
1888
|
+
"polars-dtype",
|
|
1718
1889
|
"polars-error",
|
|
1719
1890
|
"polars-row",
|
|
1720
1891
|
"polars-schema",
|
|
@@ -1726,40 +1897,58 @@ dependencies = [
|
|
|
1726
1897
|
"serde",
|
|
1727
1898
|
"serde_json",
|
|
1728
1899
|
"strum_macros",
|
|
1729
|
-
"
|
|
1900
|
+
"tokio",
|
|
1901
|
+
"uuid",
|
|
1730
1902
|
"version_check",
|
|
1731
1903
|
"xxhash-rust",
|
|
1732
1904
|
]
|
|
1733
1905
|
|
|
1906
|
+
[[package]]
|
|
1907
|
+
name = "polars-dtype"
|
|
1908
|
+
version = "0.54.4"
|
|
1909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
+
checksum = "7b65a750bb99ea66be90c8a7e336f6f3a87427a0f7f89d2a40adae98314e9b27"
|
|
1911
|
+
dependencies = [
|
|
1912
|
+
"boxcar",
|
|
1913
|
+
"hashbrown 0.16.1",
|
|
1914
|
+
"polars-arrow",
|
|
1915
|
+
"polars-error",
|
|
1916
|
+
"polars-utils",
|
|
1917
|
+
"serde",
|
|
1918
|
+
"uuid",
|
|
1919
|
+
]
|
|
1920
|
+
|
|
1734
1921
|
[[package]]
|
|
1735
1922
|
name = "polars-error"
|
|
1736
|
-
version = "0.
|
|
1923
|
+
version = "0.54.4"
|
|
1737
1924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1738
|
-
checksum = "
|
|
1925
|
+
checksum = "e49a75e3406b9b5b4e5ff177877fe0de766e9688fbdb263a7b25f293dc47d61a"
|
|
1739
1926
|
dependencies = [
|
|
1740
1927
|
"avro-schema",
|
|
1741
1928
|
"object_store",
|
|
1929
|
+
"parking_lot",
|
|
1742
1930
|
"polars-arrow-format",
|
|
1743
1931
|
"regex",
|
|
1932
|
+
"signal-hook",
|
|
1744
1933
|
"simdutf8",
|
|
1745
|
-
"thiserror",
|
|
1746
1934
|
]
|
|
1747
1935
|
|
|
1748
1936
|
[[package]]
|
|
1749
1937
|
name = "polars-expr"
|
|
1750
|
-
version = "0.
|
|
1938
|
+
version = "0.54.4"
|
|
1751
1939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
-
checksum = "
|
|
1940
|
+
checksum = "e21fdd37e8d9ef109f13d3454baffa0a57041cf60069123b8a2bd846c8ad0205"
|
|
1753
1941
|
dependencies = [
|
|
1754
|
-
"ahash",
|
|
1755
1942
|
"bitflags",
|
|
1756
|
-
"
|
|
1943
|
+
"chrono-tz",
|
|
1944
|
+
"hashbrown 0.16.1",
|
|
1757
1945
|
"num-traits",
|
|
1758
|
-
"once_cell",
|
|
1759
1946
|
"polars-arrow",
|
|
1947
|
+
"polars-buffer",
|
|
1760
1948
|
"polars-compute",
|
|
1761
1949
|
"polars-core",
|
|
1762
1950
|
"polars-io",
|
|
1951
|
+
"polars-json",
|
|
1763
1952
|
"polars-ops",
|
|
1764
1953
|
"polars-plan",
|
|
1765
1954
|
"polars-row",
|
|
@@ -1767,35 +1956,42 @@ dependencies = [
|
|
|
1767
1956
|
"polars-utils",
|
|
1768
1957
|
"rand",
|
|
1769
1958
|
"rayon",
|
|
1959
|
+
"recursive",
|
|
1960
|
+
"regex",
|
|
1961
|
+
"version_check",
|
|
1770
1962
|
]
|
|
1771
1963
|
|
|
1772
1964
|
[[package]]
|
|
1773
1965
|
name = "polars-io"
|
|
1774
|
-
version = "0.
|
|
1966
|
+
version = "0.54.4"
|
|
1775
1967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1776
|
-
checksum = "
|
|
1968
|
+
checksum = "6363a1c44a65fe8d73cce7fe4d77c9b6fea3a0da44007012e755e5b4e65aa078"
|
|
1777
1969
|
dependencies = [
|
|
1778
|
-
"ahash",
|
|
1779
1970
|
"async-trait",
|
|
1780
1971
|
"atoi_simd",
|
|
1781
1972
|
"blake3",
|
|
1782
1973
|
"bytes",
|
|
1783
1974
|
"chrono",
|
|
1784
1975
|
"chrono-tz",
|
|
1785
|
-
"fast-
|
|
1976
|
+
"fast-float2",
|
|
1977
|
+
"fastrand",
|
|
1978
|
+
"flate2",
|
|
1786
1979
|
"fs4",
|
|
1787
1980
|
"futures",
|
|
1788
1981
|
"glob",
|
|
1789
|
-
"hashbrown 0.
|
|
1982
|
+
"hashbrown 0.16.1",
|
|
1790
1983
|
"home",
|
|
1791
1984
|
"itoa",
|
|
1792
1985
|
"memchr",
|
|
1793
1986
|
"memmap2",
|
|
1794
1987
|
"num-traits",
|
|
1795
1988
|
"object_store",
|
|
1796
|
-
"
|
|
1989
|
+
"parking_lot",
|
|
1797
1990
|
"percent-encoding",
|
|
1798
1991
|
"polars-arrow",
|
|
1992
|
+
"polars-buffer",
|
|
1993
|
+
"polars-compute",
|
|
1994
|
+
"polars-config",
|
|
1799
1995
|
"polars-core",
|
|
1800
1996
|
"polars-error",
|
|
1801
1997
|
"polars-json",
|
|
@@ -1803,61 +1999,64 @@ dependencies = [
|
|
|
1803
1999
|
"polars-schema",
|
|
1804
2000
|
"polars-time",
|
|
1805
2001
|
"polars-utils",
|
|
1806
|
-
"
|
|
2002
|
+
"rand",
|
|
1807
2003
|
"rayon",
|
|
1808
2004
|
"regex",
|
|
1809
2005
|
"reqwest",
|
|
1810
|
-
"ryu",
|
|
1811
2006
|
"serde",
|
|
1812
2007
|
"serde_json",
|
|
1813
2008
|
"simd-json",
|
|
1814
2009
|
"simdutf8",
|
|
2010
|
+
"strum",
|
|
2011
|
+
"strum_macros",
|
|
1815
2012
|
"tokio",
|
|
1816
|
-
"
|
|
1817
|
-
"
|
|
2013
|
+
"zmij",
|
|
2014
|
+
"zstd",
|
|
1818
2015
|
]
|
|
1819
2016
|
|
|
1820
2017
|
[[package]]
|
|
1821
2018
|
name = "polars-json"
|
|
1822
|
-
version = "0.
|
|
2019
|
+
version = "0.54.4"
|
|
1823
2020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
-
checksum = "
|
|
2021
|
+
checksum = "1dca6cd170370ef7e189a4c362846c57553843653c3fe65aafe12ca77599987c"
|
|
1825
2022
|
dependencies = [
|
|
1826
|
-
"ahash",
|
|
1827
2023
|
"chrono",
|
|
1828
2024
|
"chrono-tz",
|
|
1829
2025
|
"fallible-streaming-iterator",
|
|
1830
|
-
"hashbrown 0.
|
|
2026
|
+
"hashbrown 0.16.1",
|
|
1831
2027
|
"indexmap",
|
|
1832
2028
|
"itoa",
|
|
1833
2029
|
"num-traits",
|
|
1834
2030
|
"polars-arrow",
|
|
2031
|
+
"polars-compute",
|
|
1835
2032
|
"polars-error",
|
|
1836
2033
|
"polars-utils",
|
|
1837
|
-
"ryu",
|
|
1838
2034
|
"simd-json",
|
|
1839
2035
|
"streaming-iterator",
|
|
2036
|
+
"zmij",
|
|
1840
2037
|
]
|
|
1841
2038
|
|
|
1842
2039
|
[[package]]
|
|
1843
2040
|
name = "polars-lazy"
|
|
1844
|
-
version = "0.
|
|
2041
|
+
version = "0.54.4"
|
|
1845
2042
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
-
checksum = "
|
|
2043
|
+
checksum = "809d9590232a37d638337629c18279af97bdb0d17c3d8b2b6bb186e903e8bd5e"
|
|
1847
2044
|
dependencies = [
|
|
1848
|
-
"ahash",
|
|
1849
2045
|
"bitflags",
|
|
2046
|
+
"chrono",
|
|
2047
|
+
"either",
|
|
1850
2048
|
"futures",
|
|
1851
2049
|
"memchr",
|
|
1852
|
-
"once_cell",
|
|
1853
2050
|
"polars-arrow",
|
|
2051
|
+
"polars-buffer",
|
|
2052
|
+
"polars-compute",
|
|
2053
|
+
"polars-config",
|
|
1854
2054
|
"polars-core",
|
|
1855
2055
|
"polars-expr",
|
|
1856
2056
|
"polars-io",
|
|
1857
2057
|
"polars-json",
|
|
1858
2058
|
"polars-mem-engine",
|
|
1859
2059
|
"polars-ops",
|
|
1860
|
-
"polars-pipe",
|
|
1861
2060
|
"polars-plan",
|
|
1862
2061
|
"polars-stream",
|
|
1863
2062
|
"polars-time",
|
|
@@ -1869,11 +2068,10 @@ dependencies = [
|
|
|
1869
2068
|
|
|
1870
2069
|
[[package]]
|
|
1871
2070
|
name = "polars-mem-engine"
|
|
1872
|
-
version = "0.
|
|
2071
|
+
version = "0.54.4"
|
|
1873
2072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
-
checksum = "
|
|
2073
|
+
checksum = "f55c6b7d162c506bc8eee82b065fa0399ebcd20b8f08675a534f3d360904ba38"
|
|
1875
2074
|
dependencies = [
|
|
1876
|
-
"futures",
|
|
1877
2075
|
"memmap2",
|
|
1878
2076
|
"polars-arrow",
|
|
1879
2077
|
"polars-core",
|
|
@@ -1885,18 +2083,35 @@ dependencies = [
|
|
|
1885
2083
|
"polars-plan",
|
|
1886
2084
|
"polars-time",
|
|
1887
2085
|
"polars-utils",
|
|
1888
|
-
"pyo3",
|
|
1889
2086
|
"rayon",
|
|
2087
|
+
"recursive",
|
|
2088
|
+
"tokio",
|
|
2089
|
+
]
|
|
2090
|
+
|
|
2091
|
+
[[package]]
|
|
2092
|
+
name = "polars-ooc"
|
|
2093
|
+
version = "0.54.4"
|
|
2094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
+
checksum = "78b3eea0b386837b760a97ec9c92df99cbc10f94885cae060fd7100f9b794163"
|
|
2096
|
+
dependencies = [
|
|
2097
|
+
"async-trait",
|
|
2098
|
+
"boxcar",
|
|
2099
|
+
"libc",
|
|
2100
|
+
"polars-async",
|
|
2101
|
+
"polars-config",
|
|
2102
|
+
"polars-core",
|
|
2103
|
+
"polars-io",
|
|
2104
|
+
"polars-utils",
|
|
2105
|
+
"thread_local",
|
|
1890
2106
|
"tokio",
|
|
1891
2107
|
]
|
|
1892
2108
|
|
|
1893
2109
|
[[package]]
|
|
1894
2110
|
name = "polars-ops"
|
|
1895
|
-
version = "0.
|
|
2111
|
+
version = "0.54.4"
|
|
1896
2112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
-
checksum = "
|
|
2113
|
+
checksum = "cb146490a717ac5ae4ff3a22a5adf3ebae79361f187b1f550f9e24783d7ad765"
|
|
1898
2114
|
dependencies = [
|
|
1899
|
-
"ahash",
|
|
1900
2115
|
"aho-corasick",
|
|
1901
2116
|
"argminmax",
|
|
1902
2117
|
"base64",
|
|
@@ -1904,13 +2119,15 @@ dependencies = [
|
|
|
1904
2119
|
"chrono",
|
|
1905
2120
|
"chrono-tz",
|
|
1906
2121
|
"either",
|
|
1907
|
-
"hashbrown 0.
|
|
2122
|
+
"hashbrown 0.16.1",
|
|
1908
2123
|
"hex",
|
|
1909
2124
|
"indexmap",
|
|
1910
2125
|
"jsonpath_lib_polars_vendor",
|
|
2126
|
+
"libm",
|
|
1911
2127
|
"memchr",
|
|
1912
2128
|
"num-traits",
|
|
1913
2129
|
"polars-arrow",
|
|
2130
|
+
"polars-buffer",
|
|
1914
2131
|
"polars-compute",
|
|
1915
2132
|
"polars-core",
|
|
1916
2133
|
"polars-error",
|
|
@@ -1925,17 +2142,17 @@ dependencies = [
|
|
|
1925
2142
|
"serde",
|
|
1926
2143
|
"serde_json",
|
|
1927
2144
|
"strum_macros",
|
|
2145
|
+
"unicode-normalization",
|
|
1928
2146
|
"unicode-reverse",
|
|
1929
2147
|
"version_check",
|
|
1930
2148
|
]
|
|
1931
2149
|
|
|
1932
2150
|
[[package]]
|
|
1933
2151
|
name = "polars-parquet"
|
|
1934
|
-
version = "0.
|
|
2152
|
+
version = "0.54.4"
|
|
1935
2153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1936
|
-
checksum = "
|
|
2154
|
+
checksum = "fd6b79ba2103c00cbb9c5dd4459ffff1d8ce15286c7a6d376a04c711df20d8b7"
|
|
1937
2155
|
dependencies = [
|
|
1938
|
-
"ahash",
|
|
1939
2156
|
"async-stream",
|
|
1940
2157
|
"base64",
|
|
1941
2158
|
"brotli",
|
|
@@ -1943,14 +2160,17 @@ dependencies = [
|
|
|
1943
2160
|
"ethnum",
|
|
1944
2161
|
"flate2",
|
|
1945
2162
|
"futures",
|
|
1946
|
-
"hashbrown 0.
|
|
2163
|
+
"hashbrown 0.16.1",
|
|
1947
2164
|
"lz4",
|
|
1948
2165
|
"num-traits",
|
|
1949
2166
|
"polars-arrow",
|
|
2167
|
+
"polars-buffer",
|
|
1950
2168
|
"polars-compute",
|
|
2169
|
+
"polars-config",
|
|
1951
2170
|
"polars-error",
|
|
1952
2171
|
"polars-parquet-format",
|
|
1953
2172
|
"polars-utils",
|
|
2173
|
+
"regex",
|
|
1954
2174
|
"serde",
|
|
1955
2175
|
"simdutf8",
|
|
1956
2176
|
"snap",
|
|
@@ -1968,87 +2188,104 @@ dependencies = [
|
|
|
1968
2188
|
"futures",
|
|
1969
2189
|
]
|
|
1970
2190
|
|
|
1971
|
-
[[package]]
|
|
1972
|
-
name = "polars-pipe"
|
|
1973
|
-
version = "0.44.2"
|
|
1974
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
-
checksum = "05936f2b3981eecb2fe74d8ef092bb75a93d2a056b3e4f339f4ac20c71c9e331"
|
|
1976
|
-
dependencies = [
|
|
1977
|
-
"crossbeam-channel",
|
|
1978
|
-
"crossbeam-queue",
|
|
1979
|
-
"enum_dispatch",
|
|
1980
|
-
"futures",
|
|
1981
|
-
"hashbrown 0.15.0",
|
|
1982
|
-
"num-traits",
|
|
1983
|
-
"polars-arrow",
|
|
1984
|
-
"polars-compute",
|
|
1985
|
-
"polars-core",
|
|
1986
|
-
"polars-expr",
|
|
1987
|
-
"polars-io",
|
|
1988
|
-
"polars-ops",
|
|
1989
|
-
"polars-plan",
|
|
1990
|
-
"polars-row",
|
|
1991
|
-
"polars-utils",
|
|
1992
|
-
"rayon",
|
|
1993
|
-
"tokio",
|
|
1994
|
-
"uuid",
|
|
1995
|
-
"version_check",
|
|
1996
|
-
]
|
|
1997
|
-
|
|
1998
2191
|
[[package]]
|
|
1999
2192
|
name = "polars-plan"
|
|
2000
|
-
version = "0.
|
|
2193
|
+
version = "0.54.4"
|
|
2001
2194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
-
checksum = "
|
|
2195
|
+
checksum = "2f5ccc230515adb10762a8c7b0df03fd88f3328deb5b60e9b1eeb2eceef4d344"
|
|
2003
2196
|
dependencies = [
|
|
2004
|
-
"ahash",
|
|
2005
2197
|
"bitflags",
|
|
2198
|
+
"blake3",
|
|
2006
2199
|
"bytemuck",
|
|
2007
2200
|
"bytes",
|
|
2008
2201
|
"chrono",
|
|
2009
2202
|
"chrono-tz",
|
|
2010
|
-
"ciborium",
|
|
2011
2203
|
"either",
|
|
2012
2204
|
"futures",
|
|
2013
|
-
"hashbrown 0.
|
|
2205
|
+
"hashbrown 0.16.1",
|
|
2206
|
+
"indexmap",
|
|
2014
2207
|
"memmap2",
|
|
2015
2208
|
"num-traits",
|
|
2016
|
-
"once_cell",
|
|
2017
2209
|
"percent-encoding",
|
|
2018
2210
|
"polars-arrow",
|
|
2211
|
+
"polars-buffer",
|
|
2212
|
+
"polars-compute",
|
|
2213
|
+
"polars-config",
|
|
2019
2214
|
"polars-core",
|
|
2215
|
+
"polars-error",
|
|
2020
2216
|
"polars-io",
|
|
2021
2217
|
"polars-json",
|
|
2022
2218
|
"polars-ops",
|
|
2023
2219
|
"polars-parquet",
|
|
2024
2220
|
"polars-time",
|
|
2025
2221
|
"polars-utils",
|
|
2026
|
-
"pyo3",
|
|
2027
2222
|
"rayon",
|
|
2028
2223
|
"recursive",
|
|
2029
2224
|
"regex",
|
|
2030
2225
|
"serde",
|
|
2226
|
+
"sha2",
|
|
2227
|
+
"slotmap",
|
|
2031
2228
|
"strum_macros",
|
|
2229
|
+
"tokio",
|
|
2032
2230
|
"version_check",
|
|
2033
2231
|
]
|
|
2034
2232
|
|
|
2035
2233
|
[[package]]
|
|
2036
2234
|
name = "polars-row"
|
|
2037
|
-
version = "0.
|
|
2235
|
+
version = "0.54.4"
|
|
2038
2236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
|
-
checksum = "
|
|
2237
|
+
checksum = "3d4e3254450024078e10c919ecd3b467bdcfdd5cf386c2ca6eedec89bd4771d2"
|
|
2040
2238
|
dependencies = [
|
|
2239
|
+
"bitflags",
|
|
2041
2240
|
"bytemuck",
|
|
2042
2241
|
"polars-arrow",
|
|
2242
|
+
"polars-buffer",
|
|
2243
|
+
"polars-compute",
|
|
2244
|
+
"polars-dtype",
|
|
2245
|
+
"polars-error",
|
|
2246
|
+
"polars-utils",
|
|
2247
|
+
]
|
|
2248
|
+
|
|
2249
|
+
[[package]]
|
|
2250
|
+
name = "polars-ruby"
|
|
2251
|
+
version = "0.26.0"
|
|
2252
|
+
dependencies = [
|
|
2253
|
+
"ahash",
|
|
2254
|
+
"bytes",
|
|
2255
|
+
"chrono",
|
|
2256
|
+
"chrono-tz",
|
|
2257
|
+
"either",
|
|
2258
|
+
"magnus",
|
|
2259
|
+
"mimalloc",
|
|
2260
|
+
"num-traits",
|
|
2261
|
+
"parking_lot",
|
|
2262
|
+
"polars",
|
|
2263
|
+
"polars-arrow",
|
|
2264
|
+
"polars-buffer",
|
|
2265
|
+
"polars-compute",
|
|
2266
|
+
"polars-config",
|
|
2267
|
+
"polars-core",
|
|
2268
|
+
"polars-dtype",
|
|
2043
2269
|
"polars-error",
|
|
2270
|
+
"polars-io",
|
|
2271
|
+
"polars-lazy",
|
|
2272
|
+
"polars-ops",
|
|
2273
|
+
"polars-parquet",
|
|
2274
|
+
"polars-plan",
|
|
2275
|
+
"polars-testing",
|
|
2044
2276
|
"polars-utils",
|
|
2277
|
+
"rayon",
|
|
2278
|
+
"rb-sys",
|
|
2279
|
+
"regex",
|
|
2280
|
+
"serde_json",
|
|
2281
|
+
"tikv-jemallocator",
|
|
2045
2282
|
]
|
|
2046
2283
|
|
|
2047
2284
|
[[package]]
|
|
2048
2285
|
name = "polars-schema"
|
|
2049
|
-
version = "0.
|
|
2286
|
+
version = "0.54.4"
|
|
2050
2287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
-
checksum = "
|
|
2288
|
+
checksum = "6f8a0de8951d02576fd0cdcecd9c605a6b6364d3105b7469b8d7874ea34eea2f"
|
|
2052
2289
|
dependencies = [
|
|
2053
2290
|
"indexmap",
|
|
2054
2291
|
"polars-error",
|
|
@@ -2059,13 +2296,12 @@ dependencies = [
|
|
|
2059
2296
|
|
|
2060
2297
|
[[package]]
|
|
2061
2298
|
name = "polars-sql"
|
|
2062
|
-
version = "0.
|
|
2299
|
+
version = "0.54.4"
|
|
2063
2300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2064
|
-
checksum = "
|
|
2301
|
+
checksum = "b282a6164927eb12774b66b071b773a1573173ae53758e8d4df50389ff06efa2"
|
|
2065
2302
|
dependencies = [
|
|
2303
|
+
"bitflags",
|
|
2066
2304
|
"hex",
|
|
2067
|
-
"once_cell",
|
|
2068
|
-
"polars-arrow",
|
|
2069
2305
|
"polars-core",
|
|
2070
2306
|
"polars-error",
|
|
2071
2307
|
"polars-lazy",
|
|
@@ -2073,58 +2309,84 @@ dependencies = [
|
|
|
2073
2309
|
"polars-plan",
|
|
2074
2310
|
"polars-time",
|
|
2075
2311
|
"polars-utils",
|
|
2076
|
-
"
|
|
2312
|
+
"regex",
|
|
2077
2313
|
"serde",
|
|
2078
|
-
"serde_json",
|
|
2079
2314
|
"sqlparser",
|
|
2080
2315
|
]
|
|
2081
2316
|
|
|
2082
2317
|
[[package]]
|
|
2083
2318
|
name = "polars-stream"
|
|
2084
|
-
version = "0.
|
|
2319
|
+
version = "0.54.4"
|
|
2085
2320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
|
-
checksum = "
|
|
2321
|
+
checksum = "cfa8ff4ee21799898579595a0ef2fb728d0a9cac3d061835fb7f7f6dd854734a"
|
|
2087
2322
|
dependencies = [
|
|
2088
|
-
"
|
|
2089
|
-
"
|
|
2090
|
-
"
|
|
2323
|
+
"async-channel",
|
|
2324
|
+
"async-trait",
|
|
2325
|
+
"bitflags",
|
|
2326
|
+
"bytes",
|
|
2327
|
+
"chrono-tz",
|
|
2328
|
+
"crossbeam-channel",
|
|
2329
|
+
"crossbeam-queue",
|
|
2091
2330
|
"futures",
|
|
2092
|
-
"
|
|
2331
|
+
"memchr",
|
|
2332
|
+
"num-traits",
|
|
2093
2333
|
"parking_lot",
|
|
2094
|
-
"
|
|
2334
|
+
"percent-encoding",
|
|
2335
|
+
"polars-arrow",
|
|
2336
|
+
"polars-async",
|
|
2337
|
+
"polars-buffer",
|
|
2338
|
+
"polars-compute",
|
|
2339
|
+
"polars-config",
|
|
2095
2340
|
"polars-core",
|
|
2096
2341
|
"polars-error",
|
|
2097
2342
|
"polars-expr",
|
|
2098
2343
|
"polars-io",
|
|
2344
|
+
"polars-json",
|
|
2099
2345
|
"polars-mem-engine",
|
|
2346
|
+
"polars-ooc",
|
|
2347
|
+
"polars-ops",
|
|
2100
2348
|
"polars-parquet",
|
|
2101
2349
|
"polars-plan",
|
|
2350
|
+
"polars-time",
|
|
2102
2351
|
"polars-utils",
|
|
2103
|
-
"rand",
|
|
2104
2352
|
"rayon",
|
|
2105
2353
|
"recursive",
|
|
2354
|
+
"serde_json",
|
|
2106
2355
|
"slotmap",
|
|
2107
2356
|
"tokio",
|
|
2357
|
+
"uuid",
|
|
2108
2358
|
"version_check",
|
|
2109
2359
|
]
|
|
2110
2360
|
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "polars-testing"
|
|
2363
|
+
version = "0.54.4"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "d2bc80ac4b0216c03dbc14af3cbcc031ba8eabd57f86a73feb10fe5bf9aad165"
|
|
2366
|
+
dependencies = [
|
|
2367
|
+
"polars-core",
|
|
2368
|
+
"polars-ops",
|
|
2369
|
+
]
|
|
2370
|
+
|
|
2111
2371
|
[[package]]
|
|
2112
2372
|
name = "polars-time"
|
|
2113
|
-
version = "0.
|
|
2373
|
+
version = "0.54.4"
|
|
2114
2374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2115
|
-
checksum = "
|
|
2375
|
+
checksum = "e1063fe074c4212a54917be604377c6e6bfbc8b6c942a5c57be214e4ccaaafdf"
|
|
2116
2376
|
dependencies = [
|
|
2117
|
-
"
|
|
2377
|
+
"atoi_simd",
|
|
2118
2378
|
"bytemuck",
|
|
2119
2379
|
"chrono",
|
|
2120
2380
|
"chrono-tz",
|
|
2121
2381
|
"now",
|
|
2122
|
-
"
|
|
2382
|
+
"num-traits",
|
|
2123
2383
|
"polars-arrow",
|
|
2384
|
+
"polars-compute",
|
|
2124
2385
|
"polars-core",
|
|
2125
2386
|
"polars-error",
|
|
2126
2387
|
"polars-ops",
|
|
2127
2388
|
"polars-utils",
|
|
2389
|
+
"rayon",
|
|
2128
2390
|
"regex",
|
|
2129
2391
|
"serde",
|
|
2130
2392
|
"strum_macros",
|
|
@@ -2132,131 +2394,85 @@ dependencies = [
|
|
|
2132
2394
|
|
|
2133
2395
|
[[package]]
|
|
2134
2396
|
name = "polars-utils"
|
|
2135
|
-
version = "0.
|
|
2397
|
+
version = "0.54.4"
|
|
2136
2398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
-
checksum = "
|
|
2399
|
+
checksum = "590b0a94aa8f97992d52f1198600ecc1c1f7cfa03c1b31cae057143455804ac0"
|
|
2138
2400
|
dependencies = [
|
|
2139
|
-
"
|
|
2401
|
+
"argminmax",
|
|
2402
|
+
"bincode",
|
|
2140
2403
|
"bytemuck",
|
|
2141
2404
|
"bytes",
|
|
2142
2405
|
"compact_str",
|
|
2143
|
-
"
|
|
2406
|
+
"either",
|
|
2407
|
+
"flate2",
|
|
2408
|
+
"foldhash 0.2.0",
|
|
2409
|
+
"futures",
|
|
2410
|
+
"half",
|
|
2411
|
+
"hashbrown 0.16.1",
|
|
2144
2412
|
"indexmap",
|
|
2145
2413
|
"libc",
|
|
2146
2414
|
"memmap2",
|
|
2415
|
+
"num-derive",
|
|
2147
2416
|
"num-traits",
|
|
2148
|
-
"
|
|
2417
|
+
"polars-config",
|
|
2149
2418
|
"polars-error",
|
|
2150
|
-
"
|
|
2419
|
+
"rand",
|
|
2151
2420
|
"raw-cpuid",
|
|
2152
2421
|
"rayon",
|
|
2422
|
+
"regex",
|
|
2423
|
+
"rmp-serde",
|
|
2153
2424
|
"serde",
|
|
2425
|
+
"serde_json",
|
|
2426
|
+
"serde_stacker",
|
|
2427
|
+
"slotmap",
|
|
2154
2428
|
"stacker",
|
|
2155
2429
|
"sysinfo",
|
|
2430
|
+
"tokio",
|
|
2431
|
+
"uuid",
|
|
2156
2432
|
"version_check",
|
|
2157
2433
|
]
|
|
2158
2434
|
|
|
2159
2435
|
[[package]]
|
|
2160
|
-
name = "
|
|
2161
|
-
version = "1.
|
|
2436
|
+
name = "potential_utf"
|
|
2437
|
+
version = "0.1.2"
|
|
2162
2438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
|
-
checksum = "
|
|
2439
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
|
2440
|
+
dependencies = [
|
|
2441
|
+
"zerovec",
|
|
2442
|
+
]
|
|
2164
2443
|
|
|
2165
2444
|
[[package]]
|
|
2166
2445
|
name = "ppv-lite86"
|
|
2167
|
-
version = "0.2.
|
|
2446
|
+
version = "0.2.21"
|
|
2168
2447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2169
|
-
checksum = "
|
|
2448
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2170
2449
|
dependencies = [
|
|
2171
2450
|
"zerocopy",
|
|
2172
2451
|
]
|
|
2173
2452
|
|
|
2174
2453
|
[[package]]
|
|
2175
2454
|
name = "proc-macro2"
|
|
2176
|
-
version = "1.0.
|
|
2455
|
+
version = "1.0.95"
|
|
2177
2456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2178
|
-
checksum = "
|
|
2457
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
2179
2458
|
dependencies = [
|
|
2180
2459
|
"unicode-ident",
|
|
2181
2460
|
]
|
|
2182
2461
|
|
|
2183
2462
|
[[package]]
|
|
2184
2463
|
name = "psm"
|
|
2185
|
-
version = "0.1.
|
|
2464
|
+
version = "0.1.26"
|
|
2186
2465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2187
|
-
checksum = "
|
|
2466
|
+
checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
|
|
2188
2467
|
dependencies = [
|
|
2189
2468
|
"cc",
|
|
2190
2469
|
]
|
|
2191
2470
|
|
|
2192
|
-
[[package]]
|
|
2193
|
-
name = "pyo3"
|
|
2194
|
-
version = "0.21.2"
|
|
2195
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2196
|
-
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
|
2197
|
-
dependencies = [
|
|
2198
|
-
"cfg-if",
|
|
2199
|
-
"indoc",
|
|
2200
|
-
"libc",
|
|
2201
|
-
"memoffset",
|
|
2202
|
-
"parking_lot",
|
|
2203
|
-
"portable-atomic",
|
|
2204
|
-
"pyo3-build-config",
|
|
2205
|
-
"pyo3-ffi",
|
|
2206
|
-
"pyo3-macros",
|
|
2207
|
-
"unindent",
|
|
2208
|
-
]
|
|
2209
|
-
|
|
2210
|
-
[[package]]
|
|
2211
|
-
name = "pyo3-build-config"
|
|
2212
|
-
version = "0.21.2"
|
|
2213
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
-
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
|
2215
|
-
dependencies = [
|
|
2216
|
-
"once_cell",
|
|
2217
|
-
"target-lexicon",
|
|
2218
|
-
]
|
|
2219
|
-
|
|
2220
|
-
[[package]]
|
|
2221
|
-
name = "pyo3-ffi"
|
|
2222
|
-
version = "0.21.2"
|
|
2223
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
-
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
|
2225
|
-
dependencies = [
|
|
2226
|
-
"libc",
|
|
2227
|
-
"pyo3-build-config",
|
|
2228
|
-
]
|
|
2229
|
-
|
|
2230
|
-
[[package]]
|
|
2231
|
-
name = "pyo3-macros"
|
|
2232
|
-
version = "0.21.2"
|
|
2233
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
|
-
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
|
2235
|
-
dependencies = [
|
|
2236
|
-
"proc-macro2",
|
|
2237
|
-
"pyo3-macros-backend",
|
|
2238
|
-
"quote",
|
|
2239
|
-
"syn 2.0.85",
|
|
2240
|
-
]
|
|
2241
|
-
|
|
2242
|
-
[[package]]
|
|
2243
|
-
name = "pyo3-macros-backend"
|
|
2244
|
-
version = "0.21.2"
|
|
2245
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
-
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
|
2247
|
-
dependencies = [
|
|
2248
|
-
"heck 0.4.1",
|
|
2249
|
-
"proc-macro2",
|
|
2250
|
-
"pyo3-build-config",
|
|
2251
|
-
"quote",
|
|
2252
|
-
"syn 2.0.85",
|
|
2253
|
-
]
|
|
2254
|
-
|
|
2255
2471
|
[[package]]
|
|
2256
2472
|
name = "quick-xml"
|
|
2257
|
-
version = "0.
|
|
2473
|
+
version = "0.38.4"
|
|
2258
2474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2259
|
-
checksum = "
|
|
2475
|
+
checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
|
|
2260
2476
|
dependencies = [
|
|
2261
2477
|
"memchr",
|
|
2262
2478
|
"serde",
|
|
@@ -2264,44 +2480,50 @@ dependencies = [
|
|
|
2264
2480
|
|
|
2265
2481
|
[[package]]
|
|
2266
2482
|
name = "quinn"
|
|
2267
|
-
version = "0.11.
|
|
2483
|
+
version = "0.11.8"
|
|
2268
2484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
-
checksum = "
|
|
2485
|
+
checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
|
|
2270
2486
|
dependencies = [
|
|
2271
2487
|
"bytes",
|
|
2488
|
+
"cfg_aliases",
|
|
2272
2489
|
"pin-project-lite",
|
|
2273
2490
|
"quinn-proto",
|
|
2274
2491
|
"quinn-udp",
|
|
2275
|
-
"rustc-hash 2.
|
|
2492
|
+
"rustc-hash 2.1.1",
|
|
2276
2493
|
"rustls",
|
|
2277
2494
|
"socket2",
|
|
2278
2495
|
"thiserror",
|
|
2279
2496
|
"tokio",
|
|
2280
2497
|
"tracing",
|
|
2498
|
+
"web-time",
|
|
2281
2499
|
]
|
|
2282
2500
|
|
|
2283
2501
|
[[package]]
|
|
2284
2502
|
name = "quinn-proto"
|
|
2285
|
-
version = "0.11.
|
|
2503
|
+
version = "0.11.14"
|
|
2286
2504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2287
|
-
checksum = "
|
|
2505
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
2288
2506
|
dependencies = [
|
|
2289
2507
|
"bytes",
|
|
2508
|
+
"getrandom 0.3.3",
|
|
2509
|
+
"lru-slab",
|
|
2290
2510
|
"rand",
|
|
2291
2511
|
"ring",
|
|
2292
|
-
"rustc-hash 2.
|
|
2512
|
+
"rustc-hash 2.1.1",
|
|
2293
2513
|
"rustls",
|
|
2514
|
+
"rustls-pki-types",
|
|
2294
2515
|
"slab",
|
|
2295
2516
|
"thiserror",
|
|
2296
2517
|
"tinyvec",
|
|
2297
2518
|
"tracing",
|
|
2519
|
+
"web-time",
|
|
2298
2520
|
]
|
|
2299
2521
|
|
|
2300
2522
|
[[package]]
|
|
2301
2523
|
name = "quinn-udp"
|
|
2302
|
-
version = "0.5.
|
|
2524
|
+
version = "0.5.12"
|
|
2303
2525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2304
|
-
checksum = "
|
|
2526
|
+
checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
|
|
2305
2527
|
dependencies = [
|
|
2306
2528
|
"cfg_aliases",
|
|
2307
2529
|
"libc",
|
|
@@ -2313,29 +2535,34 @@ dependencies = [
|
|
|
2313
2535
|
|
|
2314
2536
|
[[package]]
|
|
2315
2537
|
name = "quote"
|
|
2316
|
-
version = "1.0.
|
|
2538
|
+
version = "1.0.40"
|
|
2317
2539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
|
-
checksum = "
|
|
2540
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
2319
2541
|
dependencies = [
|
|
2320
2542
|
"proc-macro2",
|
|
2321
2543
|
]
|
|
2322
2544
|
|
|
2545
|
+
[[package]]
|
|
2546
|
+
name = "r-efi"
|
|
2547
|
+
version = "5.2.0"
|
|
2548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2549
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
2550
|
+
|
|
2323
2551
|
[[package]]
|
|
2324
2552
|
name = "rand"
|
|
2325
|
-
version = "0.
|
|
2553
|
+
version = "0.9.4"
|
|
2326
2554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
-
checksum = "
|
|
2555
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2328
2556
|
dependencies = [
|
|
2329
|
-
"libc",
|
|
2330
2557
|
"rand_chacha",
|
|
2331
2558
|
"rand_core",
|
|
2332
2559
|
]
|
|
2333
2560
|
|
|
2334
2561
|
[[package]]
|
|
2335
2562
|
name = "rand_chacha"
|
|
2336
|
-
version = "0.
|
|
2563
|
+
version = "0.9.0"
|
|
2337
2564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2338
|
-
checksum = "
|
|
2565
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2339
2566
|
dependencies = [
|
|
2340
2567
|
"ppv-lite86",
|
|
2341
2568
|
"rand_core",
|
|
@@ -2343,18 +2570,18 @@ dependencies = [
|
|
|
2343
2570
|
|
|
2344
2571
|
[[package]]
|
|
2345
2572
|
name = "rand_core"
|
|
2346
|
-
version = "0.
|
|
2573
|
+
version = "0.9.3"
|
|
2347
2574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
-
checksum = "
|
|
2575
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2349
2576
|
dependencies = [
|
|
2350
|
-
"getrandom",
|
|
2577
|
+
"getrandom 0.3.3",
|
|
2351
2578
|
]
|
|
2352
2579
|
|
|
2353
2580
|
[[package]]
|
|
2354
2581
|
name = "rand_distr"
|
|
2355
|
-
version = "0.
|
|
2582
|
+
version = "0.5.1"
|
|
2356
2583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
-
checksum = "
|
|
2584
|
+
checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
|
|
2358
2585
|
dependencies = [
|
|
2359
2586
|
"num-traits",
|
|
2360
2587
|
"rand",
|
|
@@ -2362,9 +2589,9 @@ dependencies = [
|
|
|
2362
2589
|
|
|
2363
2590
|
[[package]]
|
|
2364
2591
|
name = "raw-cpuid"
|
|
2365
|
-
version = "11.
|
|
2592
|
+
version = "11.5.0"
|
|
2366
2593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2367
|
-
checksum = "
|
|
2594
|
+
checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
|
|
2368
2595
|
dependencies = [
|
|
2369
2596
|
"bitflags",
|
|
2370
2597
|
]
|
|
@@ -2391,18 +2618,18 @@ dependencies = [
|
|
|
2391
2618
|
|
|
2392
2619
|
[[package]]
|
|
2393
2620
|
name = "rb-sys"
|
|
2394
|
-
version = "0.9.
|
|
2621
|
+
version = "0.9.124"
|
|
2395
2622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2396
|
-
checksum = "
|
|
2623
|
+
checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
|
|
2397
2624
|
dependencies = [
|
|
2398
2625
|
"rb-sys-build",
|
|
2399
2626
|
]
|
|
2400
2627
|
|
|
2401
2628
|
[[package]]
|
|
2402
2629
|
name = "rb-sys-build"
|
|
2403
|
-
version = "0.9.
|
|
2630
|
+
version = "0.9.124"
|
|
2404
2631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
-
checksum = "
|
|
2632
|
+
checksum = "568068db4102230882e6d4ae8de6632e224ca75fe5970f6e026a04e91ed635d3"
|
|
2406
2633
|
dependencies = [
|
|
2407
2634
|
"bindgen",
|
|
2408
2635
|
"lazy_static",
|
|
@@ -2410,14 +2637,14 @@ dependencies = [
|
|
|
2410
2637
|
"quote",
|
|
2411
2638
|
"regex",
|
|
2412
2639
|
"shell-words",
|
|
2413
|
-
"syn
|
|
2640
|
+
"syn",
|
|
2414
2641
|
]
|
|
2415
2642
|
|
|
2416
2643
|
[[package]]
|
|
2417
2644
|
name = "rb-sys-env"
|
|
2418
|
-
version = "0.
|
|
2645
|
+
version = "0.2.2"
|
|
2419
2646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
-
checksum = "
|
|
2647
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
2421
2648
|
|
|
2422
2649
|
[[package]]
|
|
2423
2650
|
name = "recursive"
|
|
@@ -2436,36 +2663,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2436
2663
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
|
2437
2664
|
dependencies = [
|
|
2438
2665
|
"quote",
|
|
2439
|
-
"syn
|
|
2666
|
+
"syn",
|
|
2440
2667
|
]
|
|
2441
2668
|
|
|
2442
2669
|
[[package]]
|
|
2443
2670
|
name = "redox_syscall"
|
|
2444
|
-
version = "0.5.
|
|
2671
|
+
version = "0.5.12"
|
|
2445
2672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2446
|
-
checksum = "
|
|
2673
|
+
checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
|
|
2447
2674
|
dependencies = [
|
|
2448
2675
|
"bitflags",
|
|
2449
2676
|
]
|
|
2450
2677
|
|
|
2451
2678
|
[[package]]
|
|
2452
2679
|
name = "ref-cast"
|
|
2453
|
-
version = "1.0.
|
|
2680
|
+
version = "1.0.24"
|
|
2454
2681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
-
checksum = "
|
|
2682
|
+
checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
|
|
2456
2683
|
dependencies = [
|
|
2457
2684
|
"ref-cast-impl",
|
|
2458
2685
|
]
|
|
2459
2686
|
|
|
2460
2687
|
[[package]]
|
|
2461
2688
|
name = "ref-cast-impl"
|
|
2462
|
-
version = "1.0.
|
|
2689
|
+
version = "1.0.24"
|
|
2463
2690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2464
|
-
checksum = "
|
|
2691
|
+
checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
|
|
2465
2692
|
dependencies = [
|
|
2466
2693
|
"proc-macro2",
|
|
2467
2694
|
"quote",
|
|
2468
|
-
"syn
|
|
2695
|
+
"syn",
|
|
2469
2696
|
]
|
|
2470
2697
|
|
|
2471
2698
|
[[package]]
|
|
@@ -2482,9 +2709,9 @@ dependencies = [
|
|
|
2482
2709
|
|
|
2483
2710
|
[[package]]
|
|
2484
2711
|
name = "regex-automata"
|
|
2485
|
-
version = "0.4.
|
|
2712
|
+
version = "0.4.9"
|
|
2486
2713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2487
|
-
checksum = "
|
|
2714
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
2488
2715
|
dependencies = [
|
|
2489
2716
|
"aho-corasick",
|
|
2490
2717
|
"memchr",
|
|
@@ -2499,9 +2726,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
|
2499
2726
|
|
|
2500
2727
|
[[package]]
|
|
2501
2728
|
name = "reqwest"
|
|
2502
|
-
version = "0.12.
|
|
2729
|
+
version = "0.12.15"
|
|
2503
2730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2504
|
-
checksum = "
|
|
2731
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
|
2505
2732
|
dependencies = [
|
|
2506
2733
|
"base64",
|
|
2507
2734
|
"bytes",
|
|
@@ -2533,6 +2760,7 @@ dependencies = [
|
|
|
2533
2760
|
"tokio",
|
|
2534
2761
|
"tokio-rustls",
|
|
2535
2762
|
"tokio-util",
|
|
2763
|
+
"tower",
|
|
2536
2764
|
"tower-service",
|
|
2537
2765
|
"url",
|
|
2538
2766
|
"wasm-bindgen",
|
|
@@ -2544,15 +2772,14 @@ dependencies = [
|
|
|
2544
2772
|
|
|
2545
2773
|
[[package]]
|
|
2546
2774
|
name = "ring"
|
|
2547
|
-
version = "0.17.
|
|
2775
|
+
version = "0.17.14"
|
|
2548
2776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2549
|
-
checksum = "
|
|
2777
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2550
2778
|
dependencies = [
|
|
2551
2779
|
"cc",
|
|
2552
2780
|
"cfg-if",
|
|
2553
|
-
"getrandom",
|
|
2781
|
+
"getrandom 0.2.16",
|
|
2554
2782
|
"libc",
|
|
2555
|
-
"spin",
|
|
2556
2783
|
"untrusted",
|
|
2557
2784
|
"windows-sys 0.52.0",
|
|
2558
2785
|
]
|
|
@@ -2563,6 +2790,28 @@ version = "1.0.3"
|
|
|
2563
2790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2564
2791
|
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
|
2565
2792
|
|
|
2793
|
+
[[package]]
|
|
2794
|
+
name = "rmp"
|
|
2795
|
+
version = "0.8.14"
|
|
2796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2797
|
+
checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
|
|
2798
|
+
dependencies = [
|
|
2799
|
+
"byteorder",
|
|
2800
|
+
"num-traits",
|
|
2801
|
+
"paste",
|
|
2802
|
+
]
|
|
2803
|
+
|
|
2804
|
+
[[package]]
|
|
2805
|
+
name = "rmp-serde"
|
|
2806
|
+
version = "1.3.0"
|
|
2807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2808
|
+
checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
|
|
2809
|
+
dependencies = [
|
|
2810
|
+
"byteorder",
|
|
2811
|
+
"rmp",
|
|
2812
|
+
"serde",
|
|
2813
|
+
]
|
|
2814
|
+
|
|
2566
2815
|
[[package]]
|
|
2567
2816
|
name = "rustc-demangle"
|
|
2568
2817
|
version = "0.1.24"
|
|
@@ -2577,28 +2826,41 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
2577
2826
|
|
|
2578
2827
|
[[package]]
|
|
2579
2828
|
name = "rustc-hash"
|
|
2580
|
-
version = "2.
|
|
2829
|
+
version = "2.1.1"
|
|
2581
2830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2582
|
-
checksum = "
|
|
2831
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2583
2832
|
|
|
2584
2833
|
[[package]]
|
|
2585
2834
|
name = "rustix"
|
|
2586
|
-
version = "0.38.
|
|
2835
|
+
version = "0.38.44"
|
|
2587
2836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2588
|
-
checksum = "
|
|
2837
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2589
2838
|
dependencies = [
|
|
2590
2839
|
"bitflags",
|
|
2591
2840
|
"errno",
|
|
2592
2841
|
"libc",
|
|
2593
|
-
"linux-raw-sys",
|
|
2594
|
-
"windows-sys 0.
|
|
2842
|
+
"linux-raw-sys 0.4.15",
|
|
2843
|
+
"windows-sys 0.59.0",
|
|
2844
|
+
]
|
|
2845
|
+
|
|
2846
|
+
[[package]]
|
|
2847
|
+
name = "rustix"
|
|
2848
|
+
version = "1.0.7"
|
|
2849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2850
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
2851
|
+
dependencies = [
|
|
2852
|
+
"bitflags",
|
|
2853
|
+
"errno",
|
|
2854
|
+
"libc",
|
|
2855
|
+
"linux-raw-sys 0.9.4",
|
|
2856
|
+
"windows-sys 0.59.0",
|
|
2595
2857
|
]
|
|
2596
2858
|
|
|
2597
2859
|
[[package]]
|
|
2598
2860
|
name = "rustls"
|
|
2599
|
-
version = "0.23.
|
|
2861
|
+
version = "0.23.27"
|
|
2600
2862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2601
|
-
checksum = "
|
|
2863
|
+
checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
|
|
2602
2864
|
dependencies = [
|
|
2603
2865
|
"once_cell",
|
|
2604
2866
|
"ring",
|
|
@@ -2610,12 +2872,11 @@ dependencies = [
|
|
|
2610
2872
|
|
|
2611
2873
|
[[package]]
|
|
2612
2874
|
name = "rustls-native-certs"
|
|
2613
|
-
version = "0.8.
|
|
2875
|
+
version = "0.8.1"
|
|
2614
2876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2615
|
-
checksum = "
|
|
2877
|
+
checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
|
|
2616
2878
|
dependencies = [
|
|
2617
2879
|
"openssl-probe",
|
|
2618
|
-
"rustls-pemfile",
|
|
2619
2880
|
"rustls-pki-types",
|
|
2620
2881
|
"schannel",
|
|
2621
2882
|
"security-framework",
|
|
@@ -2632,15 +2893,19 @@ dependencies = [
|
|
|
2632
2893
|
|
|
2633
2894
|
[[package]]
|
|
2634
2895
|
name = "rustls-pki-types"
|
|
2635
|
-
version = "1.
|
|
2896
|
+
version = "1.12.0"
|
|
2636
2897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2637
|
-
checksum = "
|
|
2898
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
|
2899
|
+
dependencies = [
|
|
2900
|
+
"web-time",
|
|
2901
|
+
"zeroize",
|
|
2902
|
+
]
|
|
2638
2903
|
|
|
2639
2904
|
[[package]]
|
|
2640
2905
|
name = "rustls-webpki"
|
|
2641
|
-
version = "0.
|
|
2906
|
+
version = "0.103.13"
|
|
2642
2907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2643
|
-
checksum = "
|
|
2908
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2644
2909
|
dependencies = [
|
|
2645
2910
|
"ring",
|
|
2646
2911
|
"rustls-pki-types",
|
|
@@ -2649,15 +2914,15 @@ dependencies = [
|
|
|
2649
2914
|
|
|
2650
2915
|
[[package]]
|
|
2651
2916
|
name = "rustversion"
|
|
2652
|
-
version = "1.0.
|
|
2917
|
+
version = "1.0.20"
|
|
2653
2918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2654
|
-
checksum = "
|
|
2919
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
2655
2920
|
|
|
2656
2921
|
[[package]]
|
|
2657
2922
|
name = "ryu"
|
|
2658
|
-
version = "1.0.
|
|
2923
|
+
version = "1.0.20"
|
|
2659
2924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
-
checksum = "
|
|
2925
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2661
2926
|
|
|
2662
2927
|
[[package]]
|
|
2663
2928
|
name = "same-file"
|
|
@@ -2670,9 +2935,9 @@ dependencies = [
|
|
|
2670
2935
|
|
|
2671
2936
|
[[package]]
|
|
2672
2937
|
name = "schannel"
|
|
2673
|
-
version = "0.1.
|
|
2938
|
+
version = "0.1.27"
|
|
2674
2939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2675
|
-
checksum = "
|
|
2940
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
|
2676
2941
|
dependencies = [
|
|
2677
2942
|
"windows-sys 0.59.0",
|
|
2678
2943
|
]
|
|
@@ -2685,9 +2950,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
2685
2950
|
|
|
2686
2951
|
[[package]]
|
|
2687
2952
|
name = "security-framework"
|
|
2688
|
-
version = "2.
|
|
2953
|
+
version = "3.2.0"
|
|
2689
2954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2690
|
-
checksum = "
|
|
2955
|
+
checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
|
|
2691
2956
|
dependencies = [
|
|
2692
2957
|
"bitflags",
|
|
2693
2958
|
"core-foundation",
|
|
@@ -2698,9 +2963,9 @@ dependencies = [
|
|
|
2698
2963
|
|
|
2699
2964
|
[[package]]
|
|
2700
2965
|
name = "security-framework-sys"
|
|
2701
|
-
version = "2.
|
|
2966
|
+
version = "2.14.0"
|
|
2702
2967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2703
|
-
checksum = "
|
|
2968
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
|
2704
2969
|
dependencies = [
|
|
2705
2970
|
"core-foundation-sys",
|
|
2706
2971
|
"libc",
|
|
@@ -2708,35 +2973,45 @@ dependencies = [
|
|
|
2708
2973
|
|
|
2709
2974
|
[[package]]
|
|
2710
2975
|
name = "seq-macro"
|
|
2711
|
-
version = "0.3.
|
|
2976
|
+
version = "0.3.6"
|
|
2712
2977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2713
|
-
checksum = "
|
|
2978
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
2714
2979
|
|
|
2715
2980
|
[[package]]
|
|
2716
2981
|
name = "serde"
|
|
2717
|
-
version = "1.0.
|
|
2982
|
+
version = "1.0.228"
|
|
2983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2985
|
+
dependencies = [
|
|
2986
|
+
"serde_core",
|
|
2987
|
+
"serde_derive",
|
|
2988
|
+
]
|
|
2989
|
+
|
|
2990
|
+
[[package]]
|
|
2991
|
+
name = "serde_core"
|
|
2992
|
+
version = "1.0.228"
|
|
2718
2993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2719
|
-
checksum = "
|
|
2994
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2720
2995
|
dependencies = [
|
|
2721
2996
|
"serde_derive",
|
|
2722
2997
|
]
|
|
2723
2998
|
|
|
2724
2999
|
[[package]]
|
|
2725
3000
|
name = "serde_derive"
|
|
2726
|
-
version = "1.0.
|
|
3001
|
+
version = "1.0.228"
|
|
2727
3002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2728
|
-
checksum = "
|
|
3003
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2729
3004
|
dependencies = [
|
|
2730
3005
|
"proc-macro2",
|
|
2731
3006
|
"quote",
|
|
2732
|
-
"syn
|
|
3007
|
+
"syn",
|
|
2733
3008
|
]
|
|
2734
3009
|
|
|
2735
3010
|
[[package]]
|
|
2736
3011
|
name = "serde_json"
|
|
2737
|
-
version = "1.0.
|
|
3012
|
+
version = "1.0.140"
|
|
2738
3013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2739
|
-
checksum = "
|
|
3014
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
2740
3015
|
dependencies = [
|
|
2741
3016
|
"indexmap",
|
|
2742
3017
|
"itoa",
|
|
@@ -2745,6 +3020,16 @@ dependencies = [
|
|
|
2745
3020
|
"serde",
|
|
2746
3021
|
]
|
|
2747
3022
|
|
|
3023
|
+
[[package]]
|
|
3024
|
+
name = "serde_stacker"
|
|
3025
|
+
version = "0.1.12"
|
|
3026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3027
|
+
checksum = "69c8defe6c780725cce4ec6ad3bd91e321baf6fa4e255df1f31e345d507ef01a"
|
|
3028
|
+
dependencies = [
|
|
3029
|
+
"serde",
|
|
3030
|
+
"stacker",
|
|
3031
|
+
]
|
|
3032
|
+
|
|
2748
3033
|
[[package]]
|
|
2749
3034
|
name = "serde_urlencoded"
|
|
2750
3035
|
version = "0.7.1"
|
|
@@ -2757,6 +3042,17 @@ dependencies = [
|
|
|
2757
3042
|
"serde",
|
|
2758
3043
|
]
|
|
2759
3044
|
|
|
3045
|
+
[[package]]
|
|
3046
|
+
name = "sha2"
|
|
3047
|
+
version = "0.10.9"
|
|
3048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3049
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3050
|
+
dependencies = [
|
|
3051
|
+
"cfg-if",
|
|
3052
|
+
"cpufeatures",
|
|
3053
|
+
"digest",
|
|
3054
|
+
]
|
|
3055
|
+
|
|
2760
3056
|
[[package]]
|
|
2761
3057
|
name = "shell-words"
|
|
2762
3058
|
version = "1.1.0"
|
|
@@ -2769,14 +3065,32 @@ version = "1.3.0"
|
|
|
2769
3065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2770
3066
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2771
3067
|
|
|
3068
|
+
[[package]]
|
|
3069
|
+
name = "signal-hook"
|
|
3070
|
+
version = "0.4.3"
|
|
3071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3072
|
+
checksum = "3b57709da74f9ff9f4a27dce9526eec25ca8407c45a7887243b031a58935fb8e"
|
|
3073
|
+
dependencies = [
|
|
3074
|
+
"libc",
|
|
3075
|
+
"signal-hook-registry",
|
|
3076
|
+
]
|
|
3077
|
+
|
|
3078
|
+
[[package]]
|
|
3079
|
+
name = "signal-hook-registry"
|
|
3080
|
+
version = "1.4.5"
|
|
3081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3082
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
|
3083
|
+
dependencies = [
|
|
3084
|
+
"libc",
|
|
3085
|
+
]
|
|
3086
|
+
|
|
2772
3087
|
[[package]]
|
|
2773
3088
|
name = "simd-json"
|
|
2774
|
-
version = "0.
|
|
3089
|
+
version = "0.17.0"
|
|
2775
3090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
-
checksum = "
|
|
3091
|
+
checksum = "4255126f310d2ba20048db6321c81ab376f6a6735608bf11f0785c41f01f64e3"
|
|
2777
3092
|
dependencies = [
|
|
2778
3093
|
"ahash",
|
|
2779
|
-
"getrandom",
|
|
2780
3094
|
"halfbrown",
|
|
2781
3095
|
"once_cell",
|
|
2782
3096
|
"ref-cast",
|
|
@@ -2794,9 +3108,9 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
|
2794
3108
|
|
|
2795
3109
|
[[package]]
|
|
2796
3110
|
name = "siphasher"
|
|
2797
|
-
version = "0.
|
|
3111
|
+
version = "1.0.1"
|
|
2798
3112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
|
-
checksum = "
|
|
3113
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2800
3114
|
|
|
2801
3115
|
[[package]]
|
|
2802
3116
|
name = "slab"
|
|
@@ -2813,36 +3127,15 @@ version = "1.0.7"
|
|
|
2813
3127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2814
3128
|
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
|
2815
3129
|
dependencies = [
|
|
3130
|
+
"serde",
|
|
2816
3131
|
"version_check",
|
|
2817
3132
|
]
|
|
2818
3133
|
|
|
2819
3134
|
[[package]]
|
|
2820
3135
|
name = "smallvec"
|
|
2821
|
-
version = "1.
|
|
2822
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2823
|
-
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
2824
|
-
|
|
2825
|
-
[[package]]
|
|
2826
|
-
name = "snafu"
|
|
2827
|
-
version = "0.7.5"
|
|
2828
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2829
|
-
checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6"
|
|
2830
|
-
dependencies = [
|
|
2831
|
-
"doc-comment",
|
|
2832
|
-
"snafu-derive",
|
|
2833
|
-
]
|
|
2834
|
-
|
|
2835
|
-
[[package]]
|
|
2836
|
-
name = "snafu-derive"
|
|
2837
|
-
version = "0.7.5"
|
|
3136
|
+
version = "1.15.0"
|
|
2838
3137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
-
checksum = "
|
|
2840
|
-
dependencies = [
|
|
2841
|
-
"heck 0.4.1",
|
|
2842
|
-
"proc-macro2",
|
|
2843
|
-
"quote",
|
|
2844
|
-
"syn 1.0.109",
|
|
2845
|
-
]
|
|
3138
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
2846
3139
|
|
|
2847
3140
|
[[package]]
|
|
2848
3141
|
name = "snap"
|
|
@@ -2852,34 +3145,47 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
|
2852
3145
|
|
|
2853
3146
|
[[package]]
|
|
2854
3147
|
name = "socket2"
|
|
2855
|
-
version = "0.5.
|
|
3148
|
+
version = "0.5.9"
|
|
2856
3149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2857
|
-
checksum = "
|
|
3150
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
2858
3151
|
dependencies = [
|
|
2859
3152
|
"libc",
|
|
2860
3153
|
"windows-sys 0.52.0",
|
|
2861
3154
|
]
|
|
2862
3155
|
|
|
2863
3156
|
[[package]]
|
|
2864
|
-
name = "
|
|
2865
|
-
version = "0.
|
|
3157
|
+
name = "sqlparser"
|
|
3158
|
+
version = "0.60.0"
|
|
3159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3160
|
+
checksum = "505aa16b045c4c1375bf5f125cce3813d0176325bfe9ffc4a903f423de7774ff"
|
|
3161
|
+
dependencies = [
|
|
3162
|
+
"log",
|
|
3163
|
+
"recursive",
|
|
3164
|
+
"sqlparser_derive",
|
|
3165
|
+
]
|
|
3166
|
+
|
|
3167
|
+
[[package]]
|
|
3168
|
+
name = "sqlparser_derive"
|
|
3169
|
+
version = "0.4.0"
|
|
2866
3170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
-
checksum = "
|
|
3171
|
+
checksum = "028e551d5e270b31b9f3ea271778d9d827148d4287a5d96167b6bb9787f5cc38"
|
|
3172
|
+
dependencies = [
|
|
3173
|
+
"proc-macro2",
|
|
3174
|
+
"quote",
|
|
3175
|
+
"syn",
|
|
3176
|
+
]
|
|
2868
3177
|
|
|
2869
3178
|
[[package]]
|
|
2870
|
-
name = "
|
|
2871
|
-
version = "
|
|
3179
|
+
name = "stable_deref_trait"
|
|
3180
|
+
version = "1.2.0"
|
|
2872
3181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2873
|
-
checksum = "
|
|
2874
|
-
dependencies = [
|
|
2875
|
-
"log",
|
|
2876
|
-
]
|
|
3182
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2877
3183
|
|
|
2878
3184
|
[[package]]
|
|
2879
3185
|
name = "stacker"
|
|
2880
|
-
version = "0.1.
|
|
3186
|
+
version = "0.1.21"
|
|
2881
3187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2882
|
-
checksum = "
|
|
3188
|
+
checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
|
|
2883
3189
|
dependencies = [
|
|
2884
3190
|
"cc",
|
|
2885
3191
|
"cfg-if",
|
|
@@ -2917,21 +3223,20 @@ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
|
2917
3223
|
|
|
2918
3224
|
[[package]]
|
|
2919
3225
|
name = "strum"
|
|
2920
|
-
version = "0.
|
|
3226
|
+
version = "0.27.2"
|
|
2921
3227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
-
checksum = "
|
|
3228
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
2923
3229
|
|
|
2924
3230
|
[[package]]
|
|
2925
3231
|
name = "strum_macros"
|
|
2926
|
-
version = "0.
|
|
3232
|
+
version = "0.27.2"
|
|
2927
3233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
-
checksum = "
|
|
3234
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
2929
3235
|
dependencies = [
|
|
2930
|
-
"heck
|
|
3236
|
+
"heck",
|
|
2931
3237
|
"proc-macro2",
|
|
2932
3238
|
"quote",
|
|
2933
|
-
"
|
|
2934
|
-
"syn 2.0.85",
|
|
3239
|
+
"syn",
|
|
2935
3240
|
]
|
|
2936
3241
|
|
|
2937
3242
|
[[package]]
|
|
@@ -2942,9 +3247,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
2942
3247
|
|
|
2943
3248
|
[[package]]
|
|
2944
3249
|
name = "syn"
|
|
2945
|
-
version = "
|
|
3250
|
+
version = "2.0.101"
|
|
2946
3251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2947
|
-
checksum = "
|
|
3252
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
|
2948
3253
|
dependencies = [
|
|
2949
3254
|
"proc-macro2",
|
|
2950
3255
|
"quote",
|
|
@@ -2952,75 +3257,103 @@ dependencies = [
|
|
|
2952
3257
|
]
|
|
2953
3258
|
|
|
2954
3259
|
[[package]]
|
|
2955
|
-
name = "
|
|
2956
|
-
version = "
|
|
3260
|
+
name = "sync_wrapper"
|
|
3261
|
+
version = "1.0.2"
|
|
2957
3262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2958
|
-
checksum = "
|
|
3263
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2959
3264
|
dependencies = [
|
|
2960
|
-
"
|
|
2961
|
-
"quote",
|
|
2962
|
-
"unicode-ident",
|
|
3265
|
+
"futures-core",
|
|
2963
3266
|
]
|
|
2964
3267
|
|
|
2965
3268
|
[[package]]
|
|
2966
|
-
name = "
|
|
2967
|
-
version = "
|
|
3269
|
+
name = "synstructure"
|
|
3270
|
+
version = "0.13.2"
|
|
2968
3271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2969
|
-
checksum = "
|
|
3272
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2970
3273
|
dependencies = [
|
|
2971
|
-
"
|
|
3274
|
+
"proc-macro2",
|
|
3275
|
+
"quote",
|
|
3276
|
+
"syn",
|
|
2972
3277
|
]
|
|
2973
3278
|
|
|
2974
3279
|
[[package]]
|
|
2975
3280
|
name = "sysinfo"
|
|
2976
|
-
version = "0.
|
|
3281
|
+
version = "0.37.2"
|
|
2977
3282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2978
|
-
checksum = "
|
|
3283
|
+
checksum = "16607d5caffd1c07ce073528f9ed972d88db15dd44023fa57142963be3feb11f"
|
|
2979
3284
|
dependencies = [
|
|
2980
|
-
"core-foundation-sys",
|
|
2981
3285
|
"libc",
|
|
2982
3286
|
"memchr",
|
|
2983
3287
|
"ntapi",
|
|
3288
|
+
"objc2-core-foundation",
|
|
3289
|
+
"objc2-io-kit",
|
|
2984
3290
|
"windows",
|
|
2985
3291
|
]
|
|
2986
3292
|
|
|
2987
3293
|
[[package]]
|
|
2988
|
-
name = "
|
|
2989
|
-
version = "0.
|
|
3294
|
+
name = "thiserror"
|
|
3295
|
+
version = "2.0.12"
|
|
2990
3296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2991
|
-
checksum = "
|
|
3297
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
3298
|
+
dependencies = [
|
|
3299
|
+
"thiserror-impl",
|
|
3300
|
+
]
|
|
2992
3301
|
|
|
2993
3302
|
[[package]]
|
|
2994
|
-
name = "
|
|
2995
|
-
version = "0.12
|
|
3303
|
+
name = "thiserror-impl"
|
|
3304
|
+
version = "2.0.12"
|
|
2996
3305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
-
checksum = "
|
|
3306
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
3307
|
+
dependencies = [
|
|
3308
|
+
"proc-macro2",
|
|
3309
|
+
"quote",
|
|
3310
|
+
"syn",
|
|
3311
|
+
]
|
|
2998
3312
|
|
|
2999
3313
|
[[package]]
|
|
3000
|
-
name = "
|
|
3001
|
-
version = "1.
|
|
3314
|
+
name = "thread_local"
|
|
3315
|
+
version = "1.1.9"
|
|
3002
3316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
-
checksum = "
|
|
3317
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
3004
3318
|
dependencies = [
|
|
3005
|
-
"
|
|
3319
|
+
"cfg-if",
|
|
3006
3320
|
]
|
|
3007
3321
|
|
|
3008
3322
|
[[package]]
|
|
3009
|
-
name = "
|
|
3010
|
-
version = "1.0
|
|
3323
|
+
name = "tikv-jemalloc-sys"
|
|
3324
|
+
version = "0.7.1+5.3.1-0-g81034ce1f1373e37dc865038e1bc8eeecf559ce8"
|
|
3011
3325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3012
|
-
checksum = "
|
|
3326
|
+
checksum = "1a2825c78386b4ae0314074867860ba9577875de945f05992c38815cbec327f0"
|
|
3013
3327
|
dependencies = [
|
|
3014
|
-
"
|
|
3015
|
-
"
|
|
3016
|
-
|
|
3328
|
+
"cc",
|
|
3329
|
+
"libc",
|
|
3330
|
+
]
|
|
3331
|
+
|
|
3332
|
+
[[package]]
|
|
3333
|
+
name = "tikv-jemallocator"
|
|
3334
|
+
version = "0.7.0"
|
|
3335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3336
|
+
checksum = "249f09e49ab1609436f34c776e84231bead18d6a955f119f939bdc1d847561bd"
|
|
3337
|
+
dependencies = [
|
|
3338
|
+
"libc",
|
|
3339
|
+
"tikv-jemalloc-sys",
|
|
3340
|
+
]
|
|
3341
|
+
|
|
3342
|
+
[[package]]
|
|
3343
|
+
name = "tinystr"
|
|
3344
|
+
version = "0.8.1"
|
|
3345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
3347
|
+
dependencies = [
|
|
3348
|
+
"displaydoc",
|
|
3349
|
+
"zerovec",
|
|
3017
3350
|
]
|
|
3018
3351
|
|
|
3019
3352
|
[[package]]
|
|
3020
3353
|
name = "tinyvec"
|
|
3021
|
-
version = "1.
|
|
3354
|
+
version = "1.9.0"
|
|
3022
3355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3023
|
-
checksum = "
|
|
3356
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
3024
3357
|
dependencies = [
|
|
3025
3358
|
"tinyvec_macros",
|
|
3026
3359
|
]
|
|
@@ -3033,9 +3366,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3033
3366
|
|
|
3034
3367
|
[[package]]
|
|
3035
3368
|
name = "tokio"
|
|
3036
|
-
version = "1.
|
|
3369
|
+
version = "1.45.0"
|
|
3037
3370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
-
checksum = "
|
|
3371
|
+
checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
|
|
3039
3372
|
dependencies = [
|
|
3040
3373
|
"backtrace",
|
|
3041
3374
|
"bytes",
|
|
@@ -3049,31 +3382,30 @@ dependencies = [
|
|
|
3049
3382
|
|
|
3050
3383
|
[[package]]
|
|
3051
3384
|
name = "tokio-macros"
|
|
3052
|
-
version = "2.
|
|
3385
|
+
version = "2.5.0"
|
|
3053
3386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3054
|
-
checksum = "
|
|
3387
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
3055
3388
|
dependencies = [
|
|
3056
3389
|
"proc-macro2",
|
|
3057
3390
|
"quote",
|
|
3058
|
-
"syn
|
|
3391
|
+
"syn",
|
|
3059
3392
|
]
|
|
3060
3393
|
|
|
3061
3394
|
[[package]]
|
|
3062
3395
|
name = "tokio-rustls"
|
|
3063
|
-
version = "0.26.
|
|
3396
|
+
version = "0.26.2"
|
|
3064
3397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3065
|
-
checksum = "
|
|
3398
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
3066
3399
|
dependencies = [
|
|
3067
3400
|
"rustls",
|
|
3068
|
-
"rustls-pki-types",
|
|
3069
3401
|
"tokio",
|
|
3070
3402
|
]
|
|
3071
3403
|
|
|
3072
3404
|
[[package]]
|
|
3073
3405
|
name = "tokio-util"
|
|
3074
|
-
version = "0.7.
|
|
3406
|
+
version = "0.7.15"
|
|
3075
3407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3076
|
-
checksum = "
|
|
3408
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
|
3077
3409
|
dependencies = [
|
|
3078
3410
|
"bytes",
|
|
3079
3411
|
"futures-core",
|
|
@@ -3082,6 +3414,27 @@ dependencies = [
|
|
|
3082
3414
|
"tokio",
|
|
3083
3415
|
]
|
|
3084
3416
|
|
|
3417
|
+
[[package]]
|
|
3418
|
+
name = "tower"
|
|
3419
|
+
version = "0.5.2"
|
|
3420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3421
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
3422
|
+
dependencies = [
|
|
3423
|
+
"futures-core",
|
|
3424
|
+
"futures-util",
|
|
3425
|
+
"pin-project-lite",
|
|
3426
|
+
"sync_wrapper",
|
|
3427
|
+
"tokio",
|
|
3428
|
+
"tower-layer",
|
|
3429
|
+
"tower-service",
|
|
3430
|
+
]
|
|
3431
|
+
|
|
3432
|
+
[[package]]
|
|
3433
|
+
name = "tower-layer"
|
|
3434
|
+
version = "0.3.3"
|
|
3435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3436
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3437
|
+
|
|
3085
3438
|
[[package]]
|
|
3086
3439
|
name = "tower-service"
|
|
3087
3440
|
version = "0.3.3"
|
|
@@ -3090,9 +3443,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
3090
3443
|
|
|
3091
3444
|
[[package]]
|
|
3092
3445
|
name = "tracing"
|
|
3093
|
-
version = "0.1.
|
|
3446
|
+
version = "0.1.41"
|
|
3094
3447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3095
|
-
checksum = "
|
|
3448
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
3096
3449
|
dependencies = [
|
|
3097
3450
|
"pin-project-lite",
|
|
3098
3451
|
"tracing-attributes",
|
|
@@ -3101,20 +3454,20 @@ dependencies = [
|
|
|
3101
3454
|
|
|
3102
3455
|
[[package]]
|
|
3103
3456
|
name = "tracing-attributes"
|
|
3104
|
-
version = "0.1.
|
|
3457
|
+
version = "0.1.28"
|
|
3105
3458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3106
|
-
checksum = "
|
|
3459
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
3107
3460
|
dependencies = [
|
|
3108
3461
|
"proc-macro2",
|
|
3109
3462
|
"quote",
|
|
3110
|
-
"syn
|
|
3463
|
+
"syn",
|
|
3111
3464
|
]
|
|
3112
3465
|
|
|
3113
3466
|
[[package]]
|
|
3114
3467
|
name = "tracing-core"
|
|
3115
|
-
version = "0.1.
|
|
3468
|
+
version = "0.1.33"
|
|
3116
3469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3117
|
-
checksum = "
|
|
3470
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
3118
3471
|
dependencies = [
|
|
3119
3472
|
"once_cell",
|
|
3120
3473
|
]
|
|
@@ -3127,21 +3480,15 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
3127
3480
|
|
|
3128
3481
|
[[package]]
|
|
3129
3482
|
name = "typenum"
|
|
3130
|
-
version = "1.
|
|
3131
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3132
|
-
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
3133
|
-
|
|
3134
|
-
[[package]]
|
|
3135
|
-
name = "unicode-bidi"
|
|
3136
|
-
version = "0.3.17"
|
|
3483
|
+
version = "1.18.0"
|
|
3137
3484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3138
|
-
checksum = "
|
|
3485
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
3139
3486
|
|
|
3140
3487
|
[[package]]
|
|
3141
3488
|
name = "unicode-ident"
|
|
3142
|
-
version = "1.0.
|
|
3489
|
+
version = "1.0.18"
|
|
3143
3490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3144
|
-
checksum = "
|
|
3491
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
3145
3492
|
|
|
3146
3493
|
[[package]]
|
|
3147
3494
|
name = "unicode-normalization"
|
|
@@ -3169,15 +3516,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
|
3169
3516
|
|
|
3170
3517
|
[[package]]
|
|
3171
3518
|
name = "unicode-width"
|
|
3172
|
-
version = "0.
|
|
3173
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
-
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
3175
|
-
|
|
3176
|
-
[[package]]
|
|
3177
|
-
name = "unindent"
|
|
3178
|
-
version = "0.2.3"
|
|
3519
|
+
version = "0.2.0"
|
|
3179
3520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3180
|
-
checksum = "
|
|
3521
|
+
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
3181
3522
|
|
|
3182
3523
|
[[package]]
|
|
3183
3524
|
name = "untrusted"
|
|
@@ -3185,31 +3526,46 @@ version = "0.9.0"
|
|
|
3185
3526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3186
3527
|
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3187
3528
|
|
|
3529
|
+
[[package]]
|
|
3530
|
+
name = "unty"
|
|
3531
|
+
version = "0.0.4"
|
|
3532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3533
|
+
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
|
|
3534
|
+
|
|
3188
3535
|
[[package]]
|
|
3189
3536
|
name = "url"
|
|
3190
|
-
version = "2.5.
|
|
3537
|
+
version = "2.5.4"
|
|
3191
3538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3192
|
-
checksum = "
|
|
3539
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
3193
3540
|
dependencies = [
|
|
3194
3541
|
"form_urlencoded",
|
|
3195
3542
|
"idna",
|
|
3196
3543
|
"percent-encoding",
|
|
3197
3544
|
]
|
|
3198
3545
|
|
|
3546
|
+
[[package]]
|
|
3547
|
+
name = "utf8_iter"
|
|
3548
|
+
version = "1.0.4"
|
|
3549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3550
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3551
|
+
|
|
3199
3552
|
[[package]]
|
|
3200
3553
|
name = "uuid"
|
|
3201
|
-
version = "1.
|
|
3554
|
+
version = "1.16.0"
|
|
3202
3555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3203
|
-
checksum = "
|
|
3556
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
3204
3557
|
dependencies = [
|
|
3205
|
-
"getrandom",
|
|
3558
|
+
"getrandom 0.3.3",
|
|
3559
|
+
"js-sys",
|
|
3560
|
+
"serde",
|
|
3561
|
+
"wasm-bindgen",
|
|
3206
3562
|
]
|
|
3207
3563
|
|
|
3208
3564
|
[[package]]
|
|
3209
3565
|
name = "value-trait"
|
|
3210
|
-
version = "0.
|
|
3566
|
+
version = "0.12.1"
|
|
3211
3567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3212
|
-
checksum = "
|
|
3568
|
+
checksum = "8e80f0c733af0720a501b3905d22e2f97662d8eacfe082a75ed7ffb5ab08cb59"
|
|
3213
3569
|
dependencies = [
|
|
3214
3570
|
"float-cmp",
|
|
3215
3571
|
"halfbrown",
|
|
@@ -3223,6 +3579,12 @@ version = "0.9.5"
|
|
|
3223
3579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3224
3580
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3225
3581
|
|
|
3582
|
+
[[package]]
|
|
3583
|
+
name = "virtue"
|
|
3584
|
+
version = "0.0.18"
|
|
3585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3586
|
+
checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
|
|
3587
|
+
|
|
3226
3588
|
[[package]]
|
|
3227
3589
|
name = "walkdir"
|
|
3228
3590
|
version = "2.5.0"
|
|
@@ -3248,49 +3610,59 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
|
3248
3610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3249
3611
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3250
3612
|
|
|
3613
|
+
[[package]]
|
|
3614
|
+
name = "wasi"
|
|
3615
|
+
version = "0.14.2+wasi-0.2.4"
|
|
3616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3617
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
3618
|
+
dependencies = [
|
|
3619
|
+
"wit-bindgen-rt",
|
|
3620
|
+
]
|
|
3621
|
+
|
|
3251
3622
|
[[package]]
|
|
3252
3623
|
name = "wasm-bindgen"
|
|
3253
|
-
version = "0.2.
|
|
3624
|
+
version = "0.2.100"
|
|
3254
3625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3255
|
-
checksum = "
|
|
3626
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
3256
3627
|
dependencies = [
|
|
3257
3628
|
"cfg-if",
|
|
3258
3629
|
"once_cell",
|
|
3630
|
+
"rustversion",
|
|
3259
3631
|
"wasm-bindgen-macro",
|
|
3260
3632
|
]
|
|
3261
3633
|
|
|
3262
3634
|
[[package]]
|
|
3263
3635
|
name = "wasm-bindgen-backend"
|
|
3264
|
-
version = "0.2.
|
|
3636
|
+
version = "0.2.100"
|
|
3265
3637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3266
|
-
checksum = "
|
|
3638
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
3267
3639
|
dependencies = [
|
|
3268
3640
|
"bumpalo",
|
|
3269
3641
|
"log",
|
|
3270
|
-
"once_cell",
|
|
3271
3642
|
"proc-macro2",
|
|
3272
3643
|
"quote",
|
|
3273
|
-
"syn
|
|
3644
|
+
"syn",
|
|
3274
3645
|
"wasm-bindgen-shared",
|
|
3275
3646
|
]
|
|
3276
3647
|
|
|
3277
3648
|
[[package]]
|
|
3278
3649
|
name = "wasm-bindgen-futures"
|
|
3279
|
-
version = "0.4.
|
|
3650
|
+
version = "0.4.50"
|
|
3280
3651
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3281
|
-
checksum = "
|
|
3652
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
3282
3653
|
dependencies = [
|
|
3283
3654
|
"cfg-if",
|
|
3284
3655
|
"js-sys",
|
|
3656
|
+
"once_cell",
|
|
3285
3657
|
"wasm-bindgen",
|
|
3286
3658
|
"web-sys",
|
|
3287
3659
|
]
|
|
3288
3660
|
|
|
3289
3661
|
[[package]]
|
|
3290
3662
|
name = "wasm-bindgen-macro"
|
|
3291
|
-
version = "0.2.
|
|
3663
|
+
version = "0.2.100"
|
|
3292
3664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3293
|
-
checksum = "
|
|
3665
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
3294
3666
|
dependencies = [
|
|
3295
3667
|
"quote",
|
|
3296
3668
|
"wasm-bindgen-macro-support",
|
|
@@ -3298,22 +3670,25 @@ dependencies = [
|
|
|
3298
3670
|
|
|
3299
3671
|
[[package]]
|
|
3300
3672
|
name = "wasm-bindgen-macro-support"
|
|
3301
|
-
version = "0.2.
|
|
3673
|
+
version = "0.2.100"
|
|
3302
3674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
|
-
checksum = "
|
|
3675
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
3304
3676
|
dependencies = [
|
|
3305
3677
|
"proc-macro2",
|
|
3306
3678
|
"quote",
|
|
3307
|
-
"syn
|
|
3679
|
+
"syn",
|
|
3308
3680
|
"wasm-bindgen-backend",
|
|
3309
3681
|
"wasm-bindgen-shared",
|
|
3310
3682
|
]
|
|
3311
3683
|
|
|
3312
3684
|
[[package]]
|
|
3313
3685
|
name = "wasm-bindgen-shared"
|
|
3314
|
-
version = "0.2.
|
|
3686
|
+
version = "0.2.100"
|
|
3315
3687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
|
-
checksum = "
|
|
3688
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
3689
|
+
dependencies = [
|
|
3690
|
+
"unicode-ident",
|
|
3691
|
+
]
|
|
3317
3692
|
|
|
3318
3693
|
[[package]]
|
|
3319
3694
|
name = "wasm-streams"
|
|
@@ -3330,9 +3705,19 @@ dependencies = [
|
|
|
3330
3705
|
|
|
3331
3706
|
[[package]]
|
|
3332
3707
|
name = "web-sys"
|
|
3333
|
-
version = "0.3.
|
|
3708
|
+
version = "0.3.77"
|
|
3709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3710
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
3711
|
+
dependencies = [
|
|
3712
|
+
"js-sys",
|
|
3713
|
+
"wasm-bindgen",
|
|
3714
|
+
]
|
|
3715
|
+
|
|
3716
|
+
[[package]]
|
|
3717
|
+
name = "web-time"
|
|
3718
|
+
version = "1.1.0"
|
|
3334
3719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3335
|
-
checksum = "
|
|
3720
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3336
3721
|
dependencies = [
|
|
3337
3722
|
"js-sys",
|
|
3338
3723
|
"wasm-bindgen",
|
|
@@ -3371,94 +3756,130 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
3371
3756
|
|
|
3372
3757
|
[[package]]
|
|
3373
3758
|
name = "windows"
|
|
3374
|
-
version = "0.
|
|
3759
|
+
version = "0.61.3"
|
|
3375
3760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3376
|
-
checksum = "
|
|
3761
|
+
checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
|
|
3377
3762
|
dependencies = [
|
|
3378
|
-
"windows-
|
|
3379
|
-
"windows-
|
|
3763
|
+
"windows-collections",
|
|
3764
|
+
"windows-core",
|
|
3765
|
+
"windows-future",
|
|
3766
|
+
"windows-link 0.1.3",
|
|
3767
|
+
"windows-numerics",
|
|
3380
3768
|
]
|
|
3381
3769
|
|
|
3382
3770
|
[[package]]
|
|
3383
|
-
name = "windows-
|
|
3384
|
-
version = "0.
|
|
3771
|
+
name = "windows-collections"
|
|
3772
|
+
version = "0.2.0"
|
|
3385
3773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
-
checksum = "
|
|
3774
|
+
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
|
|
3387
3775
|
dependencies = [
|
|
3388
|
-
"windows-
|
|
3776
|
+
"windows-core",
|
|
3389
3777
|
]
|
|
3390
3778
|
|
|
3391
3779
|
[[package]]
|
|
3392
3780
|
name = "windows-core"
|
|
3393
|
-
version = "0.
|
|
3781
|
+
version = "0.61.2"
|
|
3394
3782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3395
|
-
checksum = "
|
|
3783
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
3396
3784
|
dependencies = [
|
|
3397
3785
|
"windows-implement",
|
|
3398
3786
|
"windows-interface",
|
|
3399
|
-
"windows-
|
|
3400
|
-
"windows-
|
|
3787
|
+
"windows-link 0.1.3",
|
|
3788
|
+
"windows-result",
|
|
3789
|
+
"windows-strings 0.4.2",
|
|
3790
|
+
]
|
|
3791
|
+
|
|
3792
|
+
[[package]]
|
|
3793
|
+
name = "windows-future"
|
|
3794
|
+
version = "0.2.1"
|
|
3795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3796
|
+
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
|
|
3797
|
+
dependencies = [
|
|
3798
|
+
"windows-core",
|
|
3799
|
+
"windows-link 0.1.3",
|
|
3800
|
+
"windows-threading",
|
|
3401
3801
|
]
|
|
3402
3802
|
|
|
3403
3803
|
[[package]]
|
|
3404
3804
|
name = "windows-implement"
|
|
3405
|
-
version = "0.
|
|
3805
|
+
version = "0.60.0"
|
|
3406
3806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3407
|
-
checksum = "
|
|
3807
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
3408
3808
|
dependencies = [
|
|
3409
3809
|
"proc-macro2",
|
|
3410
3810
|
"quote",
|
|
3411
|
-
"syn
|
|
3811
|
+
"syn",
|
|
3412
3812
|
]
|
|
3413
3813
|
|
|
3414
3814
|
[[package]]
|
|
3415
3815
|
name = "windows-interface"
|
|
3416
|
-
version = "0.
|
|
3816
|
+
version = "0.59.1"
|
|
3417
3817
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3418
|
-
checksum = "
|
|
3818
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
3419
3819
|
dependencies = [
|
|
3420
3820
|
"proc-macro2",
|
|
3421
3821
|
"quote",
|
|
3422
|
-
"syn
|
|
3822
|
+
"syn",
|
|
3423
3823
|
]
|
|
3424
3824
|
|
|
3425
3825
|
[[package]]
|
|
3426
|
-
name = "windows-
|
|
3826
|
+
name = "windows-link"
|
|
3827
|
+
version = "0.1.3"
|
|
3828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3829
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
3830
|
+
|
|
3831
|
+
[[package]]
|
|
3832
|
+
name = "windows-link"
|
|
3833
|
+
version = "0.2.1"
|
|
3834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3835
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3836
|
+
|
|
3837
|
+
[[package]]
|
|
3838
|
+
name = "windows-numerics"
|
|
3427
3839
|
version = "0.2.0"
|
|
3428
3840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3429
|
-
checksum = "
|
|
3841
|
+
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
|
3430
3842
|
dependencies = [
|
|
3431
|
-
"windows-
|
|
3432
|
-
"windows-
|
|
3433
|
-
"windows-targets",
|
|
3843
|
+
"windows-core",
|
|
3844
|
+
"windows-link 0.1.3",
|
|
3434
3845
|
]
|
|
3435
3846
|
|
|
3436
3847
|
[[package]]
|
|
3437
|
-
name = "windows-
|
|
3438
|
-
version = "0.
|
|
3848
|
+
name = "windows-registry"
|
|
3849
|
+
version = "0.4.0"
|
|
3439
3850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3440
|
-
checksum = "
|
|
3851
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
|
3441
3852
|
dependencies = [
|
|
3442
|
-
"windows-
|
|
3853
|
+
"windows-result",
|
|
3854
|
+
"windows-strings 0.3.1",
|
|
3855
|
+
"windows-targets 0.53.0",
|
|
3443
3856
|
]
|
|
3444
3857
|
|
|
3445
3858
|
[[package]]
|
|
3446
3859
|
name = "windows-result"
|
|
3447
|
-
version = "0.
|
|
3860
|
+
version = "0.3.4"
|
|
3448
3861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3449
|
-
checksum = "
|
|
3862
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
3450
3863
|
dependencies = [
|
|
3451
|
-
"windows-
|
|
3864
|
+
"windows-link 0.1.3",
|
|
3452
3865
|
]
|
|
3453
3866
|
|
|
3454
3867
|
[[package]]
|
|
3455
3868
|
name = "windows-strings"
|
|
3456
|
-
version = "0.1
|
|
3869
|
+
version = "0.3.1"
|
|
3870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
|
3872
|
+
dependencies = [
|
|
3873
|
+
"windows-link 0.1.3",
|
|
3874
|
+
]
|
|
3875
|
+
|
|
3876
|
+
[[package]]
|
|
3877
|
+
name = "windows-strings"
|
|
3878
|
+
version = "0.4.2"
|
|
3457
3879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3458
|
-
checksum = "
|
|
3880
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
3459
3881
|
dependencies = [
|
|
3460
|
-
"windows-
|
|
3461
|
-
"windows-targets",
|
|
3882
|
+
"windows-link 0.1.3",
|
|
3462
3883
|
]
|
|
3463
3884
|
|
|
3464
3885
|
[[package]]
|
|
@@ -3467,7 +3888,7 @@ version = "0.52.0"
|
|
|
3467
3888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3468
3889
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3469
3890
|
dependencies = [
|
|
3470
|
-
"windows-targets",
|
|
3891
|
+
"windows-targets 0.52.6",
|
|
3471
3892
|
]
|
|
3472
3893
|
|
|
3473
3894
|
[[package]]
|
|
@@ -3476,7 +3897,7 @@ version = "0.59.0"
|
|
|
3476
3897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3477
3898
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3478
3899
|
dependencies = [
|
|
3479
|
-
"windows-targets",
|
|
3900
|
+
"windows-targets 0.52.6",
|
|
3480
3901
|
]
|
|
3481
3902
|
|
|
3482
3903
|
[[package]]
|
|
@@ -3485,14 +3906,39 @@ version = "0.52.6"
|
|
|
3485
3906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3486
3907
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3487
3908
|
dependencies = [
|
|
3488
|
-
"windows_aarch64_gnullvm",
|
|
3489
|
-
"windows_aarch64_msvc",
|
|
3490
|
-
"windows_i686_gnu",
|
|
3491
|
-
"windows_i686_gnullvm",
|
|
3492
|
-
"windows_i686_msvc",
|
|
3493
|
-
"windows_x86_64_gnu",
|
|
3494
|
-
"windows_x86_64_gnullvm",
|
|
3495
|
-
"windows_x86_64_msvc",
|
|
3909
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3910
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3911
|
+
"windows_i686_gnu 0.52.6",
|
|
3912
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3913
|
+
"windows_i686_msvc 0.52.6",
|
|
3914
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3915
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3916
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3917
|
+
]
|
|
3918
|
+
|
|
3919
|
+
[[package]]
|
|
3920
|
+
name = "windows-targets"
|
|
3921
|
+
version = "0.53.0"
|
|
3922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3923
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
|
3924
|
+
dependencies = [
|
|
3925
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
3926
|
+
"windows_aarch64_msvc 0.53.0",
|
|
3927
|
+
"windows_i686_gnu 0.53.0",
|
|
3928
|
+
"windows_i686_gnullvm 0.53.0",
|
|
3929
|
+
"windows_i686_msvc 0.53.0",
|
|
3930
|
+
"windows_x86_64_gnu 0.53.0",
|
|
3931
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
3932
|
+
"windows_x86_64_msvc 0.53.0",
|
|
3933
|
+
]
|
|
3934
|
+
|
|
3935
|
+
[[package]]
|
|
3936
|
+
name = "windows-threading"
|
|
3937
|
+
version = "0.1.0"
|
|
3938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3939
|
+
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
|
|
3940
|
+
dependencies = [
|
|
3941
|
+
"windows-link 0.1.3",
|
|
3496
3942
|
]
|
|
3497
3943
|
|
|
3498
3944
|
[[package]]
|
|
@@ -3501,73 +3947,180 @@ version = "0.52.6"
|
|
|
3501
3947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3502
3948
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3503
3949
|
|
|
3950
|
+
[[package]]
|
|
3951
|
+
name = "windows_aarch64_gnullvm"
|
|
3952
|
+
version = "0.53.0"
|
|
3953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3954
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
3955
|
+
|
|
3504
3956
|
[[package]]
|
|
3505
3957
|
name = "windows_aarch64_msvc"
|
|
3506
3958
|
version = "0.52.6"
|
|
3507
3959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3508
3960
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3509
3961
|
|
|
3962
|
+
[[package]]
|
|
3963
|
+
name = "windows_aarch64_msvc"
|
|
3964
|
+
version = "0.53.0"
|
|
3965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3966
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
3967
|
+
|
|
3510
3968
|
[[package]]
|
|
3511
3969
|
name = "windows_i686_gnu"
|
|
3512
3970
|
version = "0.52.6"
|
|
3513
3971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3514
3972
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3515
3973
|
|
|
3974
|
+
[[package]]
|
|
3975
|
+
name = "windows_i686_gnu"
|
|
3976
|
+
version = "0.53.0"
|
|
3977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3978
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
3979
|
+
|
|
3516
3980
|
[[package]]
|
|
3517
3981
|
name = "windows_i686_gnullvm"
|
|
3518
3982
|
version = "0.52.6"
|
|
3519
3983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3520
3984
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3521
3985
|
|
|
3986
|
+
[[package]]
|
|
3987
|
+
name = "windows_i686_gnullvm"
|
|
3988
|
+
version = "0.53.0"
|
|
3989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3990
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
3991
|
+
|
|
3522
3992
|
[[package]]
|
|
3523
3993
|
name = "windows_i686_msvc"
|
|
3524
3994
|
version = "0.52.6"
|
|
3525
3995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3526
3996
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3527
3997
|
|
|
3998
|
+
[[package]]
|
|
3999
|
+
name = "windows_i686_msvc"
|
|
4000
|
+
version = "0.53.0"
|
|
4001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4002
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
4003
|
+
|
|
3528
4004
|
[[package]]
|
|
3529
4005
|
name = "windows_x86_64_gnu"
|
|
3530
4006
|
version = "0.52.6"
|
|
3531
4007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3532
4008
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3533
4009
|
|
|
4010
|
+
[[package]]
|
|
4011
|
+
name = "windows_x86_64_gnu"
|
|
4012
|
+
version = "0.53.0"
|
|
4013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4014
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
4015
|
+
|
|
3534
4016
|
[[package]]
|
|
3535
4017
|
name = "windows_x86_64_gnullvm"
|
|
3536
4018
|
version = "0.52.6"
|
|
3537
4019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3538
4020
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3539
4021
|
|
|
4022
|
+
[[package]]
|
|
4023
|
+
name = "windows_x86_64_gnullvm"
|
|
4024
|
+
version = "0.53.0"
|
|
4025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4026
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
4027
|
+
|
|
3540
4028
|
[[package]]
|
|
3541
4029
|
name = "windows_x86_64_msvc"
|
|
3542
4030
|
version = "0.52.6"
|
|
3543
4031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3544
4032
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3545
4033
|
|
|
4034
|
+
[[package]]
|
|
4035
|
+
name = "windows_x86_64_msvc"
|
|
4036
|
+
version = "0.53.0"
|
|
4037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4038
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
4039
|
+
|
|
4040
|
+
[[package]]
|
|
4041
|
+
name = "wit-bindgen-rt"
|
|
4042
|
+
version = "0.39.0"
|
|
4043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4044
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
4045
|
+
dependencies = [
|
|
4046
|
+
"bitflags",
|
|
4047
|
+
]
|
|
4048
|
+
|
|
4049
|
+
[[package]]
|
|
4050
|
+
name = "writeable"
|
|
4051
|
+
version = "0.6.1"
|
|
4052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4053
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
4054
|
+
|
|
3546
4055
|
[[package]]
|
|
3547
4056
|
name = "xxhash-rust"
|
|
3548
|
-
version = "0.8.
|
|
4057
|
+
version = "0.8.15"
|
|
4058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4059
|
+
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
4060
|
+
|
|
4061
|
+
[[package]]
|
|
4062
|
+
name = "yoke"
|
|
4063
|
+
version = "0.8.0"
|
|
4064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4065
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
4066
|
+
dependencies = [
|
|
4067
|
+
"serde",
|
|
4068
|
+
"stable_deref_trait",
|
|
4069
|
+
"yoke-derive",
|
|
4070
|
+
"zerofrom",
|
|
4071
|
+
]
|
|
4072
|
+
|
|
4073
|
+
[[package]]
|
|
4074
|
+
name = "yoke-derive"
|
|
4075
|
+
version = "0.8.0"
|
|
3549
4076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3550
|
-
checksum = "
|
|
4077
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
4078
|
+
dependencies = [
|
|
4079
|
+
"proc-macro2",
|
|
4080
|
+
"quote",
|
|
4081
|
+
"syn",
|
|
4082
|
+
"synstructure",
|
|
4083
|
+
]
|
|
3551
4084
|
|
|
3552
4085
|
[[package]]
|
|
3553
4086
|
name = "zerocopy"
|
|
3554
|
-
version = "0.
|
|
4087
|
+
version = "0.8.39"
|
|
3555
4088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3556
|
-
checksum = "
|
|
4089
|
+
checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
|
|
3557
4090
|
dependencies = [
|
|
3558
|
-
"byteorder",
|
|
3559
4091
|
"zerocopy-derive",
|
|
3560
4092
|
]
|
|
3561
4093
|
|
|
3562
4094
|
[[package]]
|
|
3563
4095
|
name = "zerocopy-derive"
|
|
3564
|
-
version = "0.
|
|
4096
|
+
version = "0.8.39"
|
|
4097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4098
|
+
checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
|
|
4099
|
+
dependencies = [
|
|
4100
|
+
"proc-macro2",
|
|
4101
|
+
"quote",
|
|
4102
|
+
"syn",
|
|
4103
|
+
]
|
|
4104
|
+
|
|
4105
|
+
[[package]]
|
|
4106
|
+
name = "zerofrom"
|
|
4107
|
+
version = "0.1.6"
|
|
4108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4109
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4110
|
+
dependencies = [
|
|
4111
|
+
"zerofrom-derive",
|
|
4112
|
+
]
|
|
4113
|
+
|
|
4114
|
+
[[package]]
|
|
4115
|
+
name = "zerofrom-derive"
|
|
4116
|
+
version = "0.1.6"
|
|
3565
4117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3566
|
-
checksum = "
|
|
4118
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3567
4119
|
dependencies = [
|
|
3568
4120
|
"proc-macro2",
|
|
3569
4121
|
"quote",
|
|
3570
|
-
"syn
|
|
4122
|
+
"syn",
|
|
4123
|
+
"synstructure",
|
|
3571
4124
|
]
|
|
3572
4125
|
|
|
3573
4126
|
[[package]]
|
|
@@ -3576,29 +4129,74 @@ version = "1.8.1"
|
|
|
3576
4129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3577
4130
|
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
3578
4131
|
|
|
4132
|
+
[[package]]
|
|
4133
|
+
name = "zerotrie"
|
|
4134
|
+
version = "0.2.2"
|
|
4135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4136
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
4137
|
+
dependencies = [
|
|
4138
|
+
"displaydoc",
|
|
4139
|
+
"yoke",
|
|
4140
|
+
"zerofrom",
|
|
4141
|
+
]
|
|
4142
|
+
|
|
4143
|
+
[[package]]
|
|
4144
|
+
name = "zerovec"
|
|
4145
|
+
version = "0.11.2"
|
|
4146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4147
|
+
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
|
|
4148
|
+
dependencies = [
|
|
4149
|
+
"yoke",
|
|
4150
|
+
"zerofrom",
|
|
4151
|
+
"zerovec-derive",
|
|
4152
|
+
]
|
|
4153
|
+
|
|
4154
|
+
[[package]]
|
|
4155
|
+
name = "zerovec-derive"
|
|
4156
|
+
version = "0.11.1"
|
|
4157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4158
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
4159
|
+
dependencies = [
|
|
4160
|
+
"proc-macro2",
|
|
4161
|
+
"quote",
|
|
4162
|
+
"syn",
|
|
4163
|
+
]
|
|
4164
|
+
|
|
4165
|
+
[[package]]
|
|
4166
|
+
name = "zlib-rs"
|
|
4167
|
+
version = "0.5.0"
|
|
4168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4169
|
+
checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8"
|
|
4170
|
+
|
|
4171
|
+
[[package]]
|
|
4172
|
+
name = "zmij"
|
|
4173
|
+
version = "1.0.20"
|
|
4174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4175
|
+
checksum = "4de98dfa5d5b7fef4ee834d0073d560c9ca7b6c46a71d058c48db7960f8cfaf7"
|
|
4176
|
+
|
|
3579
4177
|
[[package]]
|
|
3580
4178
|
name = "zstd"
|
|
3581
|
-
version = "0.13.
|
|
4179
|
+
version = "0.13.3"
|
|
3582
4180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3583
|
-
checksum = "
|
|
4181
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3584
4182
|
dependencies = [
|
|
3585
4183
|
"zstd-safe",
|
|
3586
4184
|
]
|
|
3587
4185
|
|
|
3588
4186
|
[[package]]
|
|
3589
4187
|
name = "zstd-safe"
|
|
3590
|
-
version = "7.2.
|
|
4188
|
+
version = "7.2.4"
|
|
3591
4189
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3592
|
-
checksum = "
|
|
4190
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3593
4191
|
dependencies = [
|
|
3594
4192
|
"zstd-sys",
|
|
3595
4193
|
]
|
|
3596
4194
|
|
|
3597
4195
|
[[package]]
|
|
3598
4196
|
name = "zstd-sys"
|
|
3599
|
-
version = "2.0.
|
|
4197
|
+
version = "2.0.15+zstd.1.5.7"
|
|
3600
4198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3601
|
-
checksum = "
|
|
4199
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
3602
4200
|
dependencies = [
|
|
3603
4201
|
"cc",
|
|
3604
4202
|
"pkg-config",
|