pyroscope 0.5.6-arm64-darwin → 0.5.8-arm64-darwin
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/ext/rbspy/Cargo.lock +227 -336
- data/ext/rbspy/src/lib.rs +10 -5
- data/ext/thread_id/Cargo.lock +38 -106
- data/lib/pyroscope/version.rb +1 -1
- data/lib/pyroscope.rb +3 -3
- data/lib/rbspy/rbspy.bundle +0 -0
- data/lib/thread_id/thread_id.bundle +0 -0
- metadata +2 -2
data/ext/rbspy/Cargo.lock
CHANGED
@@ -4,13 +4,14 @@ version = 3
|
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "addr2line"
|
7
|
-
version = "0.
|
7
|
+
version = "0.20.0"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
|
10
10
|
dependencies = [
|
11
11
|
"cpp_demangle",
|
12
12
|
"fallible-iterator",
|
13
13
|
"gimli",
|
14
|
+
"memmap2",
|
14
15
|
"object",
|
15
16
|
"rustc-demangle",
|
16
17
|
"smallvec",
|
@@ -42,13 +43,19 @@ dependencies = [
|
|
42
43
|
|
43
44
|
[[package]]
|
44
45
|
name = "aho-corasick"
|
45
|
-
version = "1.0.
|
46
|
+
version = "1.0.2"
|
46
47
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
47
|
-
checksum = "
|
48
|
+
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
|
48
49
|
dependencies = [
|
49
50
|
"memchr",
|
50
51
|
]
|
51
52
|
|
53
|
+
[[package]]
|
54
|
+
name = "android-tzdata"
|
55
|
+
version = "0.1.1"
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
57
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
58
|
+
|
52
59
|
[[package]]
|
53
60
|
name = "android_system_properties"
|
54
61
|
version = "0.1.5"
|
@@ -69,15 +76,15 @@ dependencies = [
|
|
69
76
|
|
70
77
|
[[package]]
|
71
78
|
name = "anyhow"
|
72
|
-
version = "1.0.
|
79
|
+
version = "1.0.71"
|
73
80
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
74
|
-
checksum = "
|
81
|
+
checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
|
75
82
|
|
76
83
|
[[package]]
|
77
84
|
name = "arrayvec"
|
78
|
-
version = "0.7.
|
85
|
+
version = "0.7.3"
|
79
86
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
80
|
-
checksum = "
|
87
|
+
checksum = "8868f09ff8cea88b079da74ae569d9b8c62a23c68c746240b704ee6f7525c89c"
|
81
88
|
|
82
89
|
[[package]]
|
83
90
|
name = "async-channel"
|
@@ -130,9 +137,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
130
137
|
|
131
138
|
[[package]]
|
132
139
|
name = "base64"
|
133
|
-
version = "0.21.
|
140
|
+
version = "0.21.2"
|
134
141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
135
|
-
checksum = "
|
142
|
+
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
|
136
143
|
|
137
144
|
[[package]]
|
138
145
|
name = "bincode"
|
@@ -195,6 +202,26 @@ dependencies = [
|
|
195
202
|
"which",
|
196
203
|
]
|
197
204
|
|
205
|
+
[[package]]
|
206
|
+
name = "bindgen"
|
207
|
+
version = "0.64.0"
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
209
|
+
checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4"
|
210
|
+
dependencies = [
|
211
|
+
"bitflags",
|
212
|
+
"cexpr",
|
213
|
+
"clang-sys",
|
214
|
+
"lazy_static 1.4.0",
|
215
|
+
"lazycell",
|
216
|
+
"peeking_take_while",
|
217
|
+
"proc-macro2",
|
218
|
+
"quote",
|
219
|
+
"regex",
|
220
|
+
"rustc-hash",
|
221
|
+
"shlex",
|
222
|
+
"syn 1.0.109",
|
223
|
+
]
|
224
|
+
|
198
225
|
[[package]]
|
199
226
|
name = "bitflags"
|
200
227
|
version = "1.3.2"
|
@@ -218,9 +245,9 @@ dependencies = [
|
|
218
245
|
|
219
246
|
[[package]]
|
220
247
|
name = "bumpalo"
|
221
|
-
version = "3.
|
248
|
+
version = "3.13.0"
|
222
249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
223
|
-
checksum = "
|
250
|
+
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
|
224
251
|
|
225
252
|
[[package]]
|
226
253
|
name = "bytemuck"
|
@@ -228,6 +255,12 @@ version = "1.13.1"
|
|
228
255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
229
256
|
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
|
230
257
|
|
258
|
+
[[package]]
|
259
|
+
name = "byteorder"
|
260
|
+
version = "1.4.3"
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
262
|
+
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
263
|
+
|
231
264
|
[[package]]
|
232
265
|
name = "bytes"
|
233
266
|
version = "1.4.0"
|
@@ -276,13 +309,13 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
276
309
|
|
277
310
|
[[package]]
|
278
311
|
name = "chrono"
|
279
|
-
version = "0.4.
|
312
|
+
version = "0.4.26"
|
280
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
281
|
-
checksum = "
|
314
|
+
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
|
282
315
|
dependencies = [
|
316
|
+
"android-tzdata",
|
283
317
|
"iana-time-zone",
|
284
318
|
"js-sys",
|
285
|
-
"num-integer",
|
286
319
|
"num-traits",
|
287
320
|
"time",
|
288
321
|
"wasm-bindgen",
|
@@ -354,16 +387,6 @@ dependencies = [
|
|
354
387
|
"os_str_bytes",
|
355
388
|
]
|
356
389
|
|
357
|
-
[[package]]
|
358
|
-
name = "codespan-reporting"
|
359
|
-
version = "0.11.1"
|
360
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
361
|
-
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
|
362
|
-
dependencies = [
|
363
|
-
"termcolor",
|
364
|
-
"unicode-width",
|
365
|
-
]
|
366
|
-
|
367
390
|
[[package]]
|
368
391
|
name = "concurrent-queue"
|
369
392
|
version = "2.2.0"
|
@@ -409,65 +432,21 @@ dependencies = [
|
|
409
432
|
|
410
433
|
[[package]]
|
411
434
|
name = "crossbeam-utils"
|
412
|
-
version = "0.8.
|
435
|
+
version = "0.8.16"
|
413
436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
414
|
-
checksum = "
|
437
|
+
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
|
415
438
|
dependencies = [
|
416
439
|
"cfg-if",
|
417
440
|
]
|
418
441
|
|
419
442
|
[[package]]
|
420
443
|
name = "ctrlc"
|
421
|
-
version = "3.
|
422
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
423
|
-
checksum = "bbcf33c2a618cbe41ee43ae6e9f2e48368cd9f9db2896f10167d8d762679f639"
|
424
|
-
dependencies = [
|
425
|
-
"nix 0.26.2",
|
426
|
-
"windows-sys 0.45.0",
|
427
|
-
]
|
428
|
-
|
429
|
-
[[package]]
|
430
|
-
name = "cxx"
|
431
|
-
version = "1.0.94"
|
432
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
433
|
-
checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93"
|
434
|
-
dependencies = [
|
435
|
-
"cc",
|
436
|
-
"cxxbridge-flags",
|
437
|
-
"cxxbridge-macro",
|
438
|
-
"link-cplusplus",
|
439
|
-
]
|
440
|
-
|
441
|
-
[[package]]
|
442
|
-
name = "cxx-build"
|
443
|
-
version = "1.0.94"
|
444
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
445
|
-
checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b"
|
446
|
-
dependencies = [
|
447
|
-
"cc",
|
448
|
-
"codespan-reporting",
|
449
|
-
"once_cell",
|
450
|
-
"proc-macro2",
|
451
|
-
"quote",
|
452
|
-
"scratch",
|
453
|
-
"syn 2.0.15",
|
454
|
-
]
|
455
|
-
|
456
|
-
[[package]]
|
457
|
-
name = "cxxbridge-flags"
|
458
|
-
version = "1.0.94"
|
444
|
+
version = "3.4.0"
|
459
445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
460
|
-
checksum = "
|
461
|
-
|
462
|
-
[[package]]
|
463
|
-
name = "cxxbridge-macro"
|
464
|
-
version = "1.0.94"
|
465
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
466
|
-
checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
|
446
|
+
checksum = "2a011bbe2c35ce9c1f143b7af6f94f29a167beb4cd1d29e6740ce836f723120e"
|
467
447
|
dependencies = [
|
468
|
-
"
|
469
|
-
"
|
470
|
-
"syn 2.0.15",
|
448
|
+
"nix",
|
449
|
+
"windows-sys",
|
471
450
|
]
|
472
451
|
|
473
452
|
[[package]]
|
@@ -576,7 +555,7 @@ checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
|
576
555
|
dependencies = [
|
577
556
|
"errno-dragonfly",
|
578
557
|
"libc",
|
579
|
-
"windows-sys
|
558
|
+
"windows-sys",
|
580
559
|
]
|
581
560
|
|
582
561
|
[[package]]
|
@@ -623,9 +602,9 @@ dependencies = [
|
|
623
602
|
|
624
603
|
[[package]]
|
625
604
|
name = "flate2"
|
626
|
-
version = "1.0.
|
605
|
+
version = "1.0.26"
|
627
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
628
|
-
checksum = "
|
607
|
+
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
|
629
608
|
dependencies = [
|
630
609
|
"crc32fast",
|
631
610
|
"miniz_oxide",
|
@@ -639,9 +618,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
639
618
|
|
640
619
|
[[package]]
|
641
620
|
name = "form_urlencoded"
|
642
|
-
version = "1.
|
621
|
+
version = "1.2.0"
|
643
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
644
|
-
checksum = "
|
623
|
+
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
|
645
624
|
dependencies = [
|
646
625
|
"percent-encoding",
|
647
626
|
]
|
@@ -717,9 +696,9 @@ dependencies = [
|
|
717
696
|
|
718
697
|
[[package]]
|
719
698
|
name = "getrandom"
|
720
|
-
version = "0.2.
|
699
|
+
version = "0.2.10"
|
721
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
722
|
-
checksum = "
|
701
|
+
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
|
723
702
|
dependencies = [
|
724
703
|
"cfg-if",
|
725
704
|
"libc",
|
@@ -728,9 +707,9 @@ dependencies = [
|
|
728
707
|
|
729
708
|
[[package]]
|
730
709
|
name = "gimli"
|
731
|
-
version = "0.27.
|
710
|
+
version = "0.27.3"
|
732
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
733
|
-
checksum = "
|
712
|
+
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
|
734
713
|
dependencies = [
|
735
714
|
"fallible-iterator",
|
736
715
|
"stable_deref_trait",
|
@@ -755,9 +734,9 @@ dependencies = [
|
|
755
734
|
|
756
735
|
[[package]]
|
757
736
|
name = "h2"
|
758
|
-
version = "0.3.
|
737
|
+
version = "0.3.19"
|
759
738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
760
|
-
checksum = "
|
739
|
+
checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
|
761
740
|
dependencies = [
|
762
741
|
"bytes",
|
763
742
|
"fnv",
|
@@ -892,9 +871,9 @@ dependencies = [
|
|
892
871
|
|
893
872
|
[[package]]
|
894
873
|
name = "hyper-rustls"
|
895
|
-
version = "0.
|
874
|
+
version = "0.24.0"
|
896
875
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
897
|
-
checksum = "
|
876
|
+
checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
|
898
877
|
dependencies = [
|
899
878
|
"http",
|
900
879
|
"hyper",
|
@@ -905,9 +884,9 @@ dependencies = [
|
|
905
884
|
|
906
885
|
[[package]]
|
907
886
|
name = "iana-time-zone"
|
908
|
-
version = "0.1.
|
887
|
+
version = "0.1.57"
|
909
888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
910
|
-
checksum = "
|
889
|
+
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
|
911
890
|
dependencies = [
|
912
891
|
"android_system_properties",
|
913
892
|
"core-foundation-sys",
|
@@ -919,19 +898,18 @@ dependencies = [
|
|
919
898
|
|
920
899
|
[[package]]
|
921
900
|
name = "iana-time-zone-haiku"
|
922
|
-
version = "0.1.
|
901
|
+
version = "0.1.2"
|
923
902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
924
|
-
checksum = "
|
903
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
925
904
|
dependencies = [
|
926
|
-
"
|
927
|
-
"cxx-build",
|
905
|
+
"cc",
|
928
906
|
]
|
929
907
|
|
930
908
|
[[package]]
|
931
909
|
name = "idna"
|
932
|
-
version = "0.
|
910
|
+
version = "0.4.0"
|
933
911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
934
|
-
checksum = "
|
912
|
+
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
|
935
913
|
dependencies = [
|
936
914
|
"unicode-bidi",
|
937
915
|
"unicode-normalization",
|
@@ -1008,13 +986,13 @@ checksum = "ae52f28f45ac2bc96edb7714de995cffc174a395fb0abf5bff453587c980d7b9"
|
|
1008
986
|
|
1009
987
|
[[package]]
|
1010
988
|
name = "io-lifetimes"
|
1011
|
-
version = "1.0.
|
989
|
+
version = "1.0.11"
|
1012
990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
|
-
checksum = "
|
991
|
+
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
|
1014
992
|
dependencies = [
|
1015
993
|
"hermit-abi 0.3.1",
|
1016
994
|
"libc",
|
1017
|
-
"windows-sys
|
995
|
+
"windows-sys",
|
1018
996
|
]
|
1019
997
|
|
1020
998
|
[[package]]
|
@@ -1032,7 +1010,7 @@ dependencies = [
|
|
1032
1010
|
"hermit-abi 0.3.1",
|
1033
1011
|
"io-lifetimes",
|
1034
1012
|
"rustix",
|
1035
|
-
"windows-sys
|
1013
|
+
"windows-sys",
|
1036
1014
|
]
|
1037
1015
|
|
1038
1016
|
[[package]]
|
@@ -1052,9 +1030,9 @@ checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
|
1052
1030
|
|
1053
1031
|
[[package]]
|
1054
1032
|
name = "js-sys"
|
1055
|
-
version = "0.3.
|
1033
|
+
version = "0.3.64"
|
1056
1034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1057
|
-
checksum = "
|
1035
|
+
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
|
1058
1036
|
dependencies = [
|
1059
1037
|
"wasm-bindgen",
|
1060
1038
|
]
|
@@ -1085,15 +1063,15 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
1085
1063
|
|
1086
1064
|
[[package]]
|
1087
1065
|
name = "libc"
|
1088
|
-
version = "0.2.
|
1066
|
+
version = "0.2.146"
|
1089
1067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1090
|
-
checksum = "
|
1068
|
+
checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b"
|
1091
1069
|
|
1092
1070
|
[[package]]
|
1093
1071
|
name = "libflate"
|
1094
|
-
version = "1.
|
1072
|
+
version = "1.4.0"
|
1095
1073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1096
|
-
checksum = "
|
1074
|
+
checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18"
|
1097
1075
|
dependencies = [
|
1098
1076
|
"adler32",
|
1099
1077
|
"crc32fast",
|
@@ -1131,25 +1109,27 @@ dependencies = [
|
|
1131
1109
|
]
|
1132
1110
|
|
1133
1111
|
[[package]]
|
1134
|
-
name = "
|
1135
|
-
version = "
|
1112
|
+
name = "libproc"
|
1113
|
+
version = "0.13.0"
|
1136
1114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1137
|
-
checksum = "
|
1115
|
+
checksum = "8b18cbf29f8ff3542ba22bdce9ac610fcb75d74bb4e2b306b2a2762242025b4f"
|
1138
1116
|
dependencies = [
|
1139
|
-
"
|
1117
|
+
"bindgen 0.64.0",
|
1118
|
+
"errno 0.2.8",
|
1119
|
+
"libc",
|
1140
1120
|
]
|
1141
1121
|
|
1142
1122
|
[[package]]
|
1143
1123
|
name = "linux-raw-sys"
|
1144
|
-
version = "0.3.
|
1124
|
+
version = "0.3.8"
|
1145
1125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1146
|
-
checksum = "
|
1126
|
+
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
|
1147
1127
|
|
1148
1128
|
[[package]]
|
1149
1129
|
name = "lock_api"
|
1150
|
-
version = "0.4.
|
1130
|
+
version = "0.4.10"
|
1151
1131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1152
|
-
checksum = "
|
1132
|
+
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
|
1153
1133
|
dependencies = [
|
1154
1134
|
"autocfg",
|
1155
1135
|
"scopeguard",
|
@@ -1157,12 +1137,9 @@ dependencies = [
|
|
1157
1137
|
|
1158
1138
|
[[package]]
|
1159
1139
|
name = "log"
|
1160
|
-
version = "0.4.
|
1140
|
+
version = "0.4.19"
|
1161
1141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1162
|
-
checksum = "
|
1163
|
-
dependencies = [
|
1164
|
-
"cfg-if",
|
1165
|
-
]
|
1142
|
+
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
|
1166
1143
|
|
1167
1144
|
[[package]]
|
1168
1145
|
name = "mach"
|
@@ -1236,47 +1213,34 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1236
1213
|
|
1237
1214
|
[[package]]
|
1238
1215
|
name = "miniz_oxide"
|
1239
|
-
version = "0.
|
1216
|
+
version = "0.7.1"
|
1240
1217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1241
|
-
checksum = "
|
1218
|
+
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
1242
1219
|
dependencies = [
|
1243
1220
|
"adler",
|
1244
1221
|
]
|
1245
1222
|
|
1246
1223
|
[[package]]
|
1247
1224
|
name = "mio"
|
1248
|
-
version = "0.8.
|
1225
|
+
version = "0.8.8"
|
1249
1226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1250
|
-
checksum = "
|
1227
|
+
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
|
1251
1228
|
dependencies = [
|
1252
1229
|
"libc",
|
1253
|
-
"log",
|
1254
1230
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
1255
|
-
"windows-sys
|
1231
|
+
"windows-sys",
|
1256
1232
|
]
|
1257
1233
|
|
1258
1234
|
[[package]]
|
1259
1235
|
name = "names"
|
1260
|
-
version = "0.
|
1236
|
+
version = "0.14.0"
|
1261
1237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1262
|
-
checksum = "
|
1238
|
+
checksum = "7bddcd3bf5144b6392de80e04c347cd7fab2508f6df16a85fc496ecd5cec39bc"
|
1263
1239
|
dependencies = [
|
1264
1240
|
"clap 3.2.25",
|
1265
1241
|
"rand 0.8.5",
|
1266
1242
|
]
|
1267
1243
|
|
1268
|
-
[[package]]
|
1269
|
-
name = "nix"
|
1270
|
-
version = "0.25.1"
|
1271
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1272
|
-
checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4"
|
1273
|
-
dependencies = [
|
1274
|
-
"autocfg",
|
1275
|
-
"bitflags",
|
1276
|
-
"cfg-if",
|
1277
|
-
"libc",
|
1278
|
-
]
|
1279
|
-
|
1280
1244
|
[[package]]
|
1281
1245
|
name = "nix"
|
1282
1246
|
version = "0.26.2"
|
@@ -1311,16 +1275,6 @@ dependencies = [
|
|
1311
1275
|
"itoa",
|
1312
1276
|
]
|
1313
1277
|
|
1314
|
-
[[package]]
|
1315
|
-
name = "num-integer"
|
1316
|
-
version = "0.1.45"
|
1317
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1318
|
-
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
1319
|
-
dependencies = [
|
1320
|
-
"autocfg",
|
1321
|
-
"num-traits",
|
1322
|
-
]
|
1323
|
-
|
1324
1278
|
[[package]]
|
1325
1279
|
name = "num-traits"
|
1326
1280
|
version = "0.2.15"
|
@@ -1342,25 +1296,26 @@ dependencies = [
|
|
1342
1296
|
|
1343
1297
|
[[package]]
|
1344
1298
|
name = "object"
|
1345
|
-
version = "0.
|
1299
|
+
version = "0.31.1"
|
1346
1300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1347
|
-
checksum = "
|
1301
|
+
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
|
1348
1302
|
dependencies = [
|
1349
1303
|
"flate2",
|
1350
1304
|
"memchr",
|
1305
|
+
"ruzstd",
|
1351
1306
|
]
|
1352
1307
|
|
1353
1308
|
[[package]]
|
1354
1309
|
name = "once_cell"
|
1355
|
-
version = "1.
|
1310
|
+
version = "1.18.0"
|
1356
1311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1357
|
-
checksum = "
|
1312
|
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
1358
1313
|
|
1359
1314
|
[[package]]
|
1360
1315
|
name = "os_str_bytes"
|
1361
|
-
version = "6.5.
|
1316
|
+
version = "6.5.1"
|
1362
1317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1363
|
-
checksum = "
|
1318
|
+
checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac"
|
1364
1319
|
|
1365
1320
|
[[package]]
|
1366
1321
|
name = "parking"
|
@@ -1370,15 +1325,15 @@ checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
|
|
1370
1325
|
|
1371
1326
|
[[package]]
|
1372
1327
|
name = "parking_lot_core"
|
1373
|
-
version = "0.9.
|
1328
|
+
version = "0.9.8"
|
1374
1329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1375
|
-
checksum = "
|
1330
|
+
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
|
1376
1331
|
dependencies = [
|
1377
1332
|
"cfg-if",
|
1378
1333
|
"libc",
|
1379
|
-
"redox_syscall 0.
|
1334
|
+
"redox_syscall 0.3.5",
|
1380
1335
|
"smallvec",
|
1381
|
-
"windows-
|
1336
|
+
"windows-targets",
|
1382
1337
|
]
|
1383
1338
|
|
1384
1339
|
[[package]]
|
@@ -1389,9 +1344,9 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
1389
1344
|
|
1390
1345
|
[[package]]
|
1391
1346
|
name = "percent-encoding"
|
1392
|
-
version = "2.
|
1347
|
+
version = "2.3.0"
|
1393
1348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1394
|
-
checksum = "
|
1349
|
+
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
|
1395
1350
|
|
1396
1351
|
[[package]]
|
1397
1352
|
name = "pin-project-lite"
|
@@ -1453,9 +1408,9 @@ dependencies = [
|
|
1453
1408
|
|
1454
1409
|
[[package]]
|
1455
1410
|
name = "proc-macro2"
|
1456
|
-
version = "1.0.
|
1411
|
+
version = "1.0.60"
|
1457
1412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1458
|
-
checksum = "
|
1413
|
+
checksum = "dec2b086b7a862cf4de201096214fa870344cf922b2b30c167badb3af3195406"
|
1459
1414
|
dependencies = [
|
1460
1415
|
"unicode-ident",
|
1461
1416
|
]
|
@@ -1469,21 +1424,11 @@ dependencies = [
|
|
1469
1424
|
"anyhow",
|
1470
1425
|
"bindgen 0.60.1",
|
1471
1426
|
"libc",
|
1472
|
-
"libproc",
|
1427
|
+
"libproc 0.12.0",
|
1473
1428
|
"mach2",
|
1474
1429
|
"winapi",
|
1475
1430
|
]
|
1476
1431
|
|
1477
|
-
[[package]]
|
1478
|
-
name = "prost"
|
1479
|
-
version = "0.10.4"
|
1480
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1481
|
-
checksum = "71adf41db68aa0daaefc69bb30bcd68ded9b9abaad5d1fbb6304c4fb390e083e"
|
1482
|
-
dependencies = [
|
1483
|
-
"bytes",
|
1484
|
-
"prost-derive 0.10.1",
|
1485
|
-
]
|
1486
|
-
|
1487
1432
|
[[package]]
|
1488
1433
|
name = "prost"
|
1489
1434
|
version = "0.11.9"
|
@@ -1491,20 +1436,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
1436
|
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
|
1492
1437
|
dependencies = [
|
1493
1438
|
"bytes",
|
1494
|
-
"prost-derive
|
1495
|
-
]
|
1496
|
-
|
1497
|
-
[[package]]
|
1498
|
-
name = "prost-derive"
|
1499
|
-
version = "0.10.1"
|
1500
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1501
|
-
checksum = "7b670f45da57fb8542ebdbb6105a925fe571b67f9e7ed9f47a06a84e72b4e7cc"
|
1502
|
-
dependencies = [
|
1503
|
-
"anyhow",
|
1504
|
-
"itertools",
|
1505
|
-
"proc-macro2",
|
1506
|
-
"quote",
|
1507
|
-
"syn 1.0.109",
|
1439
|
+
"prost-derive",
|
1508
1440
|
]
|
1509
1441
|
|
1510
1442
|
[[package]]
|
@@ -1522,14 +1454,14 @@ dependencies = [
|
|
1522
1454
|
|
1523
1455
|
[[package]]
|
1524
1456
|
name = "pyroscope"
|
1525
|
-
version = "0.5.
|
1457
|
+
version = "0.5.6"
|
1526
1458
|
dependencies = [
|
1527
1459
|
"json",
|
1528
1460
|
"libc",
|
1529
1461
|
"libflate",
|
1530
1462
|
"log",
|
1531
1463
|
"names",
|
1532
|
-
"prost
|
1464
|
+
"prost",
|
1533
1465
|
"reqwest",
|
1534
1466
|
"thiserror",
|
1535
1467
|
"url",
|
@@ -1565,9 +1497,9 @@ dependencies = [
|
|
1565
1497
|
|
1566
1498
|
[[package]]
|
1567
1499
|
name = "quote"
|
1568
|
-
version = "1.0.
|
1500
|
+
version = "1.0.28"
|
1569
1501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1570
|
-
checksum = "
|
1502
|
+
checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
|
1571
1503
|
dependencies = [
|
1572
1504
|
"proc-macro2",
|
1573
1505
|
]
|
@@ -1658,12 +1590,12 @@ dependencies = [
|
|
1658
1590
|
"inferno",
|
1659
1591
|
"lazy_static 1.4.0",
|
1660
1592
|
"libc",
|
1661
|
-
"libproc",
|
1593
|
+
"libproc 0.12.0",
|
1662
1594
|
"log",
|
1663
1595
|
"memmap2",
|
1664
|
-
"nix
|
1596
|
+
"nix",
|
1665
1597
|
"proc-maps",
|
1666
|
-
"prost
|
1598
|
+
"prost",
|
1667
1599
|
"rand 0.8.5",
|
1668
1600
|
"rbspy-ruby-structs",
|
1669
1601
|
"remoteprocess",
|
@@ -1734,9 +1666,9 @@ dependencies = [
|
|
1734
1666
|
|
1735
1667
|
[[package]]
|
1736
1668
|
name = "regex"
|
1737
|
-
version = "1.8.
|
1669
|
+
version = "1.8.4"
|
1738
1670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1739
|
-
checksum = "
|
1671
|
+
checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
|
1740
1672
|
dependencies = [
|
1741
1673
|
"aho-corasick",
|
1742
1674
|
"memchr",
|
@@ -1745,26 +1677,26 @@ dependencies = [
|
|
1745
1677
|
|
1746
1678
|
[[package]]
|
1747
1679
|
name = "regex-syntax"
|
1748
|
-
version = "0.7.
|
1680
|
+
version = "0.7.2"
|
1749
1681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1750
|
-
checksum = "
|
1682
|
+
checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
|
1751
1683
|
|
1752
1684
|
[[package]]
|
1753
1685
|
name = "remoteprocess"
|
1754
|
-
version = "0.4.
|
1686
|
+
version = "0.4.12"
|
1755
1687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1756
|
-
checksum = "
|
1688
|
+
checksum = "91114d769bd6dffc9565c01bbba121ca223efba7fdbc4c57b63fd91c1ea8478e"
|
1757
1689
|
dependencies = [
|
1758
1690
|
"addr2line",
|
1759
1691
|
"goblin",
|
1760
1692
|
"lazy_static 1.4.0",
|
1761
1693
|
"libc",
|
1762
|
-
"libproc",
|
1694
|
+
"libproc 0.13.0",
|
1763
1695
|
"log",
|
1764
1696
|
"mach",
|
1765
1697
|
"mach_o_sys",
|
1766
1698
|
"memmap",
|
1767
|
-
"nix
|
1699
|
+
"nix",
|
1768
1700
|
"object",
|
1769
1701
|
"proc-maps",
|
1770
1702
|
"read-process-memory",
|
@@ -1783,9 +1715,9 @@ dependencies = [
|
|
1783
1715
|
|
1784
1716
|
[[package]]
|
1785
1717
|
name = "reqwest"
|
1786
|
-
version = "0.11.
|
1718
|
+
version = "0.11.18"
|
1787
1719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1788
|
-
checksum = "
|
1720
|
+
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
|
1789
1721
|
dependencies = [
|
1790
1722
|
"base64",
|
1791
1723
|
"bytes",
|
@@ -1873,28 +1805,28 @@ dependencies = [
|
|
1873
1805
|
|
1874
1806
|
[[package]]
|
1875
1807
|
name = "rustix"
|
1876
|
-
version = "0.37.
|
1808
|
+
version = "0.37.20"
|
1877
1809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1878
|
-
checksum = "
|
1810
|
+
checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0"
|
1879
1811
|
dependencies = [
|
1880
1812
|
"bitflags",
|
1881
1813
|
"errno 0.3.1",
|
1882
1814
|
"io-lifetimes",
|
1883
1815
|
"libc",
|
1884
1816
|
"linux-raw-sys",
|
1885
|
-
"windows-sys
|
1817
|
+
"windows-sys",
|
1886
1818
|
]
|
1887
1819
|
|
1888
1820
|
[[package]]
|
1889
1821
|
name = "rustls"
|
1890
|
-
version = "0.
|
1822
|
+
version = "0.21.2"
|
1891
1823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1892
|
-
checksum = "
|
1824
|
+
checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f"
|
1893
1825
|
dependencies = [
|
1894
1826
|
"log",
|
1895
1827
|
"ring",
|
1828
|
+
"rustls-webpki",
|
1896
1829
|
"sct",
|
1897
|
-
"webpki",
|
1898
1830
|
]
|
1899
1831
|
|
1900
1832
|
[[package]]
|
@@ -1906,6 +1838,27 @@ dependencies = [
|
|
1906
1838
|
"base64",
|
1907
1839
|
]
|
1908
1840
|
|
1841
|
+
[[package]]
|
1842
|
+
name = "rustls-webpki"
|
1843
|
+
version = "0.100.1"
|
1844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1845
|
+
checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b"
|
1846
|
+
dependencies = [
|
1847
|
+
"ring",
|
1848
|
+
"untrusted",
|
1849
|
+
]
|
1850
|
+
|
1851
|
+
[[package]]
|
1852
|
+
name = "ruzstd"
|
1853
|
+
version = "0.3.1"
|
1854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1855
|
+
checksum = "9a15e661f0f9dac21f3494fe5d23a6338c0ac116a2d22c2b63010acd89467ffe"
|
1856
|
+
dependencies = [
|
1857
|
+
"byteorder",
|
1858
|
+
"thiserror",
|
1859
|
+
"twox-hash",
|
1860
|
+
]
|
1861
|
+
|
1909
1862
|
[[package]]
|
1910
1863
|
name = "ryu"
|
1911
1864
|
version = "1.0.13"
|
@@ -1918,12 +1871,6 @@ version = "1.1.0"
|
|
1918
1871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1919
1872
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1920
1873
|
|
1921
|
-
[[package]]
|
1922
|
-
name = "scratch"
|
1923
|
-
version = "1.0.5"
|
1924
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1925
|
-
checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1"
|
1926
|
-
|
1927
1874
|
[[package]]
|
1928
1875
|
name = "scroll"
|
1929
1876
|
version = "0.11.0"
|
@@ -1962,22 +1909,22 @@ checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
|
1962
1909
|
|
1963
1910
|
[[package]]
|
1964
1911
|
name = "serde"
|
1965
|
-
version = "1.0.
|
1912
|
+
version = "1.0.164"
|
1966
1913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1967
|
-
checksum = "
|
1914
|
+
checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d"
|
1968
1915
|
dependencies = [
|
1969
1916
|
"serde_derive",
|
1970
1917
|
]
|
1971
1918
|
|
1972
1919
|
[[package]]
|
1973
1920
|
name = "serde_derive"
|
1974
|
-
version = "1.0.
|
1921
|
+
version = "1.0.164"
|
1975
1922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1976
|
-
checksum = "
|
1923
|
+
checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68"
|
1977
1924
|
dependencies = [
|
1978
1925
|
"proc-macro2",
|
1979
1926
|
"quote",
|
1980
|
-
"syn 2.0.
|
1927
|
+
"syn 2.0.18",
|
1981
1928
|
]
|
1982
1929
|
|
1983
1930
|
[[package]]
|
@@ -2109,9 +2056,9 @@ dependencies = [
|
|
2109
2056
|
|
2110
2057
|
[[package]]
|
2111
2058
|
name = "syn"
|
2112
|
-
version = "2.0.
|
2059
|
+
version = "2.0.18"
|
2113
2060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2114
|
-
checksum = "
|
2061
|
+
checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e"
|
2115
2062
|
dependencies = [
|
2116
2063
|
"proc-macro2",
|
2117
2064
|
"quote",
|
@@ -2130,15 +2077,16 @@ dependencies = [
|
|
2130
2077
|
|
2131
2078
|
[[package]]
|
2132
2079
|
name = "tempfile"
|
2133
|
-
version = "3.
|
2080
|
+
version = "3.6.0"
|
2134
2081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2135
|
-
checksum = "
|
2082
|
+
checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6"
|
2136
2083
|
dependencies = [
|
2084
|
+
"autocfg",
|
2137
2085
|
"cfg-if",
|
2138
2086
|
"fastrand",
|
2139
2087
|
"redox_syscall 0.3.5",
|
2140
2088
|
"rustix",
|
2141
|
-
"windows-sys
|
2089
|
+
"windows-sys",
|
2142
2090
|
]
|
2143
2091
|
|
2144
2092
|
[[package]]
|
@@ -2192,7 +2140,7 @@ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
|
2192
2140
|
dependencies = [
|
2193
2141
|
"proc-macro2",
|
2194
2142
|
"quote",
|
2195
|
-
"syn 2.0.
|
2143
|
+
"syn 2.0.18",
|
2196
2144
|
]
|
2197
2145
|
|
2198
2146
|
[[package]]
|
@@ -2229,9 +2177,9 @@ checksum = "c7c4ceeeca15c8384bbc3e011dbd8fccb7f068a440b752b7d9b32ceb0ca0e2e8"
|
|
2229
2177
|
|
2230
2178
|
[[package]]
|
2231
2179
|
name = "tokio"
|
2232
|
-
version = "1.28.
|
2180
|
+
version = "1.28.2"
|
2233
2181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2234
|
-
checksum = "
|
2182
|
+
checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2"
|
2235
2183
|
dependencies = [
|
2236
2184
|
"autocfg",
|
2237
2185
|
"bytes",
|
@@ -2240,18 +2188,17 @@ dependencies = [
|
|
2240
2188
|
"num_cpus",
|
2241
2189
|
"pin-project-lite",
|
2242
2190
|
"socket2",
|
2243
|
-
"windows-sys
|
2191
|
+
"windows-sys",
|
2244
2192
|
]
|
2245
2193
|
|
2246
2194
|
[[package]]
|
2247
2195
|
name = "tokio-rustls"
|
2248
|
-
version = "0.
|
2196
|
+
version = "0.24.1"
|
2249
2197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2250
|
-
checksum = "
|
2198
|
+
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
2251
2199
|
dependencies = [
|
2252
2200
|
"rustls",
|
2253
2201
|
"tokio",
|
2254
|
-
"webpki",
|
2255
2202
|
]
|
2256
2203
|
|
2257
2204
|
[[package]]
|
@@ -2285,19 +2232,20 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
2285
2232
|
|
2286
2233
|
[[package]]
|
2287
2234
|
name = "tracing"
|
2288
|
-
version = "0.1.
|
2235
|
+
version = "0.1.37"
|
2289
2236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2290
|
-
checksum = "
|
2237
|
+
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
|
2291
2238
|
dependencies = [
|
2239
|
+
"cfg-if",
|
2292
2240
|
"pin-project-lite",
|
2293
2241
|
"tracing-core",
|
2294
2242
|
]
|
2295
2243
|
|
2296
2244
|
[[package]]
|
2297
2245
|
name = "tracing-core"
|
2298
|
-
version = "0.1.
|
2246
|
+
version = "0.1.31"
|
2299
2247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2300
|
-
checksum = "
|
2248
|
+
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
|
2301
2249
|
dependencies = [
|
2302
2250
|
"once_cell",
|
2303
2251
|
]
|
@@ -2308,6 +2256,16 @@ version = "0.2.4"
|
|
2308
2256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2309
2257
|
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
|
2310
2258
|
|
2259
|
+
[[package]]
|
2260
|
+
name = "twox-hash"
|
2261
|
+
version = "1.6.3"
|
2262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2263
|
+
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
2264
|
+
dependencies = [
|
2265
|
+
"cfg-if",
|
2266
|
+
"static_assertions",
|
2267
|
+
]
|
2268
|
+
|
2311
2269
|
[[package]]
|
2312
2270
|
name = "unicode-bidi"
|
2313
2271
|
version = "0.3.13"
|
@@ -2316,9 +2274,9 @@ checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
|
2316
2274
|
|
2317
2275
|
[[package]]
|
2318
2276
|
name = "unicode-ident"
|
2319
|
-
version = "1.0.
|
2277
|
+
version = "1.0.9"
|
2320
2278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2321
|
-
checksum = "
|
2279
|
+
checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
|
2322
2280
|
|
2323
2281
|
[[package]]
|
2324
2282
|
name = "unicode-normalization"
|
@@ -2349,9 +2307,9 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
2349
2307
|
|
2350
2308
|
[[package]]
|
2351
2309
|
name = "url"
|
2352
|
-
version = "2.
|
2310
|
+
version = "2.4.0"
|
2353
2311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2354
|
-
checksum = "
|
2312
|
+
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
|
2355
2313
|
dependencies = [
|
2356
2314
|
"form_urlencoded",
|
2357
2315
|
"idna",
|
@@ -2384,11 +2342,10 @@ checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
|
|
2384
2342
|
|
2385
2343
|
[[package]]
|
2386
2344
|
name = "want"
|
2387
|
-
version = "0.3.
|
2345
|
+
version = "0.3.1"
|
2388
2346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2389
|
-
checksum = "
|
2347
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
2390
2348
|
dependencies = [
|
2391
|
-
"log",
|
2392
2349
|
"try-lock",
|
2393
2350
|
]
|
2394
2351
|
|
@@ -2406,9 +2363,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2406
2363
|
|
2407
2364
|
[[package]]
|
2408
2365
|
name = "wasm-bindgen"
|
2409
|
-
version = "0.2.
|
2366
|
+
version = "0.2.87"
|
2410
2367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2411
|
-
checksum = "
|
2368
|
+
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
|
2412
2369
|
dependencies = [
|
2413
2370
|
"cfg-if",
|
2414
2371
|
"wasm-bindgen-macro",
|
@@ -2416,24 +2373,24 @@ dependencies = [
|
|
2416
2373
|
|
2417
2374
|
[[package]]
|
2418
2375
|
name = "wasm-bindgen-backend"
|
2419
|
-
version = "0.2.
|
2376
|
+
version = "0.2.87"
|
2420
2377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2421
|
-
checksum = "
|
2378
|
+
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
|
2422
2379
|
dependencies = [
|
2423
2380
|
"bumpalo",
|
2424
2381
|
"log",
|
2425
2382
|
"once_cell",
|
2426
2383
|
"proc-macro2",
|
2427
2384
|
"quote",
|
2428
|
-
"syn
|
2385
|
+
"syn 2.0.18",
|
2429
2386
|
"wasm-bindgen-shared",
|
2430
2387
|
]
|
2431
2388
|
|
2432
2389
|
[[package]]
|
2433
2390
|
name = "wasm-bindgen-futures"
|
2434
|
-
version = "0.4.
|
2391
|
+
version = "0.4.37"
|
2435
2392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2436
|
-
checksum = "
|
2393
|
+
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
|
2437
2394
|
dependencies = [
|
2438
2395
|
"cfg-if",
|
2439
2396
|
"js-sys",
|
@@ -2443,9 +2400,9 @@ dependencies = [
|
|
2443
2400
|
|
2444
2401
|
[[package]]
|
2445
2402
|
name = "wasm-bindgen-macro"
|
2446
|
-
version = "0.2.
|
2403
|
+
version = "0.2.87"
|
2447
2404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2448
|
-
checksum = "
|
2405
|
+
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
|
2449
2406
|
dependencies = [
|
2450
2407
|
"quote",
|
2451
2408
|
"wasm-bindgen-macro-support",
|
@@ -2453,28 +2410,28 @@ dependencies = [
|
|
2453
2410
|
|
2454
2411
|
[[package]]
|
2455
2412
|
name = "wasm-bindgen-macro-support"
|
2456
|
-
version = "0.2.
|
2413
|
+
version = "0.2.87"
|
2457
2414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2458
|
-
checksum = "
|
2415
|
+
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
|
2459
2416
|
dependencies = [
|
2460
2417
|
"proc-macro2",
|
2461
2418
|
"quote",
|
2462
|
-
"syn
|
2419
|
+
"syn 2.0.18",
|
2463
2420
|
"wasm-bindgen-backend",
|
2464
2421
|
"wasm-bindgen-shared",
|
2465
2422
|
]
|
2466
2423
|
|
2467
2424
|
[[package]]
|
2468
2425
|
name = "wasm-bindgen-shared"
|
2469
|
-
version = "0.2.
|
2426
|
+
version = "0.2.87"
|
2470
2427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2471
|
-
checksum = "
|
2428
|
+
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
|
2472
2429
|
|
2473
2430
|
[[package]]
|
2474
2431
|
name = "web-sys"
|
2475
|
-
version = "0.3.
|
2432
|
+
version = "0.3.64"
|
2476
2433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2477
|
-
checksum = "
|
2434
|
+
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
|
2478
2435
|
dependencies = [
|
2479
2436
|
"js-sys",
|
2480
2437
|
"wasm-bindgen",
|
@@ -2547,16 +2504,7 @@ version = "0.48.0"
|
|
2547
2504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2548
2505
|
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
2549
2506
|
dependencies = [
|
2550
|
-
"windows-targets
|
2551
|
-
]
|
2552
|
-
|
2553
|
-
[[package]]
|
2554
|
-
name = "windows-sys"
|
2555
|
-
version = "0.45.0"
|
2556
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2557
|
-
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
2558
|
-
dependencies = [
|
2559
|
-
"windows-targets 0.42.2",
|
2507
|
+
"windows-targets",
|
2560
2508
|
]
|
2561
2509
|
|
2562
2510
|
[[package]]
|
@@ -2565,22 +2513,7 @@ version = "0.48.0"
|
|
2565
2513
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2566
2514
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2567
2515
|
dependencies = [
|
2568
|
-
"windows-targets
|
2569
|
-
]
|
2570
|
-
|
2571
|
-
[[package]]
|
2572
|
-
name = "windows-targets"
|
2573
|
-
version = "0.42.2"
|
2574
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2575
|
-
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
2576
|
-
dependencies = [
|
2577
|
-
"windows_aarch64_gnullvm 0.42.2",
|
2578
|
-
"windows_aarch64_msvc 0.42.2",
|
2579
|
-
"windows_i686_gnu 0.42.2",
|
2580
|
-
"windows_i686_msvc 0.42.2",
|
2581
|
-
"windows_x86_64_gnu 0.42.2",
|
2582
|
-
"windows_x86_64_gnullvm 0.42.2",
|
2583
|
-
"windows_x86_64_msvc 0.42.2",
|
2516
|
+
"windows-targets",
|
2584
2517
|
]
|
2585
2518
|
|
2586
2519
|
[[package]]
|
@@ -2589,93 +2522,51 @@ version = "0.48.0"
|
|
2589
2522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2590
2523
|
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
2591
2524
|
dependencies = [
|
2592
|
-
"windows_aarch64_gnullvm
|
2593
|
-
"windows_aarch64_msvc
|
2594
|
-
"windows_i686_gnu
|
2595
|
-
"windows_i686_msvc
|
2596
|
-
"windows_x86_64_gnu
|
2597
|
-
"windows_x86_64_gnullvm
|
2598
|
-
"windows_x86_64_msvc
|
2525
|
+
"windows_aarch64_gnullvm",
|
2526
|
+
"windows_aarch64_msvc",
|
2527
|
+
"windows_i686_gnu",
|
2528
|
+
"windows_i686_msvc",
|
2529
|
+
"windows_x86_64_gnu",
|
2530
|
+
"windows_x86_64_gnullvm",
|
2531
|
+
"windows_x86_64_msvc",
|
2599
2532
|
]
|
2600
2533
|
|
2601
|
-
[[package]]
|
2602
|
-
name = "windows_aarch64_gnullvm"
|
2603
|
-
version = "0.42.2"
|
2604
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2605
|
-
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
2606
|
-
|
2607
2534
|
[[package]]
|
2608
2535
|
name = "windows_aarch64_gnullvm"
|
2609
2536
|
version = "0.48.0"
|
2610
2537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2611
2538
|
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
2612
2539
|
|
2613
|
-
[[package]]
|
2614
|
-
name = "windows_aarch64_msvc"
|
2615
|
-
version = "0.42.2"
|
2616
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2617
|
-
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
2618
|
-
|
2619
2540
|
[[package]]
|
2620
2541
|
name = "windows_aarch64_msvc"
|
2621
2542
|
version = "0.48.0"
|
2622
2543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2623
2544
|
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
2624
2545
|
|
2625
|
-
[[package]]
|
2626
|
-
name = "windows_i686_gnu"
|
2627
|
-
version = "0.42.2"
|
2628
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2629
|
-
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
2630
|
-
|
2631
2546
|
[[package]]
|
2632
2547
|
name = "windows_i686_gnu"
|
2633
2548
|
version = "0.48.0"
|
2634
2549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2635
2550
|
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
2636
2551
|
|
2637
|
-
[[package]]
|
2638
|
-
name = "windows_i686_msvc"
|
2639
|
-
version = "0.42.2"
|
2640
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2641
|
-
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
2642
|
-
|
2643
2552
|
[[package]]
|
2644
2553
|
name = "windows_i686_msvc"
|
2645
2554
|
version = "0.48.0"
|
2646
2555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2647
2556
|
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
2648
2557
|
|
2649
|
-
[[package]]
|
2650
|
-
name = "windows_x86_64_gnu"
|
2651
|
-
version = "0.42.2"
|
2652
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2653
|
-
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
2654
|
-
|
2655
2558
|
[[package]]
|
2656
2559
|
name = "windows_x86_64_gnu"
|
2657
2560
|
version = "0.48.0"
|
2658
2561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2659
2562
|
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
2660
2563
|
|
2661
|
-
[[package]]
|
2662
|
-
name = "windows_x86_64_gnullvm"
|
2663
|
-
version = "0.42.2"
|
2664
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2665
|
-
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
2666
|
-
|
2667
2564
|
[[package]]
|
2668
2565
|
name = "windows_x86_64_gnullvm"
|
2669
2566
|
version = "0.48.0"
|
2670
2567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2671
2568
|
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
2672
2569
|
|
2673
|
-
[[package]]
|
2674
|
-
name = "windows_x86_64_msvc"
|
2675
|
-
version = "0.42.2"
|
2676
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2677
|
-
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
2678
|
-
|
2679
2570
|
[[package]]
|
2680
2571
|
name = "windows_x86_64_msvc"
|
2681
2572
|
version = "0.48.0"
|