polars-df 0.11.0 → 0.12.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 +16 -0
 - data/Cargo.lock +360 -361
 - data/ext/polars/Cargo.toml +10 -7
 - data/ext/polars/src/batched_csv.rs +1 -1
 - data/ext/polars/src/conversion/any_value.rs +261 -0
 - data/ext/polars/src/conversion/chunked_array.rs +4 -4
 - data/ext/polars/src/conversion/mod.rs +51 -10
 - data/ext/polars/src/dataframe/construction.rs +6 -8
 - data/ext/polars/src/dataframe/general.rs +19 -29
 - data/ext/polars/src/dataframe/io.rs +43 -33
 - data/ext/polars/src/error.rs +26 -4
 - data/ext/polars/src/expr/categorical.rs +0 -10
 - data/ext/polars/src/expr/datetime.rs +4 -12
 - data/ext/polars/src/expr/general.rs +123 -110
 - data/ext/polars/src/expr/mod.rs +2 -2
 - data/ext/polars/src/expr/rolling.rs +17 -9
 - data/ext/polars/src/expr/string.rs +2 -6
 - data/ext/polars/src/functions/eager.rs +10 -10
 - data/ext/polars/src/functions/lazy.rs +21 -21
 - data/ext/polars/src/functions/range.rs +6 -12
 - data/ext/polars/src/interop/numo/to_numo_series.rs +2 -1
 - data/ext/polars/src/lazyframe/mod.rs +81 -98
 - data/ext/polars/src/lib.rs +55 -45
 - data/ext/polars/src/map/dataframe.rs +2 -2
 - data/ext/polars/src/rb_modules.rs +25 -1
 - data/ext/polars/src/series/aggregation.rs +4 -2
 - data/ext/polars/src/series/arithmetic.rs +21 -11
 - data/ext/polars/src/series/construction.rs +56 -38
 - data/ext/polars/src/series/export.rs +1 -1
 - data/ext/polars/src/series/mod.rs +31 -10
 - data/ext/polars/src/sql.rs +3 -1
 - data/lib/polars/array_expr.rb +4 -4
 - data/lib/polars/batched_csv_reader.rb +2 -2
 - data/lib/polars/cat_expr.rb +0 -36
 - data/lib/polars/cat_name_space.rb +0 -37
 - data/lib/polars/data_frame.rb +93 -101
 - data/lib/polars/data_types.rb +1 -1
 - data/lib/polars/date_time_expr.rb +525 -573
 - data/lib/polars/date_time_name_space.rb +263 -464
 - data/lib/polars/dynamic_group_by.rb +3 -3
 - data/lib/polars/exceptions.rb +3 -0
 - data/lib/polars/expr.rb +367 -330
 - data/lib/polars/expr_dispatch.rb +1 -1
 - data/lib/polars/functions/aggregation/horizontal.rb +8 -8
 - data/lib/polars/functions/as_datatype.rb +63 -40
 - data/lib/polars/functions/lazy.rb +63 -14
 - data/lib/polars/functions/lit.rb +1 -1
 - data/lib/polars/functions/range/date_range.rb +18 -77
 - data/lib/polars/functions/range/datetime_range.rb +4 -4
 - data/lib/polars/functions/range/int_range.rb +2 -2
 - data/lib/polars/functions/range/time_range.rb +4 -4
 - data/lib/polars/functions/repeat.rb +1 -1
 - data/lib/polars/functions/whenthen.rb +1 -1
 - data/lib/polars/io/csv.rb +8 -8
 - data/lib/polars/io/ipc.rb +3 -3
 - data/lib/polars/io/json.rb +13 -2
 - data/lib/polars/io/ndjson.rb +15 -4
 - data/lib/polars/io/parquet.rb +5 -4
 - data/lib/polars/lazy_frame.rb +120 -106
 - data/lib/polars/lazy_group_by.rb +1 -1
 - data/lib/polars/list_expr.rb +11 -11
 - data/lib/polars/list_name_space.rb +5 -1
 - data/lib/polars/rolling_group_by.rb +5 -7
 - data/lib/polars/series.rb +105 -189
 - data/lib/polars/string_expr.rb +42 -67
 - data/lib/polars/string_name_space.rb +5 -4
 - data/lib/polars/testing.rb +2 -2
 - data/lib/polars/utils/constants.rb +9 -0
 - data/lib/polars/utils/convert.rb +97 -0
 - data/lib/polars/utils/parse.rb +89 -0
 - data/lib/polars/utils/various.rb +76 -0
 - data/lib/polars/utils/wrap.rb +19 -0
 - data/lib/polars/utils.rb +4 -330
 - data/lib/polars/version.rb +1 -1
 - data/lib/polars/whenthen.rb +6 -6
 - data/lib/polars.rb +11 -0
 - metadata +9 -4
 - data/ext/polars/src/conversion/anyvalue.rs +0 -186
 
    
        data/Cargo.lock
    CHANGED
    
    | 
         @@ -4,9 +4,9 @@ version = 3 
     | 
|
| 
       4 
4 
     | 
    
         | 
| 
       5 
5 
     | 
    
         
             
            [[package]]
         
     | 
| 
       6 
6 
     | 
    
         
             
            name = "addr2line"
         
     | 
| 
       7 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 7 
     | 
    
         
            +
            version = "0.22.0"
         
     | 
| 
       8 
8 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       9 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 9 
     | 
    
         
            +
            checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
         
     | 
| 
       10 
10 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       11 
11 
     | 
    
         
             
             "gimli",
         
     | 
| 
       12 
12 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -25,9 +25,9 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 
     | 
|
| 
       25 
25 
     | 
    
         | 
| 
       26 
26 
     | 
    
         
             
            [[package]]
         
     | 
| 
       27 
27 
     | 
    
         
             
            name = "ahash"
         
     | 
| 
       28 
     | 
    
         
            -
            version = "0.8. 
     | 
| 
      
 28 
     | 
    
         
            +
            version = "0.8.11"
         
     | 
| 
       29 
29 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       30 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 30 
     | 
    
         
            +
            checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
         
     | 
| 
       31 
31 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       32 
32 
     | 
    
         
             
             "cfg-if",
         
     | 
| 
       33 
33 
     | 
    
         
             
             "getrandom",
         
     | 
| 
         @@ -38,9 +38,9 @@ dependencies = [ 
     | 
|
| 
       38 
38 
     | 
    
         | 
| 
       39 
39 
     | 
    
         
             
            [[package]]
         
     | 
| 
       40 
40 
     | 
    
         
             
            name = "aho-corasick"
         
     | 
| 
       41 
     | 
    
         
            -
            version = "1.1. 
     | 
| 
      
 41 
     | 
    
         
            +
            version = "1.1.3"
         
     | 
| 
       42 
42 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       43 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 43 
     | 
    
         
            +
            checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
         
     | 
| 
       44 
44 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       45 
45 
     | 
    
         
             
             "memchr",
         
     | 
| 
       46 
46 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -62,9 +62,9 @@ dependencies = [ 
     | 
|
| 
       62 
62 
     | 
    
         | 
| 
       63 
63 
     | 
    
         
             
            [[package]]
         
     | 
| 
       64 
64 
     | 
    
         
             
            name = "allocator-api2"
         
     | 
| 
       65 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 65 
     | 
    
         
            +
            version = "0.2.18"
         
     | 
| 
       66 
66 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       67 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 67 
     | 
    
         
            +
            checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
         
     | 
| 
       68 
68 
     | 
    
         | 
| 
       69 
69 
     | 
    
         
             
            [[package]]
         
     | 
| 
       70 
70 
     | 
    
         
             
            name = "android-tzdata"
         
     | 
| 
         @@ -115,18 +115,18 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 
     | 
|
| 
       115 
115 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       116 
116 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       117 
117 
     | 
    
         
             
             "quote",
         
     | 
| 
       118 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 118 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       119 
119 
     | 
    
         
             
            ]
         
     | 
| 
       120 
120 
     | 
    
         | 
| 
       121 
121 
     | 
    
         
             
            [[package]]
         
     | 
| 
       122 
122 
     | 
    
         
             
            name = "async-trait"
         
     | 
| 
       123 
     | 
    
         
            -
            version = "0.1. 
     | 
| 
      
 123 
     | 
    
         
            +
            version = "0.1.80"
         
     | 
| 
       124 
124 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       125 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 125 
     | 
    
         
            +
            checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
         
     | 
| 
       126 
126 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       127 
127 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       128 
128 
     | 
    
         
             
             "quote",
         
     | 
| 
       129 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 129 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       130 
130 
     | 
    
         
             
            ]
         
     | 
| 
       131 
131 
     | 
    
         | 
| 
       132 
132 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -146,9 +146,9 @@ checksum = "9ae037714f313c1353189ead58ef9eec30a8e8dc101b2622d461418fd59e28a9" 
     | 
|
| 
       146 
146 
     | 
    
         | 
| 
       147 
147 
     | 
    
         
             
            [[package]]
         
     | 
| 
       148 
148 
     | 
    
         
             
            name = "autocfg"
         
     | 
| 
       149 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 149 
     | 
    
         
            +
            version = "1.3.0"
         
     | 
| 
       150 
150 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       151 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 151 
     | 
    
         
            +
            checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
         
     | 
| 
       152 
152 
     | 
    
         | 
| 
       153 
153 
     | 
    
         
             
            [[package]]
         
     | 
| 
       154 
154 
     | 
    
         
             
            name = "avro-schema"
         
     | 
| 
         @@ -166,9 +166,9 @@ dependencies = [ 
     | 
|
| 
       166 
166 
     | 
    
         | 
| 
       167 
167 
     | 
    
         
             
            [[package]]
         
     | 
| 
       168 
168 
     | 
    
         
             
            name = "backtrace"
         
     | 
| 
       169 
     | 
    
         
            -
            version = "0.3. 
     | 
| 
      
 169 
     | 
    
         
            +
            version = "0.3.73"
         
     | 
| 
       170 
170 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       171 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 171 
     | 
    
         
            +
            checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
         
     | 
| 
       172 
172 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       173 
173 
     | 
    
         
             
             "addr2line",
         
     | 
| 
       174 
174 
     | 
    
         
             
             "cc",
         
     | 
| 
         @@ -187,35 +187,29 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 
     | 
|
| 
       187 
187 
     | 
    
         | 
| 
       188 
188 
     | 
    
         
             
            [[package]]
         
     | 
| 
       189 
189 
     | 
    
         
             
            name = "bindgen"
         
     | 
| 
       190 
     | 
    
         
            -
            version = "0.69. 
     | 
| 
      
 190 
     | 
    
         
            +
            version = "0.69.4"
         
     | 
| 
       191 
191 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       192 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 192 
     | 
    
         
            +
            checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
         
     | 
| 
       193 
193 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       194 
     | 
    
         
            -
             "bitflags 
     | 
| 
      
 194 
     | 
    
         
            +
             "bitflags",
         
     | 
| 
       195 
195 
     | 
    
         
             
             "cexpr",
         
     | 
| 
       196 
196 
     | 
    
         
             
             "clang-sys",
         
     | 
| 
      
 197 
     | 
    
         
            +
             "itertools",
         
     | 
| 
       197 
198 
     | 
    
         
             
             "lazy_static",
         
     | 
| 
       198 
199 
     | 
    
         
             
             "lazycell",
         
     | 
| 
       199 
     | 
    
         
            -
             "peeking_take_while",
         
     | 
| 
       200 
200 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       201 
201 
     | 
    
         
             
             "quote",
         
     | 
| 
       202 
202 
     | 
    
         
             
             "regex",
         
     | 
| 
       203 
203 
     | 
    
         
             
             "rustc-hash",
         
     | 
| 
       204 
204 
     | 
    
         
             
             "shlex",
         
     | 
| 
       205 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 205 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       206 
206 
     | 
    
         
             
            ]
         
     | 
| 
       207 
207 
     | 
    
         | 
| 
       208 
208 
     | 
    
         
             
            [[package]]
         
     | 
| 
       209 
209 
     | 
    
         
             
            name = "bitflags"
         
     | 
| 
       210 
     | 
    
         
            -
            version = " 
     | 
| 
       211 
     | 
    
         
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       212 
     | 
    
         
            -
            checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
         
     | 
| 
       213 
     | 
    
         
            -
             
     | 
| 
       214 
     | 
    
         
            -
            [[package]]
         
     | 
| 
       215 
     | 
    
         
            -
            name = "bitflags"
         
     | 
| 
       216 
     | 
    
         
            -
            version = "2.4.1"
         
     | 
| 
      
 210 
     | 
    
         
            +
            version = "2.5.0"
         
     | 
| 
       217 
211 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       218 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 212 
     | 
    
         
            +
            checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
         
     | 
| 
       219 
213 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       220 
214 
     | 
    
         
             
             "serde",
         
     | 
| 
       221 
215 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -233,9 +227,9 @@ dependencies = [ 
     | 
|
| 
       233 
227 
     | 
    
         | 
| 
       234 
228 
     | 
    
         
             
            [[package]]
         
     | 
| 
       235 
229 
     | 
    
         
             
            name = "brotli-decompressor"
         
     | 
| 
       236 
     | 
    
         
            -
            version = "4.0. 
     | 
| 
      
 230 
     | 
    
         
            +
            version = "4.0.1"
         
     | 
| 
       237 
231 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       238 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 232 
     | 
    
         
            +
            checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
         
     | 
| 
       239 
233 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       240 
234 
     | 
    
         
             
             "alloc-no-stdlib",
         
     | 
| 
       241 
235 
     | 
    
         
             
             "alloc-stdlib",
         
     | 
| 
         @@ -243,44 +237,45 @@ dependencies = [ 
     | 
|
| 
       243 
237 
     | 
    
         | 
| 
       244 
238 
     | 
    
         
             
            [[package]]
         
     | 
| 
       245 
239 
     | 
    
         
             
            name = "bumpalo"
         
     | 
| 
       246 
     | 
    
         
            -
            version = "3. 
     | 
| 
      
 240 
     | 
    
         
            +
            version = "3.16.0"
         
     | 
| 
       247 
241 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       248 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 242 
     | 
    
         
            +
            checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
         
     | 
| 
       249 
243 
     | 
    
         | 
| 
       250 
244 
     | 
    
         
             
            [[package]]
         
     | 
| 
       251 
245 
     | 
    
         
             
            name = "bytemuck"
         
     | 
| 
       252 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 246 
     | 
    
         
            +
            version = "1.16.1"
         
     | 
| 
       253 
247 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       254 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 248 
     | 
    
         
            +
            checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e"
         
     | 
| 
       255 
249 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       256 
250 
     | 
    
         
             
             "bytemuck_derive",
         
     | 
| 
       257 
251 
     | 
    
         
             
            ]
         
     | 
| 
       258 
252 
     | 
    
         | 
| 
       259 
253 
     | 
    
         
             
            [[package]]
         
     | 
| 
       260 
254 
     | 
    
         
             
            name = "bytemuck_derive"
         
     | 
| 
       261 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 255 
     | 
    
         
            +
            version = "1.7.0"
         
     | 
| 
       262 
256 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       263 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 257 
     | 
    
         
            +
            checksum = "1ee891b04274a59bd38b412188e24b849617b2e45a0fd8d057deb63e7403761b"
         
     | 
| 
       264 
258 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       265 
259 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       266 
260 
     | 
    
         
             
             "quote",
         
     | 
| 
       267 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 261 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       268 
262 
     | 
    
         
             
            ]
         
     | 
