python-dateutil-rs 0.1.4__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/Cargo.lock +100 -64
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/Cargo.toml +1 -1
- python_dateutil_rs-0.1.6/PKG-INFO +281 -0
- python_dateutil_rs-0.1.6/README.md +258 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/benches/benchmarks.rs +105 -13
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/error.rs +2 -0
- python_dateutil_rs-0.1.6/crates/dateutil-core/src/parser/compact.rs +187 -0
- python_dateutil_rs-0.1.6/crates/dateutil-core/src/parser/hms.rs +118 -0
- python_dateutil_rs-0.1.6/crates/dateutil-core/src/parser/isoparser.rs +750 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/parser/parserinfo.rs +153 -53
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/parser.rs +752 -331
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/rrule/iter.rs +79 -30
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/rrule/parse.rs +24 -24
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/rrule/set.rs +15 -12
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/rrule.rs +177 -121
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/tz/file.rs +50 -27
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/tz/local.rs +50 -10
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/tz.rs +24 -3
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-py/Cargo.toml +1 -1
- python_dateutil_rs-0.1.6/crates/dateutil-py/src/py/parser.rs +581 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-py/src/py/relativedelta.rs +117 -36
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-py/src/py/rrule.rs +45 -39
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-py/src/py/tz.rs +120 -48
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/pyproject.toml +22 -8
- python_dateutil_rs-0.1.6/python/dateutil/__init__.py +114 -0
- {python_dateutil_rs-0.1.4/python/dateutil_rs → python_dateutil_rs-0.1.6/python/dateutil}/_native.pyi +43 -17
- {python_dateutil_rs-0.1.4/python/dateutil_rs → python_dateutil_rs-0.1.6/python/dateutil}/easter.py +2 -2
- python_dateutil_rs-0.1.6/python/dateutil/parser.py +37 -0
- python_dateutil_rs-0.1.6/python/dateutil/relativedelta.py +5 -0
- {python_dateutil_rs-0.1.4/python/dateutil_rs → python_dateutil_rs-0.1.6/python/dateutil}/rrule.py +16 -2
- python_dateutil_rs-0.1.6/python/dateutil/tz.py +114 -0
- python_dateutil_rs-0.1.6/python/dateutil/utils.py +71 -0
- python_dateutil_rs-0.1.6/python/dateutil/zoneinfo/__init__.py +62 -0
- python_dateutil_rs-0.1.4/PKG-INFO +0 -223
- python_dateutil_rs-0.1.4/README.md +0 -200
- python_dateutil_rs-0.1.4/crates/dateutil-core/src/parser/isoparser.rs +0 -622
- python_dateutil_rs-0.1.4/crates/dateutil-py/src/py/parser.rs +0 -334
- python_dateutil_rs-0.1.4/python/dateutil_rs/__init__.py +0 -77
- python_dateutil_rs-0.1.4/python/dateutil_rs/parser.py +0 -18
- python_dateutil_rs-0.1.4/python/dateutil_rs/relativedelta.py +0 -5
- python_dateutil_rs-0.1.4/python/dateutil_rs/tz.py +0 -23
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/LICENSE +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/CLAUDE.md +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/Cargo.toml +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/README.md +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/common.rs +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/easter.rs +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/lib.rs +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/parser/tokenizer.rs +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/relativedelta.rs +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/tz/offset.rs +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-core/src/tz/utc.rs +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-py/src/lib.rs +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-py/src/py/common.rs +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-py/src/py/conv.rs +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-py/src/py/easter.rs +0 -0
- {python_dateutil_rs-0.1.4 → python_dateutil_rs-0.1.6}/crates/dateutil-py/src/py.rs +0 -0
- {python_dateutil_rs-0.1.4/python/dateutil_rs → python_dateutil_rs-0.1.6/python/dateutil}/py.typed +0 -0
|
@@ -43,21 +43,21 @@ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
|
43
43
|
|
|
44
44
|
[[package]]
|
|
45
45
|
name = "autocfg"
|
|
46
|
-
version = "1.5.
|
|
46
|
+
version = "1.5.1"
|
|
47
47
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
-
checksum = "
|
|
48
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
49
49
|
|
|
50
50
|
[[package]]
|
|
51
51
|
name = "bitflags"
|
|
52
|
-
version = "2.
|
|
52
|
+
version = "2.13.0"
|
|
53
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
-
checksum = "
|
|
54
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
55
55
|
|
|
56
56
|
[[package]]
|
|
57
57
|
name = "bumpalo"
|
|
58
|
-
version = "3.20.
|
|
58
|
+
version = "3.20.3"
|
|
59
59
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
-
checksum = "
|
|
60
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
61
61
|
|
|
62
62
|
[[package]]
|
|
63
63
|
name = "cast"
|
|
@@ -67,9 +67,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
|
67
67
|
|
|
68
68
|
[[package]]
|
|
69
69
|
name = "cc"
|
|
70
|
-
version = "1.2.
|
|
70
|
+
version = "1.2.64"
|
|
71
71
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
-
checksum = "
|
|
72
|
+
checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
|
|
73
73
|
dependencies = [
|
|
74
74
|
"find-msvc-tools",
|
|
75
75
|
"shlex",
|
|
@@ -83,9 +83,9 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
83
83
|
|
|
84
84
|
[[package]]
|
|
85
85
|
name = "chrono"
|
|
86
|
-
version = "0.4.
|
|
86
|
+
version = "0.4.45"
|
|
87
87
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
-
checksum = "
|
|
88
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
89
89
|
dependencies = [
|
|
90
90
|
"iana-time-zone",
|
|
91
91
|
"js-sys",
|
|
@@ -123,9 +123,9 @@ dependencies = [
|
|
|
123
123
|
|
|
124
124
|
[[package]]
|
|
125
125
|
name = "clap"
|
|
126
|
-
version = "4.6.
|
|
126
|
+
version = "4.6.1"
|
|
127
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
-
checksum = "
|
|
128
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
129
129
|
dependencies = [
|
|
130
130
|
"clap_builder",
|
|
131
131
|
]
|
|
@@ -220,7 +220,7 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
|
220
220
|
|
|
221
221
|
[[package]]
|
|
222
222
|
name = "dateutil"
|
|
223
|
-
version = "0.1.
|
|
223
|
+
version = "0.1.6"
|
|
224
224
|
dependencies = [
|
|
225
225
|
"bitflags",
|
|
226
226
|
"chrono",
|
|
@@ -234,7 +234,7 @@ dependencies = [
|
|
|
234
234
|
|
|
235
235
|
[[package]]
|
|
236
236
|
name = "dateutil-py"
|
|
237
|
-
version = "0.1.
|
|
237
|
+
version = "0.1.6"
|
|
238
238
|
dependencies = [
|
|
239
239
|
"chrono",
|
|
240
240
|
"dateutil",
|
|
@@ -243,9 +243,9 @@ dependencies = [
|
|
|
243
243
|
|
|
244
244
|
[[package]]
|
|
245
245
|
name = "either"
|
|
246
|
-
version = "1.
|
|
246
|
+
version = "1.16.0"
|
|
247
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
-
checksum = "
|
|
248
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
249
249
|
|
|
250
250
|
[[package]]
|
|
251
251
|
name = "fastrand"
|
|
@@ -259,6 +259,30 @@ version = "0.1.9"
|
|
|
259
259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
260
|
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
261
261
|
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "futures-core"
|
|
264
|
+
version = "0.3.32"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "futures-task"
|
|
270
|
+
version = "0.3.32"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "futures-util"
|
|
276
|
+
version = "0.3.32"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"futures-core",
|
|
281
|
+
"futures-task",
|
|
282
|
+
"pin-project-lite",
|
|
283
|
+
"slab",
|
|
284
|
+
]
|
|
285
|
+
|
|
262
286
|
[[package]]
|
|
263
287
|
name = "half"
|
|
264
288
|
version = "2.7.1"
|
|
@@ -317,31 +341,32 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
|
317
341
|
|
|
318
342
|
[[package]]
|
|
319
343
|
name = "js-sys"
|
|
320
|
-
version = "0.3.
|
|
344
|
+
version = "0.3.102"
|
|
321
345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
-
checksum = "
|
|
346
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
323
347
|
dependencies = [
|
|
324
|
-
"
|
|
348
|
+
"cfg-if",
|
|
349
|
+
"futures-util",
|
|
325
350
|
"wasm-bindgen",
|
|
326
351
|
]
|
|
327
352
|
|
|
328
353
|
[[package]]
|
|
329
354
|
name = "libc"
|
|
330
|
-
version = "0.2.
|
|
355
|
+
version = "0.2.186"
|
|
331
356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
-
checksum = "
|
|
357
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
333
358
|
|
|
334
359
|
[[package]]
|
|
335
360
|
name = "log"
|
|
336
|
-
version = "0.4.
|
|
361
|
+
version = "0.4.32"
|
|
337
362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
-
checksum = "
|
|
363
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
339
364
|
|
|
340
365
|
[[package]]
|
|
341
366
|
name = "memchr"
|
|
342
|
-
version = "2.8.
|
|
367
|
+
version = "2.8.2"
|
|
343
368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
-
checksum = "
|
|
369
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
345
370
|
|
|
346
371
|
[[package]]
|
|
347
372
|
name = "num-traits"
|
|
@@ -417,6 +442,12 @@ dependencies = [
|
|
|
417
442
|
"siphasher",
|
|
418
443
|
]
|
|
419
444
|
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "pin-project-lite"
|
|
447
|
+
version = "0.2.17"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
450
|
+
|
|
420
451
|
[[package]]
|
|
421
452
|
name = "plotters"
|
|
422
453
|
version = "0.3.7"
|
|
@@ -462,9 +493,9 @@ dependencies = [
|
|
|
462
493
|
|
|
463
494
|
[[package]]
|
|
464
495
|
name = "pyo3"
|
|
465
|
-
version = "0.
|
|
496
|
+
version = "0.29.0"
|
|
466
497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
-
checksum = "
|
|
498
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
468
499
|
dependencies = [
|
|
469
500
|
"chrono",
|
|
470
501
|
"libc",
|
|
@@ -477,18 +508,18 @@ dependencies = [
|
|
|
477
508
|
|
|
478
509
|
[[package]]
|
|
479
510
|
name = "pyo3-build-config"
|
|
480
|
-
version = "0.
|
|
511
|
+
version = "0.29.0"
|
|
481
512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
-
checksum = "
|
|
513
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
483
514
|
dependencies = [
|
|
484
515
|
"target-lexicon",
|
|
485
516
|
]
|
|
486
517
|
|
|
487
518
|
[[package]]
|
|
488
519
|
name = "pyo3-ffi"
|
|
489
|
-
version = "0.
|
|
520
|
+
version = "0.29.0"
|
|
490
521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
-
checksum = "
|
|
522
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
492
523
|
dependencies = [
|
|
493
524
|
"libc",
|
|
494
525
|
"pyo3-build-config",
|
|
@@ -496,9 +527,9 @@ dependencies = [
|
|
|
496
527
|
|
|
497
528
|
[[package]]
|
|
498
529
|
name = "pyo3-macros"
|
|
499
|
-
version = "0.
|
|
530
|
+
version = "0.29.0"
|
|
500
531
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
-
checksum = "
|
|
532
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
502
533
|
dependencies = [
|
|
503
534
|
"proc-macro2",
|
|
504
535
|
"pyo3-macros-backend",
|
|
@@ -508,13 +539,12 @@ dependencies = [
|
|
|
508
539
|
|
|
509
540
|
[[package]]
|
|
510
541
|
name = "pyo3-macros-backend"
|
|
511
|
-
version = "0.
|
|
542
|
+
version = "0.29.0"
|
|
512
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
-
checksum = "
|
|
544
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
514
545
|
dependencies = [
|
|
515
546
|
"heck",
|
|
516
547
|
"proc-macro2",
|
|
517
|
-
"pyo3-build-config",
|
|
518
548
|
"quote",
|
|
519
549
|
"syn",
|
|
520
550
|
]
|
|
@@ -530,9 +560,9 @@ dependencies = [
|
|
|
530
560
|
|
|
531
561
|
[[package]]
|
|
532
562
|
name = "rayon"
|
|
533
|
-
version = "1.
|
|
563
|
+
version = "1.12.0"
|
|
534
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
-
checksum = "
|
|
565
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
536
566
|
dependencies = [
|
|
537
567
|
"either",
|
|
538
568
|
"rayon-core",
|
|
@@ -550,9 +580,9 @@ dependencies = [
|
|
|
550
580
|
|
|
551
581
|
[[package]]
|
|
552
582
|
name = "regex"
|
|
553
|
-
version = "1.12.
|
|
583
|
+
version = "1.12.4"
|
|
554
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
-
checksum = "
|
|
585
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
556
586
|
dependencies = [
|
|
557
587
|
"aho-corasick",
|
|
558
588
|
"memchr",
|
|
@@ -573,9 +603,9 @@ dependencies = [
|
|
|
573
603
|
|
|
574
604
|
[[package]]
|
|
575
605
|
name = "regex-syntax"
|
|
576
|
-
version = "0.8.
|
|
606
|
+
version = "0.8.11"
|
|
577
607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
-
checksum = "
|
|
608
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
579
609
|
|
|
580
610
|
[[package]]
|
|
581
611
|
name = "rustc-hash"
|
|
@@ -630,9 +660,9 @@ dependencies = [
|
|
|
630
660
|
|
|
631
661
|
[[package]]
|
|
632
662
|
name = "serde_json"
|
|
633
|
-
version = "1.0.
|
|
663
|
+
version = "1.0.150"
|
|
634
664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
-
checksum = "
|
|
665
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
636
666
|
dependencies = [
|
|
637
667
|
"itoa",
|
|
638
668
|
"memchr",
|
|
@@ -643,21 +673,27 @@ dependencies = [
|
|
|
643
673
|
|
|
644
674
|
[[package]]
|
|
645
675
|
name = "shlex"
|
|
646
|
-
version = "
|
|
676
|
+
version = "2.0.1"
|
|
647
677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
-
checksum = "
|
|
678
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
649
679
|
|
|
650
680
|
[[package]]
|
|
651
681
|
name = "siphasher"
|
|
652
|
-
version = "1.0.
|
|
682
|
+
version = "1.0.3"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "slab"
|
|
688
|
+
version = "0.4.12"
|
|
653
689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
-
checksum = "
|
|
690
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
655
691
|
|
|
656
692
|
[[package]]
|
|
657
693
|
name = "smallvec"
|
|
658
|
-
version = "1.15.
|
|
694
|
+
version = "1.15.2"
|
|
659
695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
-
checksum = "
|
|
696
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
661
697
|
|
|
662
698
|
[[package]]
|
|
663
699
|
name = "syn"
|
|
@@ -724,9 +760,9 @@ dependencies = [
|
|
|
724
760
|
|
|
725
761
|
[[package]]
|
|
726
762
|
name = "wasm-bindgen"
|
|
727
|
-
version = "0.2.
|
|
763
|
+
version = "0.2.125"
|
|
728
764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
-
checksum = "
|
|
765
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
730
766
|
dependencies = [
|
|
731
767
|
"cfg-if",
|
|
732
768
|
"once_cell",
|
|
@@ -737,9 +773,9 @@ dependencies = [
|
|
|
737
773
|
|
|
738
774
|
[[package]]
|
|
739
775
|
name = "wasm-bindgen-macro"
|
|
740
|
-
version = "0.2.
|
|
776
|
+
version = "0.2.125"
|
|
741
777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
-
checksum = "
|
|
778
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
743
779
|
dependencies = [
|
|
744
780
|
"quote",
|
|
745
781
|
"wasm-bindgen-macro-support",
|
|
@@ -747,9 +783,9 @@ dependencies = [
|
|
|
747
783
|
|
|
748
784
|
[[package]]
|
|
749
785
|
name = "wasm-bindgen-macro-support"
|
|
750
|
-
version = "0.2.
|
|
786
|
+
version = "0.2.125"
|
|
751
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
-
checksum = "
|
|
788
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
753
789
|
dependencies = [
|
|
754
790
|
"bumpalo",
|
|
755
791
|
"proc-macro2",
|
|
@@ -760,18 +796,18 @@ dependencies = [
|
|
|
760
796
|
|
|
761
797
|
[[package]]
|
|
762
798
|
name = "wasm-bindgen-shared"
|
|
763
|
-
version = "0.2.
|
|
799
|
+
version = "0.2.125"
|
|
764
800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
-
checksum = "
|
|
801
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
766
802
|
dependencies = [
|
|
767
803
|
"unicode-ident",
|
|
768
804
|
]
|
|
769
805
|
|
|
770
806
|
[[package]]
|
|
771
807
|
name = "web-sys"
|
|
772
|
-
version = "0.3.
|
|
808
|
+
version = "0.3.102"
|
|
773
809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
-
checksum = "
|
|
810
|
+
checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
|
|
775
811
|
dependencies = [
|
|
776
812
|
"js-sys",
|
|
777
813
|
"wasm-bindgen",
|
|
@@ -878,18 +914,18 @@ dependencies = [
|
|
|
878
914
|
|
|
879
915
|
[[package]]
|
|
880
916
|
name = "zerocopy"
|
|
881
|
-
version = "0.8.
|
|
917
|
+
version = "0.8.52"
|
|
882
918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
-
checksum = "
|
|
919
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
884
920
|
dependencies = [
|
|
885
921
|
"zerocopy-derive",
|
|
886
922
|
]
|
|
887
923
|
|
|
888
924
|
[[package]]
|
|
889
925
|
name = "zerocopy-derive"
|
|
890
|
-
version = "0.8.
|
|
926
|
+
version = "0.8.52"
|
|
891
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
-
checksum = "
|
|
928
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
893
929
|
dependencies = [
|
|
894
930
|
"proc-macro2",
|
|
895
931
|
"quote",
|