pyroscope_beta 0.1.3 → 0.1.6
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/README.md +51 -3
- data/ext/rbspy/Cargo.lock +279 -105
- data/ext/rbspy/Cargo.toml +1 -2
- data/ext/rbspy/Rakefile +16 -15
- data/ext/rbspy/extconf.rb +3 -9
- data/ext/rbspy/src/lib.rs +0 -3
- data/ext/thread_id/Cargo.lock +2 -2
- data/ext/thread_id/Rakefile +16 -15
- data/ext/thread_id/extconf.rb +3 -9
- data/lib/pyroscope/version.rb +1 -1
- data/lib/pyroscope_beta.rb +2 -2
- data/pyroscope.gemspec +43 -0
- metadata +162 -10
- data/Gemfile +0 -4
- data/Gemfile.lock +0 -15
- data/Rakefile +0 -10
data/ext/rbspy/Cargo.lock
CHANGED
@@ -178,9 +178,9 @@ dependencies = [
|
|
178
178
|
|
179
179
|
[[package]]
|
180
180
|
name = "clang-sys"
|
181
|
-
version = "1.3.
|
181
|
+
version = "1.3.3"
|
182
182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
183
|
-
checksum = "
|
183
|
+
checksum = "5a050e2153c5be08febd6734e29298e844fdb0fa21aeddd63b4eb7baa106c69b"
|
184
184
|
dependencies = [
|
185
185
|
"glob",
|
186
186
|
"libc",
|
@@ -204,9 +204,9 @@ dependencies = [
|
|
204
204
|
|
205
205
|
[[package]]
|
206
206
|
name = "clap"
|
207
|
-
version = "3.1.
|
207
|
+
version = "3.1.18"
|
208
208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
209
|
-
checksum = "
|
209
|
+
checksum = "d2dbdf4bdacb33466e854ce889eee8dfd5729abf7ccd7664d0a2d60cd384440b"
|
210
210
|
dependencies = [
|
211
211
|
"atty",
|
212
212
|
"bitflags",
|
@@ -221,9 +221,9 @@ dependencies = [
|
|
221
221
|
|
222
222
|
[[package]]
|
223
223
|
name = "clap_derive"
|
224
|
-
version = "3.1.
|
224
|
+
version = "3.1.18"
|
225
225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
226
|
-
checksum = "
|
226
|
+
checksum = "25320346e922cffe59c0bbc5410c8d8784509efb321488971081313cb1e1a33c"
|
227
227
|
dependencies = [
|
228
228
|
"heck",
|
229
229
|
"proc-macro-error",
|
@@ -307,13 +307,14 @@ dependencies = [
|
|
307
307
|
|
308
308
|
[[package]]
|
309
309
|
name = "dashmap"
|
310
|
-
version = "5.3.
|
310
|
+
version = "5.3.4"
|
311
311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
312
|
-
checksum = "
|
312
|
+
checksum = "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f"
|
313
313
|
dependencies = [
|
314
314
|
"cfg-if",
|
315
|
-
"hashbrown 0.12.
|
315
|
+
"hashbrown 0.12.1",
|
316
316
|
"lock_api",
|
317
|
+
"parking_lot_core",
|
317
318
|
]
|
318
319
|
|
319
320
|
[[package]]
|
@@ -411,13 +412,11 @@ dependencies = [
|
|
411
412
|
|
412
413
|
[[package]]
|
413
414
|
name = "flate2"
|
414
|
-
version = "1.0.
|
415
|
+
version = "1.0.24"
|
415
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
416
|
-
checksum = "
|
417
|
+
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
|
417
418
|
dependencies = [
|
418
|
-
"cfg-if",
|
419
419
|
"crc32fast",
|
420
|
-
"libc",
|
421
420
|
"miniz_oxide",
|
422
421
|
]
|
423
422
|
|
@@ -571,9 +570,9 @@ checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
|
|
571
570
|
|
572
571
|
[[package]]
|
573
572
|
name = "hashbrown"
|
574
|
-
version = "0.12.
|
573
|
+
version = "0.12.1"
|
575
574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
576
|
-
checksum = "
|
575
|
+
checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
|
577
576
|
|
578
577
|
[[package]]
|
579
578
|
name = "heck"
|
@@ -598,14 +597,14 @@ checksum = "ff8670570af52249509a86f5e3e18a08c60b177071826898fde8997cf5f6bfbb"
|
|
598
597
|
dependencies = [
|
599
598
|
"bytes",
|
600
599
|
"fnv",
|
601
|
-
"itoa 1.0.
|
600
|
+
"itoa 1.0.2",
|
602
601
|
]
|
603
602
|
|
604
603
|
[[package]]
|
605
604
|
name = "http-body"
|
606
|
-
version = "0.4.
|
605
|
+
version = "0.4.5"
|
607
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
608
|
-
checksum = "
|
607
|
+
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
|
609
608
|
dependencies = [
|
610
609
|
"bytes",
|
611
610
|
"http",
|
@@ -632,9 +631,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
632
631
|
|
633
632
|
[[package]]
|
634
633
|
name = "hyper"
|
635
|
-
version = "0.14.
|
634
|
+
version = "0.14.19"
|
636
635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
-
checksum = "
|
636
|
+
checksum = "42dc3c131584288d375f2d07f822b0cb012d8c6fb899a5b9fdb3cb7eb9b6004f"
|
638
637
|
dependencies = [
|
639
638
|
"bytes",
|
640
639
|
"futures-channel",
|
@@ -645,7 +644,7 @@ dependencies = [
|
|
645
644
|
"http-body",
|
646
645
|
"httparse",
|
647
646
|
"httpdate",
|
648
|
-
"itoa 1.0.
|
647
|
+
"itoa 1.0.2",
|
649
648
|
"pin-project-lite",
|
650
649
|
"socket2",
|
651
650
|
"tokio",
|
@@ -654,6 +653,19 @@ dependencies = [
|
|
654
653
|
"want",
|
655
654
|
]
|
656
655
|
|
656
|
+
[[package]]
|
657
|
+
name = "hyper-rustls"
|
658
|
+
version = "0.23.0"
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
660
|
+
checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
|
661
|
+
dependencies = [
|
662
|
+
"http",
|
663
|
+
"hyper",
|
664
|
+
"rustls",
|
665
|
+
"tokio",
|
666
|
+
"tokio-rustls",
|
667
|
+
]
|
668
|
+
|
657
669
|
[[package]]
|
658
670
|
name = "hyper-tls"
|
659
671
|
version = "0.5.0"
|
@@ -680,9 +692,9 @@ dependencies = [
|
|
680
692
|
|
681
693
|
[[package]]
|
682
694
|
name = "indexmap"
|
683
|
-
version = "1.8.
|
695
|
+
version = "1.8.2"
|
684
696
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
|
-
checksum = "
|
697
|
+
checksum = "e6012d540c5baa3589337a98ce73408de9b5a25ec9fc2c6fd6be8f0d39e0ca5a"
|
686
698
|
dependencies = [
|
687
699
|
"autocfg",
|
688
700
|
"hashbrown 0.11.2",
|
@@ -690,19 +702,19 @@ dependencies = [
|
|
690
702
|
|
691
703
|
[[package]]
|
692
704
|
name = "inferno"
|
693
|
-
version = "0.11.
|
705
|
+
version = "0.11.4"
|
694
706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
695
|
-
checksum = "
|
707
|
+
checksum = "1a3cb215599901c8f491666421d44ffaed08d6872b4c7ced6f425683b951271e"
|
696
708
|
dependencies = [
|
697
709
|
"ahash",
|
698
710
|
"atty",
|
699
|
-
"clap 3.1.
|
711
|
+
"clap 3.1.18",
|
700
712
|
"crossbeam-channel",
|
701
713
|
"crossbeam-utils",
|
702
714
|
"dashmap",
|
703
715
|
"env_logger",
|
704
716
|
"indexmap",
|
705
|
-
"itoa 1.0.
|
717
|
+
"itoa 1.0.2",
|
706
718
|
"lazy_static",
|
707
719
|
"log",
|
708
720
|
"num-format",
|
@@ -744,9 +756,9 @@ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
|
744
756
|
|
745
757
|
[[package]]
|
746
758
|
name = "itoa"
|
747
|
-
version = "1.0.
|
759
|
+
version = "1.0.2"
|
748
760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
749
|
-
checksum = "
|
761
|
+
checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
|
750
762
|
|
751
763
|
[[package]]
|
752
764
|
name = "js-sys"
|
@@ -771,9 +783,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
771
783
|
|
772
784
|
[[package]]
|
773
785
|
name = "libc"
|
774
|
-
version = "0.2.
|
786
|
+
version = "0.2.126"
|
775
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
776
|
-
checksum = "
|
788
|
+
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
|
777
789
|
|
778
790
|
[[package]]
|
779
791
|
name = "libloading"
|
@@ -818,9 +830,9 @@ dependencies = [
|
|
818
830
|
|
819
831
|
[[package]]
|
820
832
|
name = "log"
|
821
|
-
version = "0.4.
|
833
|
+
version = "0.4.17"
|
822
834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
823
|
-
checksum = "
|
835
|
+
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
824
836
|
dependencies = [
|
825
837
|
"cfg-if",
|
826
838
|
]
|
@@ -834,6 +846,15 @@ dependencies = [
|
|
834
846
|
"libc",
|
835
847
|
]
|
836
848
|
|
849
|
+
[[package]]
|
850
|
+
name = "mach2"
|
851
|
+
version = "0.4.0"
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
853
|
+
checksum = "2c29a677a8db77a45ddd1370ac4fbd5187f827780000202079e28949f1a75cb1"
|
854
|
+
dependencies = [
|
855
|
+
"libc",
|
856
|
+
]
|
857
|
+
|
837
858
|
[[package]]
|
838
859
|
name = "mach_o_sys"
|
839
860
|
version = "0.1.1"
|
@@ -885,34 +906,33 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
885
906
|
|
886
907
|
[[package]]
|
887
908
|
name = "miniz_oxide"
|
888
|
-
version = "0.5.
|
909
|
+
version = "0.5.3"
|
889
910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
890
|
-
checksum = "
|
911
|
+
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
|
891
912
|
dependencies = [
|
892
913
|
"adler",
|
893
914
|
]
|
894
915
|
|
895
916
|
[[package]]
|
896
917
|
name = "mio"
|
897
|
-
version = "0.8.
|
918
|
+
version = "0.8.3"
|
898
919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
899
|
-
checksum = "
|
920
|
+
checksum = "713d550d9b44d89174e066b7a6217ae06234c10cb47819a88290d2b353c31799"
|
900
921
|
dependencies = [
|
901
922
|
"libc",
|
902
923
|
"log",
|
903
|
-
"miow",
|
904
|
-
"ntapi",
|
905
924
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
906
|
-
"
|
925
|
+
"windows-sys",
|
907
926
|
]
|
908
927
|
|
909
928
|
[[package]]
|
910
|
-
name = "
|
911
|
-
version = "0.
|
929
|
+
name = "names"
|
930
|
+
version = "0.13.0"
|
912
931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
913
|
-
checksum = "
|
932
|
+
checksum = "e7d66043b25d4a6cccb23619d10c19c25304b355a7dccd4a8e11423dd2382146"
|
914
933
|
dependencies = [
|
915
|
-
"
|
934
|
+
"clap 3.1.18",
|
935
|
+
"rand 0.8.5",
|
916
936
|
]
|
917
937
|
|
918
938
|
[[package]]
|
@@ -974,15 +994,6 @@ dependencies = [
|
|
974
994
|
"minimal-lexical",
|
975
995
|
]
|
976
996
|
|
977
|
-
[[package]]
|
978
|
-
name = "ntapi"
|
979
|
-
version = "0.3.7"
|
980
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
981
|
-
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
|
982
|
-
dependencies = [
|
983
|
-
"winapi",
|
984
|
-
]
|
985
|
-
|
986
997
|
[[package]]
|
987
998
|
name = "num-format"
|
988
999
|
version = "0.4.0"
|
@@ -1005,9 +1016,9 @@ dependencies = [
|
|
1005
1016
|
|
1006
1017
|
[[package]]
|
1007
1018
|
name = "num-traits"
|
1008
|
-
version = "0.2.
|
1019
|
+
version = "0.2.15"
|
1009
1020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1010
|
-
checksum = "
|
1021
|
+
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
|
1011
1022
|
dependencies = [
|
1012
1023
|
"autocfg",
|
1013
1024
|
]
|
@@ -1034,24 +1045,36 @@ dependencies = [
|
|
1034
1045
|
|
1035
1046
|
[[package]]
|
1036
1047
|
name = "once_cell"
|
1037
|
-
version = "1.
|
1048
|
+
version = "1.12.0"
|
1038
1049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1039
|
-
checksum = "
|
1050
|
+
checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225"
|
1040
1051
|
|
1041
1052
|
[[package]]
|
1042
1053
|
name = "openssl"
|
1043
|
-
version = "0.10.
|
1054
|
+
version = "0.10.40"
|
1044
1055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1045
|
-
checksum = "
|
1056
|
+
checksum = "fb81a6430ac911acb25fe5ac8f1d2af1b4ea8a4fdfda0f1ee4292af2e2d8eb0e"
|
1046
1057
|
dependencies = [
|
1047
1058
|
"bitflags",
|
1048
1059
|
"cfg-if",
|
1049
1060
|
"foreign-types",
|
1050
1061
|
"libc",
|
1051
1062
|
"once_cell",
|
1063
|
+
"openssl-macros",
|
1052
1064
|
"openssl-sys",
|
1053
1065
|
]
|
1054
1066
|
|
1067
|
+
[[package]]
|
1068
|
+
name = "openssl-macros"
|
1069
|
+
version = "0.1.0"
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1071
|
+
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
|
1072
|
+
dependencies = [
|
1073
|
+
"proc-macro2",
|
1074
|
+
"quote",
|
1075
|
+
"syn",
|
1076
|
+
]
|
1077
|
+
|
1055
1078
|
[[package]]
|
1056
1079
|
name = "openssl-probe"
|
1057
1080
|
version = "0.1.5"
|
@@ -1060,9 +1083,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
1060
1083
|
|
1061
1084
|
[[package]]
|
1062
1085
|
name = "openssl-sys"
|
1063
|
-
version = "0.9.
|
1086
|
+
version = "0.9.73"
|
1064
1087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1065
|
-
checksum = "
|
1088
|
+
checksum = "9d5fd19fb3e0a8191c1e34935718976a3e70c112ab9a24af6d7cadccd9d90bc0"
|
1066
1089
|
dependencies = [
|
1067
1090
|
"autocfg",
|
1068
1091
|
"cc",
|
@@ -1073,9 +1096,22 @@ dependencies = [
|
|
1073
1096
|
|
1074
1097
|
[[package]]
|
1075
1098
|
name = "os_str_bytes"
|
1076
|
-
version = "6.
|
1099
|
+
version = "6.1.0"
|
1077
1100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1078
|
-
checksum = "
|
1101
|
+
checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa"
|
1102
|
+
|
1103
|
+
[[package]]
|
1104
|
+
name = "parking_lot_core"
|
1105
|
+
version = "0.9.3"
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1107
|
+
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
|
1108
|
+
dependencies = [
|
1109
|
+
"cfg-if",
|
1110
|
+
"libc",
|
1111
|
+
"redox_syscall",
|
1112
|
+
"smallvec",
|
1113
|
+
"windows-sys",
|
1114
|
+
]
|
1079
1115
|
|
1080
1116
|
[[package]]
|
1081
1117
|
name = "peeking_take_while"
|
@@ -1145,32 +1181,32 @@ dependencies = [
|
|
1145
1181
|
|
1146
1182
|
[[package]]
|
1147
1183
|
name = "proc-macro2"
|
1148
|
-
version = "1.0.
|
1184
|
+
version = "1.0.39"
|
1149
1185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1150
|
-
checksum = "
|
1186
|
+
checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f"
|
1151
1187
|
dependencies = [
|
1152
|
-
"unicode-
|
1188
|
+
"unicode-ident",
|
1153
1189
|
]
|
1154
1190
|
|
1155
1191
|
[[package]]
|
1156
1192
|
name = "proc-maps"
|
1157
|
-
version = "0.2.
|
1193
|
+
version = "0.2.1"
|
1158
1194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1159
|
-
checksum = "
|
1195
|
+
checksum = "a2f62c16ccc63ce2f590b17b8b9b33616f59631b8982ad52ed21e7f6d936c409"
|
1160
1196
|
dependencies = [
|
1161
1197
|
"anyhow",
|
1162
1198
|
"bindgen",
|
1163
1199
|
"libc",
|
1164
1200
|
"libproc 0.10.0",
|
1165
|
-
"
|
1201
|
+
"mach2",
|
1166
1202
|
"winapi",
|
1167
1203
|
]
|
1168
1204
|
|
1169
1205
|
[[package]]
|
1170
1206
|
name = "prost"
|
1171
|
-
version = "0.10.
|
1207
|
+
version = "0.10.4"
|
1172
1208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1173
|
-
checksum = "
|
1209
|
+
checksum = "71adf41db68aa0daaefc69bb30bcd68ded9b9abaad5d1fbb6304c4fb390e083e"
|
1174
1210
|
dependencies = [
|
1175
1211
|
"bytes",
|
1176
1212
|
"prost-derive",
|
@@ -1191,12 +1227,13 @@ dependencies = [
|
|
1191
1227
|
|
1192
1228
|
[[package]]
|
1193
1229
|
name = "pyroscope"
|
1194
|
-
version = "0.5.
|
1230
|
+
version = "0.5.2"
|
1195
1231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1196
|
-
checksum = "
|
1232
|
+
checksum = "fb63fa944e7139ecce68c6307e50b9f62780fc5b4de21ba2f04f32ec4f36499b"
|
1197
1233
|
dependencies = [
|
1198
1234
|
"libc",
|
1199
1235
|
"log",
|
1236
|
+
"names",
|
1200
1237
|
"reqwest",
|
1201
1238
|
"thiserror",
|
1202
1239
|
]
|
@@ -1216,9 +1253,9 @@ dependencies = [
|
|
1216
1253
|
|
1217
1254
|
[[package]]
|
1218
1255
|
name = "quick-xml"
|
1219
|
-
version = "0.
|
1256
|
+
version = "0.23.0"
|
1220
1257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1221
|
-
checksum = "
|
1258
|
+
checksum = "9279fbdacaad3baf559d8cabe0acc3d06e30ea14931af31af79578ac0946decc"
|
1222
1259
|
dependencies = [
|
1223
1260
|
"memchr",
|
1224
1261
|
]
|
@@ -1296,7 +1333,6 @@ version = "0.1.0"
|
|
1296
1333
|
dependencies = [
|
1297
1334
|
"pyroscope",
|
1298
1335
|
"pyroscope_rbspy",
|
1299
|
-
"rutie",
|
1300
1336
|
]
|
1301
1337
|
|
1302
1338
|
[[package]]
|
@@ -1307,7 +1343,7 @@ checksum = "bcbebdf0037de5a92722b0bca2965ce0a76cd5c962225cf355e31ac668ea653f"
|
|
1307
1343
|
dependencies = [
|
1308
1344
|
"anyhow",
|
1309
1345
|
"chrono",
|
1310
|
-
"clap 3.1.
|
1346
|
+
"clap 3.1.18",
|
1311
1347
|
"ctrlc",
|
1312
1348
|
"directories",
|
1313
1349
|
"elf",
|
@@ -1381,9 +1417,9 @@ dependencies = [
|
|
1381
1417
|
|
1382
1418
|
[[package]]
|
1383
1419
|
name = "regex"
|
1384
|
-
version = "1.5.
|
1420
|
+
version = "1.5.6"
|
1385
1421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1386
|
-
checksum = "
|
1422
|
+
checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
|
1387
1423
|
dependencies = [
|
1388
1424
|
"aho-corasick",
|
1389
1425
|
"memchr",
|
@@ -1392,9 +1428,9 @@ dependencies = [
|
|
1392
1428
|
|
1393
1429
|
[[package]]
|
1394
1430
|
name = "regex-syntax"
|
1395
|
-
version = "0.6.
|
1431
|
+
version = "0.6.26"
|
1396
1432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1397
|
-
checksum = "
|
1433
|
+
checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
|
1398
1434
|
|
1399
1435
|
[[package]]
|
1400
1436
|
name = "remoteprocess"
|
@@ -1443,6 +1479,7 @@ dependencies = [
|
|
1443
1479
|
"http",
|
1444
1480
|
"http-body",
|
1445
1481
|
"hyper",
|
1482
|
+
"hyper-rustls",
|
1446
1483
|
"hyper-tls",
|
1447
1484
|
"ipnet",
|
1448
1485
|
"js-sys",
|
@@ -1452,11 +1489,15 @@ dependencies = [
|
|
1452
1489
|
"native-tls",
|
1453
1490
|
"percent-encoding",
|
1454
1491
|
"pin-project-lite",
|
1492
|
+
"rustls",
|
1493
|
+
"rustls-native-certs",
|
1494
|
+
"rustls-pemfile 0.3.0",
|
1455
1495
|
"serde",
|
1456
1496
|
"serde_json",
|
1457
1497
|
"serde_urlencoded",
|
1458
1498
|
"tokio",
|
1459
1499
|
"tokio-native-tls",
|
1500
|
+
"tokio-rustls",
|
1460
1501
|
"url",
|
1461
1502
|
"wasm-bindgen",
|
1462
1503
|
"wasm-bindgen-futures",
|
@@ -1473,6 +1514,21 @@ dependencies = [
|
|
1473
1514
|
"bytemuck",
|
1474
1515
|
]
|
1475
1516
|
|
1517
|
+
[[package]]
|
1518
|
+
name = "ring"
|
1519
|
+
version = "0.16.20"
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1521
|
+
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
|
1522
|
+
dependencies = [
|
1523
|
+
"cc",
|
1524
|
+
"libc",
|
1525
|
+
"once_cell",
|
1526
|
+
"spin",
|
1527
|
+
"untrusted",
|
1528
|
+
"web-sys",
|
1529
|
+
"winapi",
|
1530
|
+
]
|
1531
|
+
|
1476
1532
|
[[package]]
|
1477
1533
|
name = "rustc-demangle"
|
1478
1534
|
version = "0.1.21"
|
@@ -1486,29 +1542,61 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
1542
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1487
1543
|
|
1488
1544
|
[[package]]
|
1489
|
-
name = "
|
1490
|
-
version = "0.
|
1545
|
+
name = "rustls"
|
1546
|
+
version = "0.20.6"
|
1491
1547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1492
|
-
checksum = "
|
1548
|
+
checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
|
1493
1549
|
dependencies = [
|
1494
|
-
"
|
1495
|
-
"
|
1550
|
+
"log",
|
1551
|
+
"ring",
|
1552
|
+
"sct",
|
1553
|
+
"webpki",
|
1554
|
+
]
|
1555
|
+
|
1556
|
+
[[package]]
|
1557
|
+
name = "rustls-native-certs"
|
1558
|
+
version = "0.6.2"
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1560
|
+
checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
|
1561
|
+
dependencies = [
|
1562
|
+
"openssl-probe",
|
1563
|
+
"rustls-pemfile 1.0.0",
|
1564
|
+
"schannel",
|
1565
|
+
"security-framework",
|
1566
|
+
]
|
1567
|
+
|
1568
|
+
[[package]]
|
1569
|
+
name = "rustls-pemfile"
|
1570
|
+
version = "0.3.0"
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1572
|
+
checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360"
|
1573
|
+
dependencies = [
|
1574
|
+
"base64",
|
1575
|
+
]
|
1576
|
+
|
1577
|
+
[[package]]
|
1578
|
+
name = "rustls-pemfile"
|
1579
|
+
version = "1.0.0"
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1581
|
+
checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9"
|
1582
|
+
dependencies = [
|
1583
|
+
"base64",
|
1496
1584
|
]
|
1497
1585
|
|
1498
1586
|
[[package]]
|
1499
1587
|
name = "ryu"
|
1500
|
-
version = "1.0.
|
1588
|
+
version = "1.0.10"
|
1501
1589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1502
|
-
checksum = "
|
1590
|
+
checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
|
1503
1591
|
|
1504
1592
|
[[package]]
|
1505
1593
|
name = "schannel"
|
1506
|
-
version = "0.1.
|
1594
|
+
version = "0.1.20"
|
1507
1595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1508
|
-
checksum = "
|
1596
|
+
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
|
1509
1597
|
dependencies = [
|
1510
1598
|
"lazy_static",
|
1511
|
-
"
|
1599
|
+
"windows-sys",
|
1512
1600
|
]
|
1513
1601
|
|
1514
1602
|
[[package]]
|
@@ -1537,6 +1625,16 @@ dependencies = [
|
|
1537
1625
|
"syn",
|
1538
1626
|
]
|
1539
1627
|
|
1628
|
+
[[package]]
|
1629
|
+
name = "sct"
|
1630
|
+
version = "0.7.0"
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1632
|
+
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
|
1633
|
+
dependencies = [
|
1634
|
+
"ring",
|
1635
|
+
"untrusted",
|
1636
|
+
]
|
1637
|
+
|
1540
1638
|
[[package]]
|
1541
1639
|
name = "security-framework"
|
1542
1640
|
version = "2.6.1"
|
@@ -1579,11 +1677,11 @@ dependencies = [
|
|
1579
1677
|
|
1580
1678
|
[[package]]
|
1581
1679
|
name = "serde_json"
|
1582
|
-
version = "1.0.
|
1680
|
+
version = "1.0.81"
|
1583
1681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1584
|
-
checksum = "
|
1682
|
+
checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
|
1585
1683
|
dependencies = [
|
1586
|
-
"itoa 1.0.
|
1684
|
+
"itoa 1.0.2",
|
1587
1685
|
"ryu",
|
1588
1686
|
"serde",
|
1589
1687
|
]
|
@@ -1595,7 +1693,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
1693
|
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
1596
1694
|
dependencies = [
|
1597
1695
|
"form_urlencoded",
|
1598
|
-
"itoa 1.0.
|
1696
|
+
"itoa 1.0.2",
|
1599
1697
|
"ryu",
|
1600
1698
|
"serde",
|
1601
1699
|
]
|
@@ -1628,6 +1726,12 @@ dependencies = [
|
|
1628
1726
|
"winapi",
|
1629
1727
|
]
|
1630
1728
|
|
1729
|
+
[[package]]
|
1730
|
+
name = "spin"
|
1731
|
+
version = "0.5.2"
|
1732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1733
|
+
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
1734
|
+
|
1631
1735
|
[[package]]
|
1632
1736
|
name = "stable_deref_trait"
|
1633
1737
|
version = "1.2.0"
|
@@ -1654,13 +1758,13 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
1654
1758
|
|
1655
1759
|
[[package]]
|
1656
1760
|
name = "syn"
|
1657
|
-
version = "1.0.
|
1761
|
+
version = "1.0.95"
|
1658
1762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1659
|
-
checksum = "
|
1763
|
+
checksum = "fbaf6116ab8924f39d52792136fb74fd60a80194cf1b1c6ffa6453eef1c3f942"
|
1660
1764
|
dependencies = [
|
1661
1765
|
"proc-macro2",
|
1662
1766
|
"quote",
|
1663
|
-
"unicode-
|
1767
|
+
"unicode-ident",
|
1664
1768
|
]
|
1665
1769
|
|
1666
1770
|
[[package]]
|
@@ -1769,9 +1873,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
1769
1873
|
|
1770
1874
|
[[package]]
|
1771
1875
|
name = "tokio"
|
1772
|
-
version = "1.18.
|
1876
|
+
version = "1.18.2"
|
1773
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1774
|
-
checksum = "
|
1878
|
+
checksum = "4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395"
|
1775
1879
|
dependencies = [
|
1776
1880
|
"bytes",
|
1777
1881
|
"libc",
|
@@ -1794,11 +1898,22 @@ dependencies = [
|
|
1794
1898
|
"tokio",
|
1795
1899
|
]
|
1796
1900
|
|
1901
|
+
[[package]]
|
1902
|
+
name = "tokio-rustls"
|
1903
|
+
version = "0.23.4"
|
1904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1905
|
+
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
|
1906
|
+
dependencies = [
|
1907
|
+
"rustls",
|
1908
|
+
"tokio",
|
1909
|
+
"webpki",
|
1910
|
+
]
|
1911
|
+
|
1797
1912
|
[[package]]
|
1798
1913
|
name = "tokio-util"
|
1799
|
-
version = "0.7.
|
1914
|
+
version = "0.7.2"
|
1800
1915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1801
|
-
checksum = "
|
1916
|
+
checksum = "f988a1a1adc2fb21f9c12aa96441da33a1728193ae0b95d2be22dbd17fcb4e5c"
|
1802
1917
|
dependencies = [
|
1803
1918
|
"bytes",
|
1804
1919
|
"futures-core",
|
@@ -1858,6 +1973,12 @@ version = "0.3.8"
|
|
1858
1973
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1859
1974
|
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
1860
1975
|
|
1976
|
+
[[package]]
|
1977
|
+
name = "unicode-ident"
|
1978
|
+
version = "1.0.0"
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1980
|
+
checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee"
|
1981
|
+
|
1861
1982
|
[[package]]
|
1862
1983
|
name = "unicode-normalization"
|
1863
1984
|
version = "0.1.19"
|
@@ -1874,10 +1995,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
1995
|
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
|
1875
1996
|
|
1876
1997
|
[[package]]
|
1877
|
-
name = "
|
1878
|
-
version = "0.
|
1998
|
+
name = "untrusted"
|
1999
|
+
version = "0.7.1"
|
1879
2000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1880
|
-
checksum = "
|
2001
|
+
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
1881
2002
|
|
1882
2003
|
[[package]]
|
1883
2004
|
name = "url"
|
@@ -2007,6 +2128,16 @@ dependencies = [
|
|
2007
2128
|
"wasm-bindgen",
|
2008
2129
|
]
|
2009
2130
|
|
2131
|
+
[[package]]
|
2132
|
+
name = "webpki"
|
2133
|
+
version = "0.22.0"
|
2134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2135
|
+
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
|
2136
|
+
dependencies = [
|
2137
|
+
"ring",
|
2138
|
+
"untrusted",
|
2139
|
+
]
|
2140
|
+
|
2010
2141
|
[[package]]
|
2011
2142
|
name = "which"
|
2012
2143
|
version = "4.2.5"
|
@@ -2049,6 +2180,49 @@ version = "0.4.0"
|
|
2049
2180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2050
2181
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2051
2182
|
|
2183
|
+
[[package]]
|
2184
|
+
name = "windows-sys"
|
2185
|
+
version = "0.36.1"
|
2186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2187
|
+
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
2188
|
+
dependencies = [
|
2189
|
+
"windows_aarch64_msvc",
|
2190
|
+
"windows_i686_gnu",
|
2191
|
+
"windows_i686_msvc",
|
2192
|
+
"windows_x86_64_gnu",
|
2193
|
+
"windows_x86_64_msvc",
|
2194
|
+
]
|
2195
|
+
|
2196
|
+
[[package]]
|
2197
|
+
name = "windows_aarch64_msvc"
|
2198
|
+
version = "0.36.1"
|
2199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2200
|
+
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
2201
|
+
|
2202
|
+
[[package]]
|
2203
|
+
name = "windows_i686_gnu"
|
2204
|
+
version = "0.36.1"
|
2205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2206
|
+
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
2207
|
+
|
2208
|
+
[[package]]
|
2209
|
+
name = "windows_i686_msvc"
|
2210
|
+
version = "0.36.1"
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2212
|
+
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
2213
|
+
|
2214
|
+
[[package]]
|
2215
|
+
name = "windows_x86_64_gnu"
|
2216
|
+
version = "0.36.1"
|
2217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2218
|
+
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
2219
|
+
|
2220
|
+
[[package]]
|
2221
|
+
name = "windows_x86_64_msvc"
|
2222
|
+
version = "0.36.1"
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2224
|
+
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|
2225
|
+
|
2052
2226
|
[[package]]
|
2053
2227
|
name = "winreg"
|
2054
2228
|
version = "0.10.1"
|