| 
       269 
263 
     | 
    
         | 
| 
       270 
264 
     | 
    
         
             
            [[package]]
         
     | 
| 
       271 
265 
     | 
    
         
             
            name = "bytes"
         
     | 
| 
       272 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 266 
     | 
    
         
            +
            version = "1.6.0"
         
     | 
| 
       273 
267 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       274 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 268 
     | 
    
         
            +
            checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
         
     | 
| 
       275 
269 
     | 
    
         | 
| 
       276 
270 
     | 
    
         
             
            [[package]]
         
     | 
| 
       277 
271 
     | 
    
         
             
            name = "cc"
         
     | 
| 
       278 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 272 
     | 
    
         
            +
            version = "1.0.99"
         
     | 
| 
       279 
273 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       280 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 274 
     | 
    
         
            +
            checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695"
         
     | 
| 
       281 
275 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       282 
276 
     | 
    
         
             
             "jobserver",
         
     | 
| 
       283 
277 
     | 
    
         
             
             "libc",
         
     | 
| 
      
 278 
     | 
    
         
            +
             "once_cell",
         
     | 
| 
       284 
279 
     | 
    
         
             
            ]
         
     | 
| 
       285 
280 
     | 
    
         | 
| 
       286 
281 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -300,9 +295,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 
     | 
|
| 
       300 
295 
     | 
    
         | 
| 
       301 
296 
     | 
    
         
             
            [[package]]
         
     | 
| 
       302 
297 
     | 
    
         
             
            name = "chrono"
         
     | 
| 
       303 
     | 
    
         
            -
            version = "0.4. 
     | 
| 
      
 298 
     | 
    
         
            +
            version = "0.4.38"
         
     | 
| 
       304 
299 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       305 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 300 
     | 
    
         
            +
            checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
         
     | 
| 
       306 
301 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       307 
302 
     | 
    
         
             
             "android-tzdata",
         
     | 
| 
       308 
303 
     | 
    
         
             
             "iana-time-zone",
         
     | 
| 
         @@ -310,14 +305,14 @@ dependencies = [ 
     | 
|
| 
       310 
305 
     | 
    
         
             
             "num-traits",
         
     | 
| 
       311 
306 
     | 
    
         
             
             "serde",
         
     | 
| 
       312 
307 
     | 
    
         
             
             "wasm-bindgen",
         
     | 
| 
       313 
     | 
    
         
            -
             "windows-targets 0.52. 
     | 
| 
      
 308 
     | 
    
         
            +
             "windows-targets 0.52.5",
         
     | 
| 
       314 
309 
     | 
    
         
             
            ]
         
     | 
| 
       315 
310 
     | 
    
         | 
| 
       316 
311 
     | 
    
         
             
            [[package]]
         
     | 
| 
       317 
312 
     | 
    
         
             
            name = "chrono-tz"
         
     | 
| 
       318 
     | 
    
         
            -
            version = "0.8. 
     | 
| 
      
 313 
     | 
    
         
            +
            version = "0.8.6"
         
     | 
| 
       319 
314 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       320 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 315 
     | 
    
         
            +
            checksum = "d59ae0466b83e838b81a54256c39d5d7c20b9d7daa10510a242d9b75abd5936e"
         
     | 
| 
       321 
316 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       322 
317 
     | 
    
         
             
             "chrono",
         
     | 
| 
       323 
318 
     | 
    
         
             
             "chrono-tz-build",
         
     | 
| 
         @@ -337,9 +332,9 @@ dependencies = [ 
     | 
|
| 
       337 
332 
     | 
    
         | 
| 
       338 
333 
     | 
    
         
             
            [[package]]
         
     | 
| 
       339 
334 
     | 
    
         
             
            name = "clang-sys"
         
     | 
| 
       340 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 335 
     | 
    
         
            +
            version = "1.8.1"
         
     | 
| 
       341 
336 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       342 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 337 
     | 
    
         
            +
            checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
         
     | 
| 
       343 
338 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       344 
339 
     | 
    
         
             
             "glob",
         
     | 
| 
       345 
340 
     | 
    
         
             
             "libc",
         
     | 
| 
         @@ -348,13 +343,13 @@ dependencies = [ 
     | 
|
| 
       348 
343 
     | 
    
         | 
| 
       349 
344 
     | 
    
         
             
            [[package]]
         
     | 
| 
       350 
345 
     | 
    
         
             
            name = "comfy-table"
         
     | 
| 
       351 
     | 
    
         
            -
            version = "7.1. 
     | 
| 
      
 346 
     | 
    
         
            +
            version = "7.1.1"
         
     | 
| 
       352 
347 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       353 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 348 
     | 
    
         
            +
            checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7"
         
     | 
| 
       354 
349 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       355 
350 
     | 
    
         
             
             "crossterm",
         
     | 
| 
       356 
351 
     | 
    
         
             
             "strum",
         
     | 
| 
       357 
     | 
    
         
            -
             "strum_macros 
     | 
| 
      
 352 
     | 
    
         
            +
             "strum_macros",
         
     | 
| 
       358 
353 
     | 
    
         
             
             "unicode-width",
         
     | 
| 
       359 
354 
     | 
    
         
             
            ]
         
     | 
| 
       360 
355 
     | 
    
         | 
| 
         @@ -381,63 +376,55 @@ checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403" 
     | 
|
| 
       381 
376 
     | 
    
         | 
| 
       382 
377 
     | 
    
         
             
            [[package]]
         
     | 
| 
       383 
378 
     | 
    
         
             
            name = "crc32fast"
         
     | 
| 
       384 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 379 
     | 
    
         
            +
            version = "1.4.2"
         
     | 
| 
       385 
380 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       386 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 381 
     | 
    
         
            +
            checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
         
     | 
| 
       387 
382 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       388 
383 
     | 
    
         
             
             "cfg-if",
         
     | 
| 
       389 
384 
     | 
    
         
             
            ]
         
     | 
| 
       390 
385 
     | 
    
         | 
| 
       391 
386 
     | 
    
         
             
            [[package]]
         
     | 
| 
       392 
387 
     | 
    
         
             
            name = "crossbeam-channel"
         
     | 
| 
       393 
     | 
    
         
            -
            version = "0.5. 
     | 
| 
      
 388 
     | 
    
         
            +
            version = "0.5.13"
         
     | 
| 
       394 
389 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       395 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 390 
     | 
    
         
            +
            checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
         
     | 
| 
       396 
391 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       397 
     | 
    
         
            -
             "cfg-if",
         
     | 
| 
       398 
392 
     | 
    
         
             
             "crossbeam-utils",
         
     | 
| 
       399 
393 
     | 
    
         
             
            ]
         
     | 
| 
       400 
394 
     | 
    
         | 
| 
       401 
395 
     | 
    
         
             
            [[package]]
         
     | 
| 
       402 
396 
     | 
    
         
             
            name = "crossbeam-deque"
         
     | 
| 
       403 
     | 
    
         
            -
            version = "0.8. 
     | 
| 
      
 397 
     | 
    
         
            +
            version = "0.8.5"
         
     | 
| 
       404 
398 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       405 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 399 
     | 
    
         
            +
            checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
         
     | 
| 
       406 
400 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       407 
     | 
    
         
            -
             "cfg-if",
         
     | 
| 
       408 
401 
     | 
    
         
             
             "crossbeam-epoch",
         
     | 
| 
       409 
402 
     | 
    
         
             
             "crossbeam-utils",
         
     | 
| 
       410 
403 
     | 
    
         
             
            ]
         
     | 
| 
       411 
404 
     | 
    
         | 
| 
       412 
405 
     | 
    
         
             
            [[package]]
         
     | 
| 
       413 
406 
     | 
    
         
             
            name = "crossbeam-epoch"
         
     | 
| 
       414 
     | 
    
         
            -
            version = "0.9. 
     | 
| 
      
 407 
     | 
    
         
            +
            version = "0.9.18"
         
     | 
| 
       415 
408 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       416 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 409 
     | 
    
         
            +
            checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
         
     | 
| 
       417 
410 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       418 
     | 
    
         
            -
             "autocfg",
         
     | 
| 
       419 
     | 
    
         
            -
             "cfg-if",
         
     | 
| 
       420 
411 
     | 
    
         
             
             "crossbeam-utils",
         
     | 
| 
       421 
412 
     | 
    
         
             
            ]
         
     | 
| 
       422 
413 
     | 
    
         | 
| 
       423 
414 
     | 
    
         
             
            [[package]]
         
     | 
| 
       424 
415 
     | 
    
         
             
            name = "crossbeam-queue"
         
     | 
| 
       425 
     | 
    
         
            -
            version = "0.3. 
     | 
| 
      
 416 
     | 
    
         
            +
            version = "0.3.11"
         
     | 
| 
       426 
417 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       427 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 418 
     | 
    
         
            +
            checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
         
     | 
| 
       428 
419 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       429 
     | 
    
         
            -
             "cfg-if",
         
     | 
| 
       430 
420 
     | 
    
         
             
             "crossbeam-utils",
         
     | 
| 
       431 
421 
     | 
    
         
             
            ]
         
     | 
| 
       432 
422 
     | 
    
         | 
| 
       433 
423 
     | 
    
         
             
            [[package]]
         
     | 
| 
       434 
424 
     | 
    
         
             
            name = "crossbeam-utils"
         
     | 
| 
       435 
     | 
    
         
            -
            version = "0.8. 
     | 
| 
      
 425 
     | 
    
         
            +
            version = "0.8.20"
         
     | 
| 
       436 
426 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       437 
     | 
    
         
            -
            checksum = " 
     | 
| 
       438 
     | 
    
         
            -
            dependencies = [
         
     | 
| 
       439 
     | 
    
         
            -
             "cfg-if",
         
     | 
| 
       440 
     | 
    
         
            -
            ]
         
     | 
| 
      
 427 
     | 
    
         
            +
            checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
         
     | 
| 
       441 
428 
     | 
    
         | 
| 
       442 
429 
     | 
    
         
             
            [[package]]
         
     | 
| 
       443 
430 
     | 
    
         
             
            name = "crossterm"
         
     | 
| 
         @@ -445,7 +432,7 @@ version = "0.27.0" 
     | 
|
| 
       445 
432 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       446 
433 
     | 
    
         
             
            checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
         
     | 
| 
       447 
434 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       448 
     | 
    
         
            -
             "bitflags 
     | 
| 
      
 435 
     | 
    
         
            +
             "bitflags",
         
     | 
| 
       449 
436 
     | 
    
         
             
             "crossterm_winapi",
         
     | 
| 
       450 
437 
     | 
    
         
             
             "libc",
         
     | 
| 
       451 
438 
     | 
    
         
             
             "parking_lot",
         
     | 
| 
         @@ -463,9 +450,9 @@ dependencies = [ 
     | 
|
| 
       463 
450 
     | 
    
         | 
| 
       464 
451 
     | 
    
         
             
            [[package]]
         
     | 
| 
       465 
452 
     | 
    
         
             
            name = "dyn-clone"
         
     | 
| 
       466 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 453 
     | 
    
         
            +
            version = "1.0.17"
         
     | 
| 
       467 
454 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       468 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 455 
     | 
    
         
            +
            checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
         
     | 
| 
       469 
456 
     | 
    
         | 
| 
       470 
457 
     | 
    
         
             
            [[package]]
         
     | 
| 
       471 
458 
     | 
    
         
             
            name = "either"
         
     | 
| 
         @@ -478,14 +465,14 @@ dependencies = [ 
     | 
|
| 
       478 
465 
     | 
    
         | 
| 
       479 
466 
     | 
    
         
             
            [[package]]
         
     | 
| 
       480 
467 
     | 
    
         
             
            name = "enum_dispatch"
         
     | 
| 
       481 
     | 
    
         
            -
            version = "0.3. 
     | 
| 
      
 468 
     | 
    
         
            +
            version = "0.3.13"
         
     | 
| 
       482 
469 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       483 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 470 
     | 
    
         
            +
            checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
         
     | 
| 
       484 
471 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       485 
472 
     | 
    
         
             
             "once_cell",
         
     | 
| 
       486 
473 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       487 
474 
     | 
    
         
             
             "quote",
         
     | 
| 
       488 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 475 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       489 
476 
     | 
    
         
             
            ]
         
     | 
| 
       490 
477 
     | 
    
         | 
| 
       491 
478 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -514,9 +501,9 @@ checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c" 
     | 
|
| 
       514 
501 
     | 
    
         | 
| 
       515 
502 
     | 
    
         
             
            [[package]]
         
     | 
| 
       516 
503 
     | 
    
         
             
            name = "flate2"
         
     | 
| 
       517 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 504 
     | 
    
         
            +
            version = "1.0.30"
         
     | 
| 
       518 
505 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       519 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 506 
     | 
    
         
            +
            checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
         
     | 
| 
       520 
507 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       521 
508 
     | 
    
         
             
             "crc32fast",
         
     | 
| 
       522 
509 
     | 
    
         
             
             "miniz_oxide",
         
     | 
| 
         @@ -593,7 +580,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 
     | 
|
| 
       593 
580 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       594 
581 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       595 
582 
     | 
    
         
             
             "quote",
         
     | 
| 
       596 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 583 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       597 
584 
     | 
    
         
             
            ]
         
     | 
| 
       598 
585 
     | 
    
         | 
| 
       599 
586 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -628,9 +615,9 @@ dependencies = [ 
     | 
|
| 
       628 
615 
     | 
    
         | 
| 
       629 
616 
     | 
    
         
             
            [[package]]
         
     | 
| 
       630 
617 
     | 
    
         
             
            name = "getrandom"
         
     | 
| 
       631 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 618 
     | 
    
         
            +
            version = "0.2.15"
         
     | 
| 
       632 
619 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       633 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 620 
     | 
    
         
            +
            checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
         
     | 
| 
       634 
621 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       635 
622 
     | 
    
         
             
             "cfg-if",
         
     | 
| 
       636 
623 
     | 
    
         
             
             "js-sys",
         
     | 
| 
         @@ -641,9 +628,9 @@ dependencies = [ 
     | 
|
| 
       641 
628 
     | 
    
         | 
| 
       642 
629 
     | 
    
         
             
            [[package]]
         
     | 
| 
       643 
630 
     | 
    
         
             
            name = "gimli"
         
     | 
| 
       644 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 631 
     | 
    
         
            +
            version = "0.29.0"
         
     | 
| 
       645 
632 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       646 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 633 
     | 
    
         
            +
            checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
         
     | 
| 
       647 
634 
     | 
    
         | 
| 
       648 
635 
     | 
    
         
             
            [[package]]
         
     | 
| 
       649 
636 
     | 
    
         
             
            name = "glob"
         
     | 
| 
         @@ -653,28 +640,19 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 
     | 
|
| 
       653 
640 
     | 
    
         | 
| 
       654 
641 
     | 
    
         
             
            [[package]]
         
     | 
| 
       655 
642 
     | 
    
         
             
            name = "halfbrown"
         
     | 
| 
       656 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 643 
     | 
    
         
            +
            version = "0.2.5"
         
     | 
| 
       657 
644 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       658 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 645 
     | 
    
         
            +
            checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f"
         
     | 
| 
       659 
646 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       660 
     | 
    
         
            -
             "hashbrown 
     | 
| 
      
 647 
     | 
    
         
            +
             "hashbrown",
         
     | 
| 
       661 
648 
     | 
    
         
             
             "serde",
         
     | 
| 
       662 
649 
     | 
    
         
             
            ]
         
     | 
| 
       663 
650 
     | 
    
         | 
| 
       664 
651 
     | 
    
         
             
            [[package]]
         
     | 
| 
       665 
652 
     | 
    
         
             
            name = "hashbrown"
         
     | 
| 
       666 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 653 
     | 
    
         
            +
            version = "0.14.5"
         
     | 
| 
       667 
654 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       668 
     | 
    
         
            -
            checksum = " 
     | 
| 
       669 
     | 
    
         
            -
            dependencies = [
         
     | 
| 
       670 
     | 
    
         
            -
             "ahash",
         
     | 
| 
       671 
     | 
    
         
            -
            ]
         
     | 
| 
       672 
     | 
    
         
            -
             
     | 
| 
       673 
     | 
    
         
            -
            [[package]]
         
     | 
| 
       674 
     | 
    
         
            -
            name = "hashbrown"
         
     | 
| 
       675 
     | 
    
         
            -
            version = "0.14.3"
         
     | 
| 
       676 
     | 
    
         
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       677 
     | 
    
         
            -
            checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
         
     | 
| 
      
 655 
     | 
    
         
            +
            checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
         
     | 
| 
       678 
656 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       679 
657 
     | 
    
         
             
             "ahash",
         
     | 
| 
       680 
658 
     | 
    
         
             
             "allocator-api2",
         
     | 
| 
         @@ -684,15 +662,15 @@ dependencies = [ 
     | 
|
| 
       684 
662 
     | 
    
         | 
| 
       685 
663 
     | 
    
         
             
            [[package]]
         
     | 
| 
       686 
664 
     | 
    
         
             
            name = "heck"
         
     | 
| 
       687 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 665 
     | 
    
         
            +
            version = "0.5.0"
         
     | 
| 
       688 
666 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       689 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 667 
     | 
    
         
            +
            checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
         
     | 
| 
       690 
668 
     | 
    
         | 
| 
       691 
669 
     | 
    
         
             
            [[package]]
         
     | 
| 
       692 
670 
     | 
    
         
             
            name = "hermit-abi"
         
     | 
| 
       693 
     | 
    
         
            -
            version = "0.3. 
     | 
| 
      
 671 
     | 
    
         
            +
            version = "0.3.9"
         
     | 
| 
       694 
672 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       695 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 673 
     | 
    
         
            +
            checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
         
     | 
| 
       696 
674 
     | 
    
         | 
| 
       697 
675 
     | 
    
         
             
            [[package]]
         
     | 
| 
       698 
676 
     | 
    
         
             
            name = "hex"
         
     | 
| 
         @@ -711,9 +689,9 @@ dependencies = [ 
     | 
|
| 
       711 
689 
     | 
    
         | 
| 
       712 
690 
     | 
    
         
             
            [[package]]
         
     | 
| 
       713 
691 
     | 
    
         
             
            name = "iana-time-zone"
         
     | 
| 
       714 
     | 
    
         
            -
            version = "0.1. 
     | 
| 
      
 692 
     | 
    
         
            +
            version = "0.1.60"
         
     | 
| 
       715 
693 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       716 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 694 
     | 
    
         
            +
            checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
         
     | 
| 
       717 
695 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       718 
696 
     | 
    
         
             
             "android_system_properties",
         
     | 
| 
       719 
697 
     | 
    
         
             
             "core-foundation-sys",
         
     | 
| 
         @@ -734,20 +712,29 @@ dependencies = [ 
     | 
|
| 
       734 
712 
     | 
    
         | 
| 
       735 
713 
     | 
    
         
             
            [[package]]
         
     | 
| 
       736 
714 
     | 
    
         
             
            name = "indexmap"
         
     | 
| 
       737 
     | 
    
         
            -
            version = "2. 
     | 
| 
      
 715 
     | 
    
         
            +
            version = "2.2.6"
         
     | 
| 
       738 
716 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       739 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 717 
     | 
    
         
            +
            checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
         
     | 
| 
       740 
718 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       741 
719 
     | 
    
         
             
             "equivalent",
         
     | 
| 
       742 
     | 
    
         
            -
             "hashbrown 
     | 
| 
      
 720 
     | 
    
         
            +
             "hashbrown",
         
     | 
| 
       743 
721 
     | 
    
         
             
             "serde",
         
     | 
| 
       744 
722 
     | 
    
         
             
            ]
         
     | 
| 
       745 
723 
     | 
    
         | 
| 
      
 724 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 725 
     | 
    
         
            +
            name = "itertools"
         
     | 
| 
      
 726 
     | 
    
         
            +
            version = "0.12.1"
         
     | 
| 
      
 727 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 728 
     | 
    
         
            +
            checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
         
     | 
| 
      
 729 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 730 
     | 
    
         
            +
             "either",
         
     | 
| 
      
 731 
     | 
    
         
            +
            ]
         
     | 
| 
      
 732 
     | 
    
         
            +
             
     | 
| 
       746 
733 
     | 
    
         
             
            [[package]]
         
     | 
| 
       747 
734 
     | 
    
         
             
            name = "itoa"
         
     | 
| 
       748 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 735 
     | 
    
         
            +
            version = "1.0.11"
         
     | 
| 
       749 
736 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       750 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 737 
     | 
    
         
            +
            checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
         
     | 
| 
       751 
738 
     | 
    
         | 
| 
       752 
739 
     | 
    
         
             
            [[package]]
         
     | 
| 
       753 
740 
     | 
    
         
             
            name = "itoap"
         
     | 
| 
         @@ -777,18 +764,18 @@ dependencies = [ 
     | 
|
| 
       777 
764 
     | 
    
         | 
| 
       778 
765 
     | 
    
         
             
            [[package]]
         
     | 
| 
       779 
766 
     | 
    
         
             
            name = "jobserver"
         
     | 
| 
       780 
     | 
    
         
            -
            version = "0.1. 
     | 
| 
      
 767 
     | 
    
         
            +
            version = "0.1.31"
         
     | 
| 
       781 
768 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       782 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 769 
     | 
    
         
            +
            checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
         
     | 
| 
       783 
770 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       784 
771 
     | 
    
         
             
             "libc",
         
     | 
| 
       785 
772 
     | 
    
         
             
            ]
         
     | 
| 
       786 
773 
     | 
    
         | 
| 
       787 
774 
     | 
    
         
             
            [[package]]
         
     | 
| 
       788 
775 
     | 
    
         
             
            name = "js-sys"
         
     | 
| 
       789 
     | 
    
         
            -
            version = "0.3. 
     | 
| 
      
 776 
     | 
    
         
            +
            version = "0.3.69"
         
     | 
| 
       790 
777 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       791 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 778 
     | 
    
         
            +
            checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
         
     | 
| 
       792 
779 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       793 
780 
     | 
    
         
             
             "wasm-bindgen",
         
     | 
| 
       794 
781 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -806,9 +793,9 @@ dependencies = [ 
     | 
|
| 
       806 
793 
     | 
    
         | 
| 
       807 
794 
     | 
    
         
             
            [[package]]
         
     | 
| 
       808 
795 
     | 
    
         
             
            name = "lazy_static"
         
     | 
| 
       809 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 796 
     | 
    
         
            +
            version = "1.5.0"
         
     | 
| 
       810 
797 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       811 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 798 
     | 
    
         
            +
            checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
         
     | 
| 
       812 
799 
     | 
    
         | 
| 
       813 
800 
     | 
    
         
             
            [[package]]
         
     | 
| 
       814 
801 
     | 
    
         
             
            name = "lazycell"
         
     | 
| 
         @@ -882,9 +869,9 @@ dependencies = [ 
     | 
|
| 
       882 
869 
     | 
    
         | 
| 
       883 
870 
     | 
    
         
             
            [[package]]
         
     | 
| 
       884 
871 
     | 
    
         
             
            name = "libc"
         
     | 
| 
       885 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 872 
     | 
    
         
            +
            version = "0.2.155"
         
     | 
| 
       886 
873 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       887 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 874 
     | 
    
         
            +
            checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
         
     | 
| 
       888 
875 
     | 
    
         | 
| 
       889 
876 
     | 
    
         
             
            [[package]]
         
     | 
| 
       890 
877 
     | 
    
         
             
            name = "libflate"
         
     | 
| 
         @@ -908,12 +895,12 @@ dependencies = [ 
     | 
|
| 
       908 
895 
     | 
    
         | 
| 
       909 
896 
     | 
    
         
             
            [[package]]
         
     | 
| 
       910 
897 
     | 
    
         
             
            name = "libloading"
         
     | 
| 
       911 
     | 
    
         
            -
            version = "0.8. 
     | 
| 
      
 898 
     | 
    
         
            +
            version = "0.8.3"
         
     | 
| 
       912 
899 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       913 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 900 
     | 
    
         
            +
            checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
         
     | 
| 
       914 
901 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       915 
902 
     | 
    
         
             
             "cfg-if",
         
     | 
| 
       916 
     | 
    
         
            -
             "windows- 
     | 
| 
      
 903 
     | 
    
         
            +
             "windows-targets 0.48.5",
         
     | 
| 
       917 
904 
     | 
    
         
             
            ]
         
     | 
| 
       918 
905 
     | 
    
         | 
| 
       919 
906 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -924,9 +911,9 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 
     | 
|
| 
       924 
911 
     | 
    
         | 
| 
       925 
912 
     | 
    
         
             
            [[package]]
         
     | 
| 
       926 
913 
     | 
    
         
             
            name = "libmimalloc-sys"
         
     | 
| 
       927 
     | 
    
         
            -
            version = "0.1. 
     | 
| 
      
 914 
     | 
    
         
            +
            version = "0.1.38"
         
     | 
| 
       928 
915 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       929 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 916 
     | 
    
         
            +
            checksum = "0e7bb23d733dfcc8af652a78b7bf232f0e967710d044732185e561e47c0336b6"
         
     | 
| 
       930 
917 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       931 
918 
     | 
    
         
             
             "cc",
         
     | 
| 
       932 
919 
     | 
    
         
             
             "libc",
         
     | 
| 
         @@ -934,9 +921,9 @@ dependencies = [ 
     | 
|
| 
       934 
921 
     | 
    
         | 
| 
       935 
922 
     | 
    
         
             
            [[package]]
         
     | 
| 
       936 
923 
     | 
    
         
             
            name = "lock_api"
         
     | 
| 
       937 
     | 
    
         
            -
            version = "0.4. 
     | 
| 
      
 924 
     | 
    
         
            +
            version = "0.4.12"
         
     | 
| 
       938 
925 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       939 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 926 
     | 
    
         
            +
            checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
         
     | 
| 
       940 
927 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       941 
928 
     | 
    
         
             
             "autocfg",
         
     | 
| 
       942 
929 
     | 
    
         
             
             "scopeguard",
         
     | 
| 
         @@ -944,15 +931,15 @@ dependencies = [ 
     | 
|
| 
       944 
931 
     | 
    
         | 
| 
       945 
932 
     | 
    
         
             
            [[package]]
         
     | 
| 
       946 
933 
     | 
    
         
             
            name = "log"
         
     | 
| 
       947 
     | 
    
         
            -
            version = "0.4. 
     | 
| 
      
 934 
     | 
    
         
            +
            version = "0.4.21"
         
     | 
| 
       948 
935 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       949 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 936 
     | 
    
         
            +
            checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
         
     | 
| 
       950 
937 
     | 
    
         | 
| 
       951 
938 
     | 
    
         
             
            [[package]]
         
     | 
| 
       952 
939 
     | 
    
         
             
            name = "lz4"
         
     | 
| 
       953 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 940 
     | 
    
         
            +
            version = "1.25.0"
         
     | 
| 
       954 
941 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       955 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 942 
     | 
    
         
            +
            checksum = "d6eab492fe7f8651add23237ea56dbf11b3c4ff762ab83d40a47f11433421f91"
         
     | 
| 
       956 
943 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       957 
944 
     | 
    
         
             
             "libc",
         
     | 
| 
       958 
945 
     | 
    
         
             
             "lz4-sys",
         
     | 
| 
         @@ -960,9 +947,9 @@ dependencies = [ 
     | 
|
| 
       960 
947 
     | 
    
         | 
| 
       961 
948 
     | 
    
         
             
            [[package]]
         
     | 
| 
       962 
949 
     | 
    
         
             
            name = "lz4-sys"
         
     | 
| 
       963 
     | 
    
         
            -
            version = "1.9. 
     | 
| 
      
 950 
     | 
    
         
            +
            version = "1.9.5"
         
     | 
| 
       964 
951 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       965 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 952 
     | 
    
         
            +
            checksum = "e9764018d143cc854c9f17f0b907de70f14393b1f502da6375dce70f00514eb3"
         
     | 
| 
       966 
953 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       967 
954 
     | 
    
         
             
             "cc",
         
     | 
| 
       968 
955 
     | 
    
         
             
             "libc",
         
     | 
| 
         @@ -970,9 +957,9 @@ dependencies = [ 
     | 
|
| 
       970 
957 
     | 
    
         | 
| 
       971 
958 
     | 
    
         
             
            [[package]]
         
     | 
| 
       972 
959 
     | 
    
         
             
            name = "magnus"
         
     | 
| 
       973 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 960 
     | 
    
         
            +
            version = "0.7.1"
         
     | 
| 
       974 
961 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       975 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 962 
     | 
    
         
            +
            checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
         
     | 
| 
       976 
963 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       977 
964 
     | 
    
         
             
             "magnus-macros",
         
     | 
| 
       978 
965 
     | 
    
         
             
             "rb-sys",
         
     | 
| 
         @@ -988,14 +975,14 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3" 
     | 
|
| 
       988 
975 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       989 
976 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       990 
977 
     | 
    
         
             
             "quote",
         
     | 
| 
       991 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 978 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       992 
979 
     | 
    
         
             
            ]
         
     | 
| 
       993 
980 
     | 
    
         | 
| 
       994 
981 
     | 
    
         
             
            [[package]]
         
     | 
| 
       995 
982 
     | 
    
         
             
            name = "memchr"
         
     | 
| 
       996 
     | 
    
         
            -
            version = "2.7. 
     | 
| 
      
 983 
     | 
    
         
            +
            version = "2.7.4"
         
     | 
| 
       997 
984 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       998 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 985 
     | 
    
         
            +
            checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
         
     | 
| 
       999 
986 
     | 
    
         | 
| 
       1000 
987 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1001 
988 
     | 
    
         
             
            name = "memmap2"
         
     | 
| 
         @@ -1008,9 +995,9 @@ dependencies = [ 
     | 
|
| 
       1008 
995 
     | 
    
         | 
| 
       1009 
996 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1010 
997 
     | 
    
         
             
            name = "mimalloc"
         
     | 
| 
       1011 
     | 
    
         
            -
            version = "0.1. 
     | 
| 
      
 998 
     | 
    
         
            +
            version = "0.1.42"
         
     | 
| 
       1012 
999 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1013 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1000 
     | 
    
         
            +
            checksum = "e9186d86b79b52f4a77af65604b51225e8db1d6ee7e3f41aec1e40829c71a176"
         
     | 
| 
       1014 
1001 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1015 
1002 
     | 
    
         
             
             "libmimalloc-sys",
         
     | 
| 
       1016 
1003 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -1023,18 +1010,18 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 
     | 
|
| 
       1023 
1010 
     | 
    
         | 
| 
       1024 
1011 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1025 
1012 
     | 
    
         
             
            name = "miniz_oxide"
         
     | 
| 
       1026 
     | 
    
         
            -
            version = "0.7. 
     | 
| 
      
 1013 
     | 
    
         
            +
            version = "0.7.4"
         
     | 
| 
       1027 
1014 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1028 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1015 
     | 
    
         
            +
            checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
         
     | 
| 
       1029 
1016 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1030 
1017 
     | 
    
         
             
             "adler",
         
     | 
| 
       1031 
1018 
     | 
    
         
             
            ]
         
     | 
| 
       1032 
1019 
     | 
    
         | 
| 
       1033 
1020 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1034 
1021 
     | 
    
         
             
            name = "mio"
         
     | 
| 
       1035 
     | 
    
         
            -
            version = "0.8. 
     | 
| 
      
 1022 
     | 
    
         
            +
            version = "0.8.11"
         
     | 
| 
       1036 
1023 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1037 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1024 
     | 
    
         
            +
            checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
         
     | 
| 
       1038 
1025 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1039 
1026 
     | 
    
         
             
             "libc",
         
     | 
| 
       1040 
1027 
     | 
    
         
             
             "wasi",
         
     | 
| 
         @@ -1043,9 +1030,9 @@ dependencies = [ 
     | 
|
| 
       1043 
1030 
     | 
    
         | 
| 
       1044 
1031 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1045 
1032 
     | 
    
         
             
            name = "multiversion"
         
     | 
| 
       1046 
     | 
    
         
            -
            version = "0.7. 
     | 
| 
      
 1033 
     | 
    
         
            +
            version = "0.7.4"
         
     | 
| 
       1047 
1034 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1048 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1035 
     | 
    
         
            +
            checksum = "c4851161a11d3ad0bf9402d90ffc3967bf231768bfd7aeb61755ad06dbf1a142"
         
     | 
| 
       1049 
1036 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1050 
1037 
     | 
    
         
             
             "multiversion-macros",
         
     | 
| 
       1051 
1038 
     | 
    
         
             
             "target-features",
         
     | 
| 
         @@ -1053,9 +1040,9 @@ dependencies = [ 
     | 
|
| 
       1053 
1040 
     | 
    
         | 
| 
       1054 
1041 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1055 
1042 
     | 
    
         
             
            name = "multiversion-macros"
         
     | 
| 
       1056 
     | 
    
         
            -
            version = "0.7. 
     | 
| 
      
 1043 
     | 
    
         
            +
            version = "0.7.4"
         
     | 
| 
       1057 
1044 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1058 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1045 
     | 
    
         
            +
            checksum = "79a74ddee9e0c27d2578323c13905793e91622148f138ba29738f9dddb835e90"
         
     | 
| 
       1059 
1046 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1060 
1047 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       1061 
1048 
     | 
    
         
             
             "quote",
         
     | 
| 
         @@ -1113,9 +1100,9 @@ dependencies = [ 
     | 
|
| 
       1113 
1100 
     | 
    
         | 
| 
       1114 
1101 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1115 
1102 
     | 
    
         
             
            name = "object"
         
     | 
| 
       1116 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1103 
     | 
    
         
            +
            version = "0.36.0"
         
     | 
| 
       1117 
1104 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1118 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1105 
     | 
    
         
            +
            checksum = "576dfe1fc8f9df304abb159d767a29d0476f7750fbf8aa7ad07816004a207434"
         
     | 
| 
       1119 
1106 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1120 
1107 
     | 
    
         
             
             "memchr",
         
     | 
| 
       1121 
1108 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -1128,9 +1115,9 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 
     | 
|
| 
       1128 
1115 
     | 
    
         | 
| 
       1129 
1116 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1130 
1117 
     | 
    
         
             
            name = "parking_lot"
         
     | 
| 
       1131 
     | 
    
         
            -
            version = "0.12. 
     | 
| 
      
 1118 
     | 
    
         
            +
            version = "0.12.3"
         
     | 
| 
       1132 
1119 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1133 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1120 
     | 
    
         
            +
            checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
         
     | 
| 
       1134 
1121 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1135 
1122 
     | 
    
         
             
             "lock_api",
         
     | 
| 
       1136 
1123 
     | 
    
         
             
             "parking_lot_core",
         
     | 
| 
         @@ -1138,15 +1125,15 @@ dependencies = [ 
     | 
|
| 
       1138 
1125 
     | 
    
         | 
| 
       1139 
1126 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1140 
1127 
     | 
    
         
             
            name = "parking_lot_core"
         
     | 
| 
       1141 
     | 
    
         
            -
            version = "0.9. 
     | 
| 
      
 1128 
     | 
    
         
            +
            version = "0.9.10"
         
     | 
| 
       1142 
1129 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1143 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1130 
     | 
    
         
            +
            checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
         
     | 
| 
       1144 
1131 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1145 
1132 
     | 
    
         
             
             "cfg-if",
         
     | 
| 
       1146 
1133 
     | 
    
         
             
             "libc",
         
     | 
| 
       1147 
1134 
     | 
    
         
             
             "redox_syscall",
         
     | 
| 
       1148 
1135 
     | 
    
         
             
             "smallvec",
         
     | 
| 
       1149 
     | 
    
         
            -
             "windows-targets 0. 
     | 
| 
      
 1136 
     | 
    
         
            +
             "windows-targets 0.52.5",
         
     | 
| 
       1150 
1137 
     | 
    
         
             
            ]
         
     | 
| 
       1151 
1138 
     | 
    
         | 
| 
       1152 
1139 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -1161,19 +1148,13 @@ dependencies = [ 
     | 
|
| 
       1161 
1148 
     | 
    
         | 
| 
       1162 
1149 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1163 
1150 
     | 
    
         
             
            name = "parse-zoneinfo"
         
     | 
| 
       1164 
     | 
    
         
            -
            version = "0.3. 
     | 
| 
      
 1151 
     | 
    
         
            +
            version = "0.3.1"
         
     | 
| 
       1165 
1152 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1166 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1153 
     | 
    
         
            +
            checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
         
     | 
| 
       1167 
1154 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1168 
1155 
     | 
    
         
             
             "regex",
         
     | 
| 
       1169 
1156 
     | 
    
         
             
            ]
         
     | 
| 
       1170 
1157 
     | 
    
         | 
| 
       1171 
     | 
    
         
            -
            [[package]]
         
     | 
| 
       1172 
     | 
    
         
            -
            name = "peeking_take_while"
         
     | 
| 
       1173 
     | 
    
         
            -
            version = "0.1.2"
         
     | 
| 
       1174 
     | 
    
         
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1175 
     | 
    
         
            -
            checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
         
     | 
| 
       1176 
     | 
    
         
            -
             
     | 
| 
       1177 
1158 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1178 
1159 
     | 
    
         
             
            name = "percent-encoding"
         
     | 
| 
       1179 
1160 
     | 
    
         
             
            version = "2.3.1"
         
     | 
| 
         @@ -1220,9 +1201,9 @@ dependencies = [ 
     | 
|
| 
       1220 
1201 
     | 
    
         | 
| 
       1221 
1202 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1222 
1203 
     | 
    
         
             
            name = "pin-project-lite"
         
     | 
| 
       1223 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 1204 
     | 
    
         
            +
            version = "0.2.14"
         
     | 
| 
       1224 
1205 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1225 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1206 
     | 
    
         
            +
            checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
         
     | 
| 
       1226 
1207 
     | 
    
         | 
| 
       1227 
1208 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1228 
1209 
     | 
    
         
             
            name = "pin-utils"
         
     | 
| 
         @@ -1232,9 +1213,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 
     | 
|
| 
       1232 
1213 
     | 
    
         | 
| 
       1233 
1214 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1234 
1215 
     | 
    
         
             
            name = "pkg-config"
         
     | 
| 
       1235 
     | 
    
         
            -
            version = "0.3. 
     | 
| 
      
 1216 
     | 
    
         
            +
            version = "0.3.30"
         
     | 
| 
       1236 
1217 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1237 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1218 
     | 
    
         
            +
            checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
         
     | 
| 
       1238 
1219 
     | 
    
         | 
| 
       1239 
1220 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1240 
1221 
     | 
    
         
             
            name = "planus"
         
     | 
| 
         @@ -1247,7 +1228,7 @@ dependencies = [ 
     | 
|
| 
       1247 
1228 
     | 
    
         | 
| 
       1248 
1229 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1249 
1230 
     | 
    
         
             
            name = "polars"
         
     | 
| 
       1250 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1231 
     | 
    
         
            +
            version = "0.12.0"
         
     | 
| 
       1251 
1232 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1252 
1233 
     | 
    
         
             
             "ahash",
         
     | 
| 
       1253 
1234 
     | 
    
         
             
             "chrono",
         
     | 
| 
         @@ -1255,7 +1236,7 @@ dependencies = [ 
     | 
|
| 
       1255 
1236 
     | 
    
         
             
             "jemallocator",
         
     | 
| 
       1256 
1237 
     | 
    
         
             
             "magnus",
         
     | 
| 
       1257 
1238 
     | 
    
         
             
             "mimalloc",
         
     | 
| 
       1258 
     | 
    
         
            -
             "polars 0. 
     | 
| 
      
 1239 
     | 
    
         
            +
             "polars 0.41.3",
         
     | 
| 
       1259 
1240 
     | 
    
         
             
             "polars-core",
         
     | 
| 
       1260 
1241 
     | 
    
         
             
             "polars-parquet",
         
     | 
| 
       1261 
1242 
     | 
    
         
             
             "polars-utils",
         
     | 
| 
         @@ -1265,9 +1246,9 @@ dependencies = [ 
     | 
|
| 
       1265 
1246 
     | 
    
         | 
| 
       1266 
1247 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1267 
1248 
     | 
    
         
             
            name = "polars"
         
     | 
| 
       1268 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1249 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1269 
1250 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1270 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1251 
     | 
    
         
            +
            checksum = "8e3351ea4570e54cd556e6755b78fe7a2c85368d820c0307cca73c96e796a7ba"
         
     | 
| 
       1271 
1252 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1272 
1253 
     | 
    
         
             
             "getrandom",
         
     | 
| 
       1273 
1254 
     | 
    
         
             
             "polars-arrow",
         
     | 
| 
         @@ -1286,9 +1267,9 @@ dependencies = [ 
     | 
|
| 
       1286 
1267 
     | 
    
         | 
| 
       1287 
1268 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1288 
1269 
     | 
    
         
             
            name = "polars-arrow"
         
     | 
| 
       1289 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1270 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1290 
1271 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1291 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1272 
     | 
    
         
            +
            checksum = "ba65fc4bcabbd64fca01fd30e759f8b2043f0963c57619e331d4b534576c0b47"
         
     | 
| 
       1292 
1273 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1293 
1274 
     | 
    
         
             
             "ahash",
         
     | 
| 
       1294 
1275 
     | 
    
         
             
             "atoi",
         
     | 
| 
         @@ -1304,7 +1285,7 @@ dependencies = [ 
     | 
|
| 
       1304 
1285 
     | 
    
         
             
             "foreign_vec",
         
     | 
| 
       1305 
1286 
     | 
    
         
             
             "futures",
         
     | 
| 
       1306 
1287 
     | 
    
         
             
             "getrandom",
         
     | 
| 
       1307 
     | 
    
         
            -
             "hashbrown 
     | 
| 
      
 1288 
     | 
    
         
            +
             "hashbrown",
         
     | 
| 
       1308 
1289 
     | 
    
         
             
             "itoa",
         
     | 
| 
       1309 
1290 
     | 
    
         
             
             "itoap",
         
     | 
| 
       1310 
1291 
     | 
    
         
             
             "lz4",
         
     | 
| 
         @@ -1334,9 +1315,9 @@ dependencies = [ 
     | 
|
| 
       1334 
1315 
     | 
    
         | 
| 
       1335 
1316 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1336 
1317 
     | 
    
         
             
            name = "polars-compute"
         
     | 
| 
       1337 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1318 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1338 
1319 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1339 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1320 
     | 
    
         
            +
            checksum = "9f099516af30ac9ae4b4480f4ad02aa017d624f2f37b7a16ad4e9ba52f7e5269"
         
     | 
| 
       1340 
1321 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1341 
1322 
     | 
    
         
             
             "bytemuck",
         
     | 
| 
       1342 
1323 
     | 
    
         
             
             "either",
         
     | 
| 
         @@ -1350,18 +1331,18 @@ dependencies = [ 
     | 
|
| 
       1350 
1331 
     | 
    
         | 
| 
       1351 
1332 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1352 
1333 
     | 
    
         
             
            name = "polars-core"
         
     | 
| 
       1353 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1334 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1354 
1335 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1355 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1336 
     | 
    
         
            +
            checksum = "b2439484be228b8c302328e2f953e64cfd93930636e5c7ceed90339ece7fef6c"
         
     | 
| 
       1356 
1337 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1357 
1338 
     | 
    
         
             
             "ahash",
         
     | 
| 
       1358 
     | 
    
         
            -
             "bitflags 
     | 
| 
      
 1339 
     | 
    
         
            +
             "bitflags",
         
     | 
| 
       1359 
1340 
     | 
    
         
             
             "bytemuck",
         
     | 
| 
       1360 
1341 
     | 
    
         
             
             "chrono",
         
     | 
| 
       1361 
1342 
     | 
    
         
             
             "chrono-tz",
         
     | 
| 
       1362 
1343 
     | 
    
         
             
             "comfy-table",
         
     | 
| 
       1363 
1344 
     | 
    
         
             
             "either",
         
     | 
| 
       1364 
     | 
    
         
            -
             "hashbrown 
     | 
| 
      
 1345 
     | 
    
         
            +
             "hashbrown",
         
     | 
| 
       1365 
1346 
     | 
    
         
             
             "indexmap",
         
     | 
| 
       1366 
1347 
     | 
    
         
             
             "num-traits",
         
     | 
| 
       1367 
1348 
     | 
    
         
             
             "once_cell",
         
     | 
| 
         @@ -1384,9 +1365,9 @@ dependencies = [ 
     | 
|
| 
       1384 
1365 
     | 
    
         | 
| 
       1385 
1366 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1386 
1367 
     | 
    
         
             
            name = "polars-error"
         
     | 
| 
       1387 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1368 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1388 
1369 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1389 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1370 
     | 
    
         
            +
            checksum = "0c9b06dfbe79cabe50a7f0a90396864b5ee2c0e0f8d6a9353b2343c29c56e937"
         
     | 
| 
       1390 
1371 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1391 
1372 
     | 
    
         
             
             "avro-schema",
         
     | 
| 
       1392 
1373 
     | 
    
         
             
             "polars-arrow-format",
         
     | 
| 
         @@ -1397,12 +1378,12 @@ dependencies = [ 
     | 
|
| 
       1397 
1378 
     | 
    
         | 
| 
       1398 
1379 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1399 
1380 
     | 
    
         
             
            name = "polars-expr"
         
     | 
| 
       1400 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1381 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1401 
1382 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1402 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1383 
     | 
    
         
            +
            checksum = "d9c630385a56a867c410a20f30772d088f90ec3d004864562b84250b35268f97"
         
     | 
| 
       1403 
1384 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1404 
1385 
     | 
    
         
             
             "ahash",
         
     | 
| 
       1405 
     | 
    
         
            -
             "bitflags 
     | 
| 
      
 1386 
     | 
    
         
            +
             "bitflags",
         
     | 
| 
       1406 
1387 
     | 
    
         
             
             "once_cell",
         
     | 
| 
       1407 
1388 
     | 
    
         
             
             "polars-arrow",
         
     | 
| 
       1408 
1389 
     | 
    
         
             
             "polars-core",
         
     | 
| 
         @@ -1417,9 +1398,9 @@ dependencies = [ 
     | 
|
| 
       1417 
1398 
     | 
    
         | 
| 
       1418 
1399 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1419 
1400 
     | 
    
         
             
            name = "polars-io"
         
     | 
| 
       1420 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1401 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1421 
1402 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1422 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1403 
     | 
    
         
            +
            checksum = "9d7363cd14e4696a28b334a56bd11013ff49cc96064818ab3f91a126e453462d"
         
     | 
| 
       1423 
1404 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1424 
1405 
     | 
    
         
             
             "ahash",
         
     | 
| 
       1425 
1406 
     | 
    
         
             
             "async-trait",
         
     | 
| 
         @@ -1457,14 +1438,15 @@ dependencies = [ 
     | 
|
| 
       1457 
1438 
     | 
    
         | 
| 
       1458 
1439 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1459 
1440 
     | 
    
         
             
            name = "polars-json"
         
     | 
| 
       1460 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1441 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1461 
1442 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1462 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1443 
     | 
    
         
            +
            checksum = "543d7d3853f2c52dbfedee9ebf0d58c4ff3b92aadee5309150b2d14df49d6253"
         
     | 
| 
       1463 
1444 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1464 
1445 
     | 
    
         
             
             "ahash",
         
     | 
| 
       1465 
1446 
     | 
    
         
             
             "chrono",
         
     | 
| 
      
 1447 
     | 
    
         
            +
             "chrono-tz",
         
     | 
| 
       1466 
1448 
     | 
    
         
             
             "fallible-streaming-iterator",
         
     | 
| 
       1467 
     | 
    
         
            -
             "hashbrown 
     | 
| 
      
 1449 
     | 
    
         
            +
             "hashbrown",
         
     | 
| 
       1468 
1450 
     | 
    
         
             
             "indexmap",
         
     | 
| 
       1469 
1451 
     | 
    
         
             
             "itoa",
         
     | 
| 
       1470 
1452 
     | 
    
         
             
             "num-traits",
         
     | 
| 
         @@ -1478,19 +1460,21 @@ dependencies = [ 
     | 
|
| 
       1478 
1460 
     | 
    
         | 
| 
       1479 
1461 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1480 
1462 
     | 
    
         
             
            name = "polars-lazy"
         
     | 
| 
       1481 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1463 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1482 
1464 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1483 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1465 
     | 
    
         
            +
            checksum = "03877e74e42b5340ae52ded705f6d5d14563d90554c9177b01b91ed2412a56ed"
         
     | 
| 
       1484 
1466 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1485 
1467 
     | 
    
         
             
             "ahash",
         
     | 
| 
       1486 
     | 
    
         
            -
             "bitflags 
     | 
| 
      
 1468 
     | 
    
         
            +
             "bitflags",
         
     | 
| 
       1487 
1469 
     | 
    
         
             
             "glob",
         
     | 
| 
      
 1470 
     | 
    
         
            +
             "memchr",
         
     | 
| 
       1488 
1471 
     | 
    
         
             
             "once_cell",
         
     | 
| 
       1489 
1472 
     | 
    
         
             
             "polars-arrow",
         
     | 
| 
       1490 
1473 
     | 
    
         
             
             "polars-core",
         
     | 
| 
       1491 
1474 
     | 
    
         
             
             "polars-expr",
         
     | 
| 
       1492 
1475 
     | 
    
         
             
             "polars-io",
         
     | 
| 
       1493 
1476 
     | 
    
         
             
             "polars-json",
         
     | 
| 
      
 1477 
     | 
    
         
            +
             "polars-mem-engine",
         
     | 
| 
       1494 
1478 
     | 
    
         
             
             "polars-ops",
         
     | 
| 
       1495 
1479 
     | 
    
         
             
             "polars-pipe",
         
     | 
| 
       1496 
1480 
     | 
    
         
             
             "polars-plan",
         
     | 
| 
         @@ -1501,11 +1485,30 @@ dependencies = [ 
     | 
|
| 
       1501 
1485 
     | 
    
         
             
             "version_check",
         
     | 
| 
       1502 
1486 
     | 
    
         
             
            ]
         
     | 
| 
       1503 
1487 
     | 
    
         | 
| 
      
 1488 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1489 
     | 
    
         
            +
            name = "polars-mem-engine"
         
     | 
| 
      
 1490 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
      
 1491 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1492 
     | 
    
         
            +
            checksum = "dea9e17771af750c94bf959885e4b3f5b14149576c62ef3ec1c9ef5827b2a30f"
         
     | 
| 
      
 1493 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1494 
     | 
    
         
            +
             "polars-arrow",
         
     | 
| 
      
 1495 
     | 
    
         
            +
             "polars-core",
         
     | 
| 
      
 1496 
     | 
    
         
            +
             "polars-error",
         
     | 
| 
      
 1497 
     | 
    
         
            +
             "polars-expr",
         
     | 
| 
      
 1498 
     | 
    
         
            +
             "polars-io",
         
     | 
| 
      
 1499 
     | 
    
         
            +
             "polars-json",
         
     | 
| 
      
 1500 
     | 
    
         
            +
             "polars-ops",
         
     | 
| 
      
 1501 
     | 
    
         
            +
             "polars-plan",
         
     | 
| 
      
 1502 
     | 
    
         
            +
             "polars-time",
         
     | 
| 
      
 1503 
     | 
    
         
            +
             "polars-utils",
         
     | 
| 
      
 1504 
     | 
    
         
            +
             "rayon",
         
     | 
| 
      
 1505 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1506 
     | 
    
         
            +
             
     | 
| 
       1504 
1507 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1505 
1508 
     | 
    
         
             
            name = "polars-ops"
         
     | 
| 
       1506 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1509 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1507 
1510 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1508 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1511 
     | 
    
         
            +
            checksum = "6066552eb577d43b307027fb38096910b643ffb2c89a21628c7e41caf57848d0"
         
     | 
| 
       1509 
1512 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1510 
1513 
     | 
    
         
             
             "ahash",
         
     | 
| 
       1511 
1514 
     | 
    
         
             
             "aho-corasick",
         
     | 
| 
         @@ -1515,7 +1518,7 @@ dependencies = [ 
     | 
|
| 
       1515 
1518 
     | 
    
         
             
             "chrono",
         
     | 
| 
       1516 
1519 
     | 
    
         
             
             "chrono-tz",
         
     | 
| 
       1517 
1520 
     | 
    
         
             
             "either",
         
     | 
| 
       1518 
     | 
    
         
            -
             "hashbrown 
     | 
| 
      
 1521 
     | 
    
         
            +
             "hashbrown",
         
     | 
| 
       1519 
1522 
     | 
    
         
             
             "hex",
         
     | 
| 
       1520 
1523 
     | 
    
         
             
             "indexmap",
         
     | 
| 
       1521 
1524 
     | 
    
         
             
             "jsonpath_lib_polars_vendor",
         
     | 
| 
         @@ -1540,9 +1543,9 @@ dependencies = [ 
     | 
|
| 
       1540 
1543 
     | 
    
         | 
| 
       1541 
1544 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1542 
1545 
     | 
    
         
             
            name = "polars-parquet"
         
     | 
| 
       1543 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1546 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1544 
1547 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1545 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1548 
     | 
    
         
            +
            checksum = "2b35b2592a2e7ef7ce9942dc2120dc4576142626c0e661668e4c6b805042e461"
         
     | 
| 
       1546 
1549 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1547 
1550 
     | 
    
         
             
             "ahash",
         
     | 
| 
       1548 
1551 
     | 
    
         
             
             "async-stream",
         
     | 
| 
         @@ -1555,9 +1558,10 @@ dependencies = [ 
     | 
|
| 
       1555 
1558 
     | 
    
         
             
             "num-traits",
         
     | 
| 
       1556 
1559 
     | 
    
         
             
             "parquet-format-safe",
         
     | 
| 
       1557 
1560 
     | 
    
         
             
             "polars-arrow",
         
     | 
| 
      
 1561 
     | 
    
         
            +
             "polars-compute",
         
     | 
| 
       1558 
1562 
     | 
    
         
             
             "polars-error",
         
     | 
| 
       1559 
1563 
     | 
    
         
             
             "polars-utils",
         
     | 
| 
       1560 
     | 
    
         
            -
             " 
     | 
| 
      
 1564 
     | 
    
         
            +
             "serde",
         
     | 
| 
       1561 
1565 
     | 
    
         
             
             "simdutf8",
         
     | 
| 
       1562 
1566 
     | 
    
         
             
             "snap",
         
     | 
| 
       1563 
1567 
     | 
    
         
             
             "streaming-decompression",
         
     | 
| 
         @@ -1566,14 +1570,14 @@ dependencies = [ 
     | 
|
| 
       1566 
1570 
     | 
    
         | 
| 
       1567 
1571 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1568 
1572 
     | 
    
         
             
            name = "polars-pipe"
         
     | 
| 
       1569 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1573 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1570 
1574 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1571 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1575 
     | 
    
         
            +
            checksum = "021bce7768c330687d735340395a77453aa18dd70d57c184cbb302311e87c1b9"
         
     | 
| 
       1572 
1576 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1573 
1577 
     | 
    
         
             
             "crossbeam-channel",
         
     | 
| 
       1574 
1578 
     | 
    
         
             
             "crossbeam-queue",
         
     | 
| 
       1575 
1579 
     | 
    
         
             
             "enum_dispatch",
         
     | 
| 
       1576 
     | 
    
         
            -
             "hashbrown 
     | 
| 
      
 1580 
     | 
    
         
            +
             "hashbrown",
         
     | 
| 
       1577 
1581 
     | 
    
         
             
             "num-traits",
         
     | 
| 
       1578 
1582 
     | 
    
         
             
             "polars-arrow",
         
     | 
| 
       1579 
1583 
     | 
    
         
             
             "polars-compute",
         
     | 
| 
         @@ -1592,16 +1596,15 @@ dependencies = [ 
     | 
|
| 
       1592 
1596 
     | 
    
         | 
| 
       1593 
1597 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1594 
1598 
     | 
    
         
             
            name = "polars-plan"
         
     | 
| 
       1595 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1599 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1596 
1600 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1597 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1601 
     | 
    
         
            +
            checksum = "220d0d7c02d1c4375802b2813dbedcd1a184df39c43b74689e729ede8d5c2921"
         
     | 
| 
       1598 
1602 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1599 
1603 
     | 
    
         
             
             "ahash",
         
     | 
| 
       1600 
1604 
     | 
    
         
             
             "bytemuck",
         
     | 
| 
       1601 
     | 
    
         
            -
             "chrono",
         
     | 
| 
       1602 
1605 
     | 
    
         
             
             "chrono-tz",
         
     | 
| 
       1603 
1606 
     | 
    
         
             
             "either",
         
     | 
| 
       1604 
     | 
    
         
            -
             "hashbrown 
     | 
| 
      
 1607 
     | 
    
         
            +
             "hashbrown",
         
     | 
| 
       1605 
1608 
     | 
    
         
             
             "once_cell",
         
     | 
| 
       1606 
1609 
     | 
    
         
             
             "percent-encoding",
         
     | 
| 
       1607 
1610 
     | 
    
         
             
             "polars-arrow",
         
     | 
| 
         @@ -1617,15 +1620,15 @@ dependencies = [ 
     | 
|
| 
       1617 
1620 
     | 
    
         
             
             "regex",
         
     | 
| 
       1618 
1621 
     | 
    
         
             
             "serde",
         
     | 
| 
       1619 
1622 
     | 
    
         
             
             "smartstring",
         
     | 
| 
       1620 
     | 
    
         
            -
             "strum_macros 
     | 
| 
      
 1623 
     | 
    
         
            +
             "strum_macros",
         
     | 
| 
       1621 
1624 
     | 
    
         
             
             "version_check",
         
     | 
| 
       1622 
1625 
     | 
    
         
             
            ]
         
     | 
| 
       1623 
1626 
     | 
    
         | 
| 
       1624 
1627 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1625 
1628 
     | 
    
         
             
            name = "polars-row"
         
     | 
| 
       1626 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1629 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1627 
1630 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1628 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1631 
     | 
    
         
            +
            checksum = "c1d70d87a2882a64a43b431aea1329cb9a2c4100547c95c417cc426bb82408b3"
         
     | 
| 
       1629 
1632 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1630 
1633 
     | 
    
         
             
             "bytemuck",
         
     | 
| 
       1631 
1634 
     | 
    
         
             
             "polars-arrow",
         
     | 
| 
         @@ -1635,9 +1638,9 @@ dependencies = [ 
     | 
|
| 
       1635 
1638 
     | 
    
         | 
| 
       1636 
1639 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1637 
1640 
     | 
    
         
             
            name = "polars-sql"
         
     | 
| 
       1638 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1641 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1639 
1642 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1640 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1643 
     | 
    
         
            +
            checksum = "a6fc1c9b778862f09f4a347f768dfdd3d0ba9957499d306d83c7103e0fa8dc5b"
         
     | 
| 
       1641 
1644 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1642 
1645 
     | 
    
         
             
             "hex",
         
     | 
| 
       1643 
1646 
     | 
    
         
             
             "once_cell",
         
     | 
| 
         @@ -1645,7 +1648,9 @@ dependencies = [ 
     | 
|
| 
       1645 
1648 
     | 
    
         
             
             "polars-core",
         
     | 
| 
       1646 
1649 
     | 
    
         
             
             "polars-error",
         
     | 
| 
       1647 
1650 
     | 
    
         
             
             "polars-lazy",
         
     | 
| 
      
 1651 
     | 
    
         
            +
             "polars-ops",
         
     | 
| 
       1648 
1652 
     | 
    
         
             
             "polars-plan",
         
     | 
| 
      
 1653 
     | 
    
         
            +
             "polars-time",
         
     | 
| 
       1649 
1654 
     | 
    
         
             
             "rand",
         
     | 
| 
       1650 
1655 
     | 
    
         
             
             "serde",
         
     | 
| 
       1651 
1656 
     | 
    
         
             
             "serde_json",
         
     | 
| 
         @@ -1654,9 +1659,9 @@ dependencies = [ 
     | 
|
| 
       1654 
1659 
     | 
    
         | 
| 
       1655 
1660 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1656 
1661 
     | 
    
         
             
            name = "polars-time"
         
     | 
| 
       1657 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1662 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1658 
1663 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1659 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1664 
     | 
    
         
            +
            checksum = "179f98313a15c0bfdbc8cc0f1d3076d08d567485b9952d46439f94fbc3085df5"
         
     | 
| 
       1660 
1665 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1661 
1666 
     | 
    
         
             
             "atoi",
         
     | 
| 
       1662 
1667 
     | 
    
         
             
             "bytemuck",
         
     | 
| 
         @@ -1676,13 +1681,13 @@ dependencies = [ 
     | 
|
| 
       1676 
1681 
     | 
    
         | 
| 
       1677 
1682 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1678 
1683 
     | 
    
         
             
            name = "polars-utils"
         
     | 
| 
       1679 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1684 
     | 
    
         
            +
            version = "0.41.3"
         
     | 
| 
       1680 
1685 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1681 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1686 
     | 
    
         
            +
            checksum = "53e6dd89fcccb1ec1a62f752c9a9f2d482a85e9255153f46efecc617b4996d50"
         
     | 
| 
       1682 
1687 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1683 
1688 
     | 
    
         
             
             "ahash",
         
     | 
| 
       1684 
1689 
     | 
    
         
             
             "bytemuck",
         
     | 
| 
       1685 
     | 
    
         
            -
             "hashbrown 
     | 
| 
      
 1690 
     | 
    
         
            +
             "hashbrown",
         
     | 
| 
       1686 
1691 
     | 
    
         
             
             "indexmap",
         
     | 
| 
       1687 
1692 
     | 
    
         
             
             "num-traits",
         
     | 
| 
       1688 
1693 
     | 
    
         
             
             "once_cell",
         
     | 
| 
         @@ -1703,9 +1708,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 
     | 
|
| 
       1703 
1708 
     | 
    
         | 
| 
       1704 
1709 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1705 
1710 
     | 
    
         
             
            name = "proc-macro2"
         
     | 
| 
       1706 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1711 
     | 
    
         
            +
            version = "1.0.86"
         
     | 
| 
       1707 
1712 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1708 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1713 
     | 
    
         
            +
            checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
         
     | 
| 
       1709 
1714 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1710 
1715 
     | 
    
         
             
             "unicode-ident",
         
     | 
| 
       1711 
1716 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -1721,9 +1726,9 @@ dependencies = [ 
     | 
|
| 
       1721 
1726 
     | 
    
         | 
| 
       1722 
1727 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1723 
1728 
     | 
    
         
             
            name = "quote"
         
     | 
| 
       1724 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1729 
     | 
    
         
            +
            version = "1.0.36"
         
     | 
| 
       1725 
1730 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1726 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1731 
     | 
    
         
            +
            checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
         
     | 
| 
       1727 
1732 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1728 
1733 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       1729 
1734 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -1770,18 +1775,18 @@ dependencies = [ 
     | 
|
| 
       1770 
1775 
     | 
    
         | 
| 
       1771 
1776 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1772 
1777 
     | 
    
         
             
            name = "raw-cpuid"
         
     | 
| 
       1773 
     | 
    
         
            -
            version = "11.0. 
     | 
| 
      
 1778 
     | 
    
         
            +
            version = "11.0.2"
         
     | 
| 
       1774 
1779 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1775 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1780 
     | 
    
         
            +
            checksum = "e29830cbb1290e404f24c73af91c5d8d631ce7e128691e9477556b540cd01ecd"
         
     | 
| 
       1776 
1781 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1777 
     | 
    
         
            -
             "bitflags 
     | 
| 
      
 1782 
     | 
    
         
            +
             "bitflags",
         
     | 
| 
       1778 
1783 
     | 
    
         
             
            ]
         
     | 
| 
       1779 
1784 
     | 
    
         | 
| 
       1780 
1785 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1781 
1786 
     | 
    
         
             
            name = "rayon"
         
     | 
| 
       1782 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 1787 
     | 
    
         
            +
            version = "1.10.0"
         
     | 
| 
       1783 
1788 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1784 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1789 
     | 
    
         
            +
            checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
         
     | 
| 
       1785 
1790 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1786 
1791 
     | 
    
         
             
             "either",
         
     | 
| 
       1787 
1792 
     | 
    
         
             
             "rayon-core",
         
     | 
| 
         @@ -1799,18 +1804,18 @@ dependencies = [ 
     | 
|
| 
       1799 
1804 
     | 
    
         | 
| 
       1800 
1805 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1801 
1806 
     | 
    
         
             
            name = "rb-sys"
         
     | 
| 
       1802 
     | 
    
         
            -
            version = "0.9. 
     | 
| 
      
 1807 
     | 
    
         
            +
            version = "0.9.98"
         
     | 
| 
       1803 
1808 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1804 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1809 
     | 
    
         
            +
            checksum = "8914b2e6af10bd50dd7aaac8c5146872d3924d6012929b4ff504e988f6badd24"
         
     | 
| 
       1805 
1810 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1806 
1811 
     | 
    
         
             
             "rb-sys-build",
         
     | 
| 
       1807 
1812 
     | 
    
         
             
            ]
         
     | 
| 
       1808 
1813 
     | 
    
         | 
| 
       1809 
1814 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1810 
1815 
     | 
    
         
             
            name = "rb-sys-build"
         
     | 
| 
       1811 
     | 
    
         
            -
            version = "0.9. 
     | 
| 
      
 1816 
     | 
    
         
            +
            version = "0.9.98"
         
     | 
| 
       1812 
1817 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1813 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1818 
     | 
    
         
            +
            checksum = "12af68c9757d419b82d65a12b5db538990dfe9416049fea3f0ba4b9a8ca108cd"
         
     | 
| 
       1814 
1819 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1815 
1820 
     | 
    
         
             
             "bindgen",
         
     | 
| 
       1816 
1821 
     | 
    
         
             
             "lazy_static",
         
     | 
| 
         @@ -1818,7 +1823,7 @@ dependencies = [ 
     | 
|
| 
       1818 
1823 
     | 
    
         
             
             "quote",
         
     | 
| 
       1819 
1824 
     | 
    
         
             
             "regex",
         
     | 
| 
       1820 
1825 
     | 
    
         
             
             "shell-words",
         
     | 
| 
       1821 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 1826 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       1822 
1827 
     | 
    
         
             
            ]
         
     | 
| 
       1823 
1828 
     | 
    
         | 
| 
       1824 
1829 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -1844,43 +1849,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 
     | 
|
| 
       1844 
1849 
     | 
    
         
             
            checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
         
     | 
| 
       1845 
1850 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1846 
1851 
     | 
    
         
             
             "quote",
         
     | 
| 
       1847 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 1852 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       1848 
1853 
     | 
    
         
             
            ]
         
     | 
| 
       1849 
1854 
     | 
    
         | 
| 
       1850 
1855 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1851 
1856 
     | 
    
         
             
            name = "redox_syscall"
         
     | 
| 
       1852 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1857 
     | 
    
         
            +
            version = "0.5.2"
         
     | 
| 
       1853 
1858 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1854 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1859 
     | 
    
         
            +
            checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
         
     | 
| 
       1855 
1860 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1856 
     | 
    
         
            -
             "bitflags 
     | 
| 
      
 1861 
     | 
    
         
            +
             "bitflags",
         
     | 
| 
       1857 
1862 
     | 
    
         
             
            ]
         
     | 
| 
       1858 
1863 
     | 
    
         | 
| 
       1859 
1864 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1860 
1865 
     | 
    
         
             
            name = "ref-cast"
         
     | 
| 
       1861 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1866 
     | 
    
         
            +
            version = "1.0.23"
         
     | 
| 
       1862 
1867 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1863 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1868 
     | 
    
         
            +
            checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931"
         
     | 
| 
       1864 
1869 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1865 
1870 
     | 
    
         
             
             "ref-cast-impl",
         
     | 
| 
       1866 
1871 
     | 
    
         
             
            ]
         
     | 
| 
       1867 
1872 
     | 
    
         | 
| 
       1868 
1873 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1869 
1874 
     | 
    
         
             
            name = "ref-cast-impl"
         
     | 
| 
       1870 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1875 
     | 
    
         
            +
            version = "1.0.23"
         
     | 
| 
       1871 
1876 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1872 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1877 
     | 
    
         
            +
            checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
         
     | 
| 
       1873 
1878 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1874 
1879 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       1875 
1880 
     | 
    
         
             
             "quote",
         
     | 
| 
       1876 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 1881 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       1877 
1882 
     | 
    
         
             
            ]
         
     | 
| 
       1878 
1883 
     | 
    
         | 
| 
       1879 
1884 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1880 
1885 
     | 
    
         
             
            name = "regex"
         
     | 
| 
       1881 
     | 
    
         
            -
            version = "1.10. 
     | 
| 
      
 1886 
     | 
    
         
            +
            version = "1.10.5"
         
     | 
| 
       1882 
1887 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1883 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1888 
     | 
    
         
            +
            checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
         
     | 
| 
       1884 
1889 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1885 
1890 
     | 
    
         
             
             "aho-corasick",
         
     | 
| 
       1886 
1891 
     | 
    
         
             
             "memchr",
         
     | 
| 
         @@ -1890,9 +1895,9 @@ dependencies = [ 
     | 
|
| 
       1890 
1895 
     | 
    
         | 
| 
       1891 
1896 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1892 
1897 
     | 
    
         
             
            name = "regex-automata"
         
     | 
| 
       1893 
     | 
    
         
            -
            version = "0.4. 
     | 
| 
      
 1898 
     | 
    
         
            +
            version = "0.4.7"
         
     | 
| 
       1894 
1899 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1895 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1900 
     | 
    
         
            +
            checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
         
     | 
| 
       1896 
1901 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1897 
1902 
     | 
    
         
             
             "aho-corasick",
         
     | 
| 
       1898 
1903 
     | 
    
         
             
             "memchr",
         
     | 
| 
         @@ -1901,9 +1906,9 @@ dependencies = [ 
     | 
|
| 
       1901 
1906 
     | 
    
         | 
| 
       1902 
1907 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1903 
1908 
     | 
    
         
             
            name = "regex-syntax"
         
     | 
| 
       1904 
     | 
    
         
            -
            version = "0.8. 
     | 
| 
      
 1909 
     | 
    
         
            +
            version = "0.8.4"
         
     | 
| 
       1905 
1910 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1906 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1911 
     | 
    
         
            +
            checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
         
     | 
| 
       1907 
1912 
     | 
    
         | 
| 
       1908 
1913 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1909 
1914 
     | 
    
         
             
            name = "rle-decode-fast"
         
     | 
| 
         @@ -1913,9 +1918,9 @@ checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" 
     | 
|
| 
       1913 
1918 
     | 
    
         | 
| 
       1914 
1919 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1915 
1920 
     | 
    
         
             
            name = "rustc-demangle"
         
     | 
| 
       1916 
     | 
    
         
            -
            version = "0.1. 
     | 
| 
      
 1921 
     | 
    
         
            +
            version = "0.1.24"
         
     | 
| 
       1917 
1922 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1918 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1923 
     | 
    
         
            +
            checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
         
     | 
| 
       1919 
1924 
     | 
    
         | 
| 
       1920 
1925 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1921 
1926 
     | 
    
         
             
            name = "rustc-hash"
         
     | 
| 
         @@ -1925,15 +1930,15 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 
     | 
|
| 
       1925 
1930 
     | 
    
         | 
| 
       1926 
1931 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1927 
1932 
     | 
    
         
             
            name = "rustversion"
         
     | 
| 
       1928 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1933 
     | 
    
         
            +
            version = "1.0.17"
         
     | 
| 
       1929 
1934 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1930 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1935 
     | 
    
         
            +
            checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
         
     | 
| 
       1931 
1936 
     | 
    
         | 
| 
       1932 
1937 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1933 
1938 
     | 
    
         
             
            name = "ryu"
         
     | 
| 
       1934 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1939 
     | 
    
         
            +
            version = "1.0.18"
         
     | 
| 
       1935 
1940 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1936 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1941 
     | 
    
         
            +
            checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
         
     | 
| 
       1937 
1942 
     | 
    
         | 
| 
       1938 
1943 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1939 
1944 
     | 
    
         
             
            name = "scopeguard"
         
     | 
| 
         @@ -1949,29 +1954,29 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" 
     | 
|
| 
       1949 
1954 
     | 
    
         | 
| 
       1950 
1955 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1951 
1956 
     | 
    
         
             
            name = "serde"
         
     | 
| 
       1952 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1957 
     | 
    
         
            +
            version = "1.0.203"
         
     | 
| 
       1953 
1958 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1954 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1959 
     | 
    
         
            +
            checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094"
         
     | 
| 
       1955 
1960 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1956 
1961 
     | 
    
         
             
             "serde_derive",
         
     | 
| 
       1957 
1962 
     | 
    
         
             
            ]
         
     | 
| 
       1958 
1963 
     | 
    
         | 
| 
       1959 
1964 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1960 
1965 
     | 
    
         
             
            name = "serde_derive"
         
     | 
| 
       1961 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1966 
     | 
    
         
            +
            version = "1.0.203"
         
     | 
| 
       1962 
1967 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1963 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1968 
     | 
    
         
            +
            checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba"
         
     | 
| 
       1964 
1969 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1965 
1970 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       1966 
1971 
     | 
    
         
             
             "quote",
         
     | 
| 
       1967 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 1972 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       1968 
1973 
     | 
    
         
             
            ]
         
     | 
| 
       1969 
1974 
     | 
    
         | 
| 
       1970 
1975 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1971 
1976 
     | 
    
         
             
            name = "serde_json"
         
     | 
| 
       1972 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1977 
     | 
    
         
            +
            version = "1.0.117"
         
     | 
| 
       1973 
1978 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1974 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1979 
     | 
    
         
            +
            checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
         
     | 
| 
       1975 
1980 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1976 
1981 
     | 
    
         
             
             "indexmap",
         
     | 
| 
       1977 
1982 
     | 
    
         
             
             "itoa",
         
     | 
| 
         @@ -1987,15 +1992,15 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 
     | 
|
| 
       1987 
1992 
     | 
    
         | 
| 
       1988 
1993 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1989 
1994 
     | 
    
         
             
            name = "shlex"
         
     | 
| 
       1990 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 1995 
     | 
    
         
            +
            version = "1.3.0"
         
     | 
| 
       1991 
1996 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1992 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1997 
     | 
    
         
            +
            checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
         
     | 
| 
       1993 
1998 
     | 
    
         | 
| 
       1994 
1999 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1995 
2000 
     | 
    
         
             
            name = "simd-json"
         
     | 
| 
       1996 
     | 
    
         
            -
            version = "0.13. 
     | 
| 
      
 2001 
     | 
    
         
            +
            version = "0.13.10"
         
     | 
| 
       1997 
2002 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1998 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2003 
     | 
    
         
            +
            checksum = "570c430b3d902ea083097e853263ae782dfe40857d93db019a12356c8e8143fa"
         
     | 
| 
       1999 
2004 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2000 
2005 
     | 
    
         
             
             "ahash",
         
     | 
| 
       2001 
2006 
     | 
    
         
             
             "getrandom",
         
     | 
| 
         @@ -2032,9 +2037,9 @@ dependencies = [ 
     | 
|
| 
       2032 
2037 
     | 
    
         | 
| 
       2033 
2038 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2034 
2039 
     | 
    
         
             
            name = "smallvec"
         
     | 
| 
       2035 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 2040 
     | 
    
         
            +
            version = "1.13.2"
         
     | 
| 
       2036 
2041 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2037 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2042 
     | 
    
         
            +
            checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
         
     | 
| 
       2038 
2043 
     | 
    
         | 
| 
       2039 
2044 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2040 
2045 
     | 
    
         
             
            name = "smartstring"
         
     | 
| 
         @@ -2056,19 +2061,19 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b" 
     | 
|
| 
       2056 
2061 
     | 
    
         | 
| 
       2057 
2062 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2058 
2063 
     | 
    
         
             
            name = "socket2"
         
     | 
| 
       2059 
     | 
    
         
            -
            version = "0.5. 
     | 
| 
      
 2064 
     | 
    
         
            +
            version = "0.5.7"
         
     | 
| 
       2060 
2065 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2061 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2066 
     | 
    
         
            +
            checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
         
     | 
| 
       2062 
2067 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2063 
2068 
     | 
    
         
             
             "libc",
         
     | 
| 
       2064 
     | 
    
         
            -
             "windows-sys 0. 
     | 
| 
      
 2069 
     | 
    
         
            +
             "windows-sys 0.52.0",
         
     | 
| 
       2065 
2070 
     | 
    
         
             
            ]
         
     | 
| 
       2066 
2071 
     | 
    
         | 
| 
       2067 
2072 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2068 
2073 
     | 
    
         
             
            name = "sqlparser"
         
     | 
| 
       2069 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 2074 
     | 
    
         
            +
            version = "0.47.0"
         
     | 
| 
       2070 
2075 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2071 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2076 
     | 
    
         
            +
            checksum = "295e9930cd7a97e58ca2a070541a3ca502b17f5d1fa7157376d0fabd85324f25"
         
     | 
| 
       2072 
2077 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2073 
2078 
     | 
    
         
             
             "log",
         
     | 
| 
       2074 
2079 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -2115,34 +2120,21 @@ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82" 
     | 
|
| 
       2115 
2120 
     | 
    
         | 
| 
       2116 
2121 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2117 
2122 
     | 
    
         
             
            name = "strum"
         
     | 
| 
       2118 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 2123 
     | 
    
         
            +
            version = "0.26.2"
         
     | 
| 
       2119 
2124 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2120 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2125 
     | 
    
         
            +
            checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
         
     | 
| 
       2121 
2126 
     | 
    
         | 
| 
       2122 
2127 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2123 
2128 
     | 
    
         
             
            name = "strum_macros"
         
     | 
| 
       2124 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 2129 
     | 
    
         
            +
            version = "0.26.4"
         
     | 
| 
       2125 
2130 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2126 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2131 
     | 
    
         
            +
            checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
         
     | 
| 
       2127 
2132 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2128 
2133 
     | 
    
         
             
             "heck",
         
     | 
| 
       2129 
2134 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       2130 
2135 
     | 
    
         
             
             "quote",
         
     | 
| 
       2131 
2136 
     | 
    
         
             
             "rustversion",
         
     | 
| 
       2132 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
       2133 
     | 
    
         
            -
            ]
         
     | 
| 
       2134 
     | 
    
         
            -
             
     | 
| 
       2135 
     | 
    
         
            -
            [[package]]
         
     | 
| 
       2136 
     | 
    
         
            -
            name = "strum_macros"
         
     | 
| 
       2137 
     | 
    
         
            -
            version = "0.26.2"
         
     | 
| 
       2138 
     | 
    
         
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2139 
     | 
    
         
            -
            checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
         
     | 
| 
       2140 
     | 
    
         
            -
            dependencies = [
         
     | 
| 
       2141 
     | 
    
         
            -
             "heck",
         
     | 
| 
       2142 
     | 
    
         
            -
             "proc-macro2",
         
     | 
| 
       2143 
     | 
    
         
            -
             "quote",
         
     | 
| 
       2144 
     | 
    
         
            -
             "rustversion",
         
     | 
| 
       2145 
     | 
    
         
            -
             "syn 2.0.46",
         
     | 
| 
      
 2137 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       2146 
2138 
     | 
    
         
             
            ]
         
     | 
| 
       2147 
2139 
     | 
    
         | 
| 
       2148 
2140 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -2158,9 +2150,9 @@ dependencies = [ 
     | 
|
| 
       2158 
2150 
     | 
    
         | 
| 
       2159 
2151 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2160 
2152 
     | 
    
         
             
            name = "syn"
         
     | 
| 
       2161 
     | 
    
         
            -
            version = "2.0. 
     | 
| 
      
 2153 
     | 
    
         
            +
            version = "2.0.67"
         
     | 
| 
       2162 
2154 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2163 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2155 
     | 
    
         
            +
            checksum = "ff8655ed1d86f3af4ee3fd3263786bc14245ad17c4c7e85ba7187fb3ae028c90"
         
     | 
| 
       2164 
2156 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2165 
2157 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       2166 
2158 
     | 
    
         
             
             "quote",
         
     | 
| 
         @@ -2169,9 +2161,9 @@ dependencies = [ 
     | 
|
| 
       2169 
2161 
     | 
    
         | 
| 
       2170 
2162 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2171 
2163 
     | 
    
         
             
            name = "sysinfo"
         
     | 
| 
       2172 
     | 
    
         
            -
            version = "0.30. 
     | 
| 
      
 2164 
     | 
    
         
            +
            version = "0.30.12"
         
     | 
| 
       2173 
2165 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2174 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2166 
     | 
    
         
            +
            checksum = "732ffa00f53e6b2af46208fba5718d9662a421049204e156328b66791ffa15ae"
         
     | 
| 
       2175 
2167 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2176 
2168 
     | 
    
         
             
             "cfg-if",
         
     | 
| 
       2177 
2169 
     | 
    
         
             
             "core-foundation-sys",
         
     | 
| 
         @@ -2183,35 +2175,35 @@ dependencies = [ 
     | 
|
| 
       2183 
2175 
     | 
    
         | 
| 
       2184 
2176 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2185 
2177 
     | 
    
         
             
            name = "target-features"
         
     | 
| 
       2186 
     | 
    
         
            -
            version = "0.1. 
     | 
| 
      
 2178 
     | 
    
         
            +
            version = "0.1.6"
         
     | 
| 
       2187 
2179 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2188 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2180 
     | 
    
         
            +
            checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
         
     | 
| 
       2189 
2181 
     | 
    
         | 
| 
       2190 
2182 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2191 
2183 
     | 
    
         
             
            name = "thiserror"
         
     | 
| 
       2192 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 2184 
     | 
    
         
            +
            version = "1.0.61"
         
     | 
| 
       2193 
2185 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2194 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2186 
     | 
    
         
            +
            checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
         
     | 
| 
       2195 
2187 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2196 
2188 
     | 
    
         
             
             "thiserror-impl",
         
     | 
| 
       2197 
2189 
     | 
    
         
             
            ]
         
     | 
| 
       2198 
2190 
     | 
    
         | 
| 
       2199 
2191 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2200 
2192 
     | 
    
         
             
            name = "thiserror-impl"
         
     | 
| 
       2201 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 2193 
     | 
    
         
            +
            version = "1.0.61"
         
     | 
| 
       2202 
2194 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2203 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2195 
     | 
    
         
            +
            checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
         
     | 
| 
       2204 
2196 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2205 
2197 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       2206 
2198 
     | 
    
         
             
             "quote",
         
     | 
| 
       2207 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 2199 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       2208 
2200 
     | 
    
         
             
            ]
         
     | 
| 
       2209 
2201 
     | 
    
         | 
| 
       2210 
2202 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2211 
2203 
     | 
    
         
             
            name = "tokio"
         
     | 
| 
       2212 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 2204 
     | 
    
         
            +
            version = "1.38.0"
         
     | 
| 
       2213 
2205 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2214 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2206 
     | 
    
         
            +
            checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a"
         
     | 
| 
       2215 
2207 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2216 
2208 
     | 
    
         
             
             "backtrace",
         
     | 
| 
       2217 
2209 
     | 
    
         
             
             "bytes",
         
     | 
| 
         @@ -2225,9 +2217,9 @@ dependencies = [ 
     | 
|
| 
       2225 
2217 
     | 
    
         | 
| 
       2226 
2218 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2227 
2219 
     | 
    
         
             
            name = "tokio-util"
         
     | 
| 
       2228 
     | 
    
         
            -
            version = "0.7. 
     | 
| 
      
 2220 
     | 
    
         
            +
            version = "0.7.11"
         
     | 
| 
       2229 
2221 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2230 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2222 
     | 
    
         
            +
            checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
         
     | 
| 
       2231 
2223 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2232 
2224 
     | 
    
         
             
             "bytes",
         
     | 
| 
       2233 
2225 
     | 
    
         
             
             "futures-core",
         
     | 
| 
         @@ -2244,39 +2236,39 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 
     | 
|
| 
       2244 
2236 
     | 
    
         | 
| 
       2245 
2237 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2246 
2238 
     | 
    
         
             
            name = "unicode-reverse"
         
     | 
| 
       2247 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 2239 
     | 
    
         
            +
            version = "1.0.9"
         
     | 
| 
       2248 
2240 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2249 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2241 
     | 
    
         
            +
            checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76"
         
     | 
| 
       2250 
2242 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2251 
2243 
     | 
    
         
             
             "unicode-segmentation",
         
     | 
| 
       2252 
2244 
     | 
    
         
             
            ]
         
     | 
| 
       2253 
2245 
     | 
    
         | 
| 
       2254 
2246 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2255 
2247 
     | 
    
         
             
            name = "unicode-segmentation"
         
     | 
| 
       2256 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 2248 
     | 
    
         
            +
            version = "1.11.0"
         
     | 
| 
       2257 
2249 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2258 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2250 
     | 
    
         
            +
            checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
         
     | 
| 
       2259 
2251 
     | 
    
         | 
| 
       2260 
2252 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2261 
2253 
     | 
    
         
             
            name = "unicode-width"
         
     | 
| 
       2262 
     | 
    
         
            -
            version = "0.1. 
     | 
| 
      
 2254 
     | 
    
         
            +
            version = "0.1.13"
         
     | 
| 
       2263 
2255 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2264 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2256 
     | 
    
         
            +
            checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
         
     | 
| 
       2265 
2257 
     | 
    
         | 
| 
       2266 
2258 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2267 
2259 
     | 
    
         
             
            name = "uuid"
         
     | 
| 
       2268 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 2260 
     | 
    
         
            +
            version = "1.8.0"
         
     | 
| 
       2269 
2261 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2270 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2262 
     | 
    
         
            +
            checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
         
     | 
| 
       2271 
2263 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2272 
2264 
     | 
    
         
             
             "getrandom",
         
     | 
| 
       2273 
2265 
     | 
    
         
             
            ]
         
     | 
| 
       2274 
2266 
     | 
    
         | 
| 
       2275 
2267 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2276 
2268 
     | 
    
         
             
            name = "value-trait"
         
     | 
| 
       2277 
     | 
    
         
            -
            version = "0.8. 
     | 
| 
      
 2269 
     | 
    
         
            +
            version = "0.8.1"
         
     | 
| 
       2278 
2270 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2279 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2271 
     | 
    
         
            +
            checksum = "dad8db98c1e677797df21ba03fca7d3bf9bec3ca38db930954e4fe6e1ea27eb4"
         
     | 
| 
       2280 
2272 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2281 
2273 
     | 
    
         
             
             "float-cmp",
         
     | 
| 
       2282 
2274 
     | 
    
         
             
             "halfbrown",
         
     | 
| 
         @@ -2298,9 +2290,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 
     | 
|
| 
       2298 
2290 
     | 
    
         | 
| 
       2299 
2291 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2300 
2292 
     | 
    
         
             
            name = "wasm-bindgen"
         
     | 
| 
       2301 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 2293 
     | 
    
         
            +
            version = "0.2.92"
         
     | 
| 
       2302 
2294 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2303 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2295 
     | 
    
         
            +
            checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
         
     | 
| 
       2304 
2296 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2305 
2297 
     | 
    
         
             
             "cfg-if",
         
     | 
| 
       2306 
2298 
     | 
    
         
             
             "wasm-bindgen-macro",
         
     | 
| 
         @@ -2308,24 +2300,24 @@ dependencies = [ 
     | 
|
| 
       2308 
2300 
     | 
    
         | 
| 
       2309 
2301 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2310 
2302 
     | 
    
         
             
            name = "wasm-bindgen-backend"
         
     | 
| 
       2311 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 2303 
     | 
    
         
            +
            version = "0.2.92"
         
     | 
| 
       2312 
2304 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2313 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2305 
     | 
    
         
            +
            checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
         
     | 
| 
       2314 
2306 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2315 
2307 
     | 
    
         
             
             "bumpalo",
         
     | 
| 
       2316 
2308 
     | 
    
         
             
             "log",
         
     | 
| 
       2317 
2309 
     | 
    
         
             
             "once_cell",
         
     | 
| 
       2318 
2310 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       2319 
2311 
     | 
    
         
             
             "quote",
         
     | 
| 
       2320 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 2312 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       2321 
2313 
     | 
    
         
             
             "wasm-bindgen-shared",
         
     | 
| 
       2322 
2314 
     | 
    
         
             
            ]
         
     | 
| 
       2323 
2315 
     | 
    
         | 
| 
       2324 
2316 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2325 
2317 
     | 
    
         
             
            name = "wasm-bindgen-macro"
         
     | 
| 
       2326 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 2318 
     | 
    
         
            +
            version = "0.2.92"
         
     | 
| 
       2327 
2319 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2328 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2320 
     | 
    
         
            +
            checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
         
     | 
| 
       2329 
2321 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2330 
2322 
     | 
    
         
             
             "quote",
         
     | 
| 
       2331 
2323 
     | 
    
         
             
             "wasm-bindgen-macro-support",
         
     | 
| 
         @@ -2333,22 +2325,22 @@ dependencies = [ 
     | 
|
| 
       2333 
2325 
     | 
    
         | 
| 
       2334 
2326 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2335 
2327 
     | 
    
         
             
            name = "wasm-bindgen-macro-support"
         
     | 
| 
       2336 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 2328 
     | 
    
         
            +
            version = "0.2.92"
         
     | 
| 
       2337 
2329 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2338 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2330 
     | 
    
         
            +
            checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
         
     | 
| 
       2339 
2331 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2340 
2332 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       2341 
2333 
     | 
    
         
             
             "quote",
         
     | 
| 
       2342 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 2334 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       2343 
2335 
     | 
    
         
             
             "wasm-bindgen-backend",
         
     | 
| 
       2344 
2336 
     | 
    
         
             
             "wasm-bindgen-shared",
         
     | 
| 
       2345 
2337 
     | 
    
         
             
            ]
         
     | 
| 
       2346 
2338 
     | 
    
         | 
| 
       2347 
2339 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2348 
2340 
     | 
    
         
             
            name = "wasm-bindgen-shared"
         
     | 
| 
       2349 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 2341 
     | 
    
         
            +
            version = "0.2.92"
         
     | 
| 
       2350 
2342 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2351 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2343 
     | 
    
         
            +
            checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
         
     | 
| 
       2352 
2344 
     | 
    
         | 
| 
       2353 
2345 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2354 
2346 
     | 
    
         
             
            name = "winapi"
         
     | 
| 
         @@ -2379,7 +2371,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 
     | 
|
| 
       2379 
2371 
     | 
    
         
             
            checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
         
     | 
| 
       2380 
2372 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2381 
2373 
     | 
    
         
             
             "windows-core",
         
     | 
| 
       2382 
     | 
    
         
            -
             "windows-targets 0.52. 
     | 
| 
      
 2374 
     | 
    
         
            +
             "windows-targets 0.52.5",
         
     | 
| 
       2383 
2375 
     | 
    
         
             
            ]
         
     | 
| 
       2384 
2376 
     | 
    
         | 
| 
       2385 
2377 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -2388,7 +2380,7 @@ version = "0.52.0" 
     | 
|
| 
       2388 
2380 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2389 
2381 
     | 
    
         
             
            checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
         
     | 
| 
       2390 
2382 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2391 
     | 
    
         
            -
             "windows-targets 0.52. 
     | 
| 
      
 2383 
     | 
    
         
            +
             "windows-targets 0.52.5",
         
     | 
| 
       2392 
2384 
     | 
    
         
             
            ]
         
     | 
| 
       2393 
2385 
     | 
    
         | 
| 
       2394 
2386 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -2406,7 +2398,7 @@ version = "0.52.0" 
     | 
|
| 
       2406 
2398 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2407 
2399 
     | 
    
         
             
            checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
         
     | 
| 
       2408 
2400 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2409 
     | 
    
         
            -
             "windows-targets 0.52. 
     | 
| 
      
 2401 
     | 
    
         
            +
             "windows-targets 0.52.5",
         
     | 
| 
       2410 
2402 
     | 
    
         
             
            ]
         
     | 
| 
       2411 
2403 
     | 
    
         | 
| 
       2412 
2404 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -2426,17 +2418,18 @@ dependencies = [ 
     | 
|
| 
       2426 
2418 
     | 
    
         | 
| 
       2427 
2419 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2428 
2420 
     | 
    
         
             
            name = "windows-targets"
         
     | 
| 
       2429 
     | 
    
         
            -
            version = "0.52. 
     | 
| 
      
 2421 
     | 
    
         
            +
            version = "0.52.5"
         
     | 
| 
       2430 
2422 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2431 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2423 
     | 
    
         
            +
            checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
         
     | 
| 
       2432 
2424 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2433 
     | 
    
         
            -
             "windows_aarch64_gnullvm 0.52. 
     | 
| 
       2434 
     | 
    
         
            -
             "windows_aarch64_msvc 0.52. 
     | 
| 
       2435 
     | 
    
         
            -
             "windows_i686_gnu 0.52. 
     | 
| 
       2436 
     | 
    
         
            -
             " 
     | 
| 
       2437 
     | 
    
         
            -
             " 
     | 
| 
       2438 
     | 
    
         
            -
             " 
     | 
| 
       2439 
     | 
    
         
            -
             " 
     | 
| 
      
 2425 
     | 
    
         
            +
             "windows_aarch64_gnullvm 0.52.5",
         
     | 
| 
      
 2426 
     | 
    
         
            +
             "windows_aarch64_msvc 0.52.5",
         
     | 
| 
      
 2427 
     | 
    
         
            +
             "windows_i686_gnu 0.52.5",
         
     | 
| 
      
 2428 
     | 
    
         
            +
             "windows_i686_gnullvm",
         
     | 
| 
      
 2429 
     | 
    
         
            +
             "windows_i686_msvc 0.52.5",
         
     | 
| 
      
 2430 
     | 
    
         
            +
             "windows_x86_64_gnu 0.52.5",
         
     | 
| 
      
 2431 
     | 
    
         
            +
             "windows_x86_64_gnullvm 0.52.5",
         
     | 
| 
      
 2432 
     | 
    
         
            +
             "windows_x86_64_msvc 0.52.5",
         
     | 
| 
       2440 
2433 
     | 
    
         
             
            ]
         
     | 
| 
       2441 
2434 
     | 
    
         | 
| 
       2442 
2435 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -2447,9 +2440,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 
     | 
|
| 
       2447 
2440 
     | 
    
         | 
| 
       2448 
2441 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2449 
2442 
     | 
    
         
             
            name = "windows_aarch64_gnullvm"
         
     | 
| 
       2450 
     | 
    
         
            -
            version = "0.52. 
     | 
| 
      
 2443 
     | 
    
         
            +
            version = "0.52.5"
         
     | 
| 
       2451 
2444 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2452 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2445 
     | 
    
         
            +
            checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
         
     | 
| 
       2453 
2446 
     | 
    
         | 
| 
       2454 
2447 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2455 
2448 
     | 
    
         
             
            name = "windows_aarch64_msvc"
         
     | 
| 
         @@ -2459,9 +2452,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 
     | 
|
| 
       2459 
2452 
     | 
    
         | 
| 
       2460 
2453 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2461 
2454 
     | 
    
         
             
            name = "windows_aarch64_msvc"
         
     | 
| 
       2462 
     | 
    
         
            -
            version = "0.52. 
     | 
| 
      
 2455 
     | 
    
         
            +
            version = "0.52.5"
         
     | 
| 
       2463 
2456 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2464 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2457 
     | 
    
         
            +
            checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
         
     | 
| 
       2465 
2458 
     | 
    
         | 
| 
       2466 
2459 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2467 
2460 
     | 
    
         
             
            name = "windows_i686_gnu"
         
     | 
| 
         @@ -2471,9 +2464,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 
     | 
|
| 
       2471 
2464 
     | 
    
         | 
| 
       2472 
2465 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2473 
2466 
     | 
    
         
             
            name = "windows_i686_gnu"
         
     | 
| 
       2474 
     | 
    
         
            -
            version = "0.52. 
     | 
| 
      
 2467 
     | 
    
         
            +
            version = "0.52.5"
         
     | 
| 
       2475 
2468 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2476 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2469 
     | 
    
         
            +
            checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
         
     | 
| 
      
 2470 
     | 
    
         
            +
             
     | 
| 
      
 2471 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 2472 
     | 
    
         
            +
            name = "windows_i686_gnullvm"
         
     | 
| 
      
 2473 
     | 
    
         
            +
            version = "0.52.5"
         
     | 
| 
      
 2474 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 2475 
     | 
    
         
            +
            checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
         
     | 
| 
       2477 
2476 
     | 
    
         | 
| 
       2478 
2477 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2479 
2478 
     | 
    
         
             
            name = "windows_i686_msvc"
         
     | 
| 
         @@ -2483,9 +2482,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 
     | 
|
| 
       2483 
2482 
     | 
    
         | 
| 
       2484 
2483 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2485 
2484 
     | 
    
         
             
            name = "windows_i686_msvc"
         
     | 
| 
       2486 
     | 
    
         
            -
            version = "0.52. 
     | 
| 
      
 2485 
     | 
    
         
            +
            version = "0.52.5"
         
     | 
| 
       2487 
2486 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2488 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2487 
     | 
    
         
            +
            checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
         
     | 
| 
       2489 
2488 
     | 
    
         | 
| 
       2490 
2489 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2491 
2490 
     | 
    
         
             
            name = "windows_x86_64_gnu"
         
     | 
| 
         @@ -2495,9 +2494,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 
     | 
|
| 
       2495 
2494 
     | 
    
         | 
| 
       2496 
2495 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2497 
2496 
     | 
    
         
             
            name = "windows_x86_64_gnu"
         
     | 
| 
       2498 
     | 
    
         
            -
            version = "0.52. 
     | 
| 
      
 2497 
     | 
    
         
            +
            version = "0.52.5"
         
     | 
| 
       2499 
2498 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2500 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2499 
     | 
    
         
            +
            checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
         
     | 
| 
       2501 
2500 
     | 
    
         | 
| 
       2502 
2501 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2503 
2502 
     | 
    
         
             
            name = "windows_x86_64_gnullvm"
         
     | 
| 
         @@ -2507,9 +2506,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 
     | 
|
| 
       2507 
2506 
     | 
    
         | 
| 
       2508 
2507 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2509 
2508 
     | 
    
         
             
            name = "windows_x86_64_gnullvm"
         
     | 
| 
       2510 
     | 
    
         
            -
            version = "0.52. 
     | 
| 
      
 2509 
     | 
    
         
            +
            version = "0.52.5"
         
     | 
| 
       2511 
2510 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2512 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2511 
     | 
    
         
            +
            checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
         
     | 
| 
       2513 
2512 
     | 
    
         | 
| 
       2514 
2513 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2515 
2514 
     | 
    
         
             
            name = "windows_x86_64_msvc"
         
     | 
| 
         @@ -2519,59 +2518,59 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 
     | 
|
| 
       2519 
2518 
     | 
    
         | 
| 
       2520 
2519 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2521 
2520 
     | 
    
         
             
            name = "windows_x86_64_msvc"
         
     | 
| 
       2522 
     | 
    
         
            -
            version = "0.52. 
     | 
| 
      
 2521 
     | 
    
         
            +
            version = "0.52.5"
         
     | 
| 
       2523 
2522 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2524 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2523 
     | 
    
         
            +
            checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
         
     | 
| 
       2525 
2524 
     | 
    
         | 
| 
       2526 
2525 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2527 
2526 
     | 
    
         
             
            name = "xxhash-rust"
         
     | 
| 
       2528 
     | 
    
         
            -
            version = "0.8. 
     | 
| 
      
 2527 
     | 
    
         
            +
            version = "0.8.10"
         
     | 
| 
       2529 
2528 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2530 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2529 
     | 
    
         
            +
            checksum = "927da81e25be1e1a2901d59b81b37dd2efd1fc9c9345a55007f09bf5a2d3ee03"
         
     | 
| 
       2531 
2530 
     | 
    
         | 
| 
       2532 
2531 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2533 
2532 
     | 
    
         
             
            name = "zerocopy"
         
     | 
| 
       2534 
     | 
    
         
            -
            version = "0.7. 
     | 
| 
      
 2533 
     | 
    
         
            +
            version = "0.7.34"
         
     | 
| 
       2535 
2534 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2536 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2535 
     | 
    
         
            +
            checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087"
         
     | 
| 
       2537 
2536 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2538 
2537 
     | 
    
         
             
             "zerocopy-derive",
         
     | 
| 
       2539 
2538 
     | 
    
         
             
            ]
         
     | 
| 
       2540 
2539 
     | 
    
         | 
| 
       2541 
2540 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2542 
2541 
     | 
    
         
             
            name = "zerocopy-derive"
         
     | 
| 
       2543 
     | 
    
         
            -
            version = "0.7. 
     | 
| 
      
 2542 
     | 
    
         
            +
            version = "0.7.34"
         
     | 
| 
       2544 
2543 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2545 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2544 
     | 
    
         
            +
            checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b"
         
     | 
| 
       2546 
2545 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2547 
2546 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       2548 
2547 
     | 
    
         
             
             "quote",
         
     | 
| 
       2549 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 2548 
     | 
    
         
            +
             "syn 2.0.67",
         
     | 
| 
       2550 
2549 
     | 
    
         
             
            ]
         
     | 
| 
       2551 
2550 
     | 
    
         | 
| 
       2552 
2551 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2553 
2552 
     | 
    
         
             
            name = "zstd"
         
     | 
| 
       2554 
     | 
    
         
            -
            version = "0.13. 
     | 
| 
      
 2553 
     | 
    
         
            +
            version = "0.13.1"
         
     | 
| 
       2555 
2554 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2556 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2555 
     | 
    
         
            +
            checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a"
         
     | 
| 
       2557 
2556 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2558 
2557 
     | 
    
         
             
             "zstd-safe",
         
     | 
| 
       2559 
2558 
     | 
    
         
             
            ]
         
     | 
| 
       2560 
2559 
     | 
    
         | 
| 
       2561 
2560 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2562 
2561 
     | 
    
         
             
            name = "zstd-safe"
         
     | 
| 
       2563 
     | 
    
         
            -
            version = "7. 
     | 
| 
      
 2562 
     | 
    
         
            +
            version = "7.1.0"
         
     | 
| 
       2564 
2563 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2565 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2564 
     | 
    
         
            +
            checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a"
         
     | 
| 
       2566 
2565 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2567 
2566 
     | 
    
         
             
             "zstd-sys",
         
     | 
| 
       2568 
2567 
     | 
    
         
             
            ]
         
     | 
| 
       2569 
2568 
     | 
    
         | 
| 
       2570 
2569 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2571 
2570 
     | 
    
         
             
            name = "zstd-sys"
         
     | 
| 
       2572 
     | 
    
         
            -
            version = "2.0. 
     | 
| 
      
 2571 
     | 
    
         
            +
            version = "2.0.11+zstd.1.5.6"
         
     | 
| 
       2573 
2572 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2574 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2573 
     | 
    
         
            +
            checksum = "75652c55c0b6f3e6f12eb786fe1bc960396bf05a1eb3bf1f3691c3610ac2e6d4"
         
     | 
| 
       2575 
2574 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2576 
2575 
     | 
    
         
             
             "cc",
         
     | 
| 
       2577 
2576 
     | 
    
         
             
             "pkg-config",
         
     |