crawlberg 1.2.1 → 1.3.3
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 +5 -0
- data/ext/crawlberg_rb/native/Cargo.lock +111 -142
- data/ext/crawlberg_rb/native/Cargo.toml +19 -2
- data/ext/crawlberg_rb/native/extconf.rb +5 -0
- data/ext/crawlberg_rb/src/lib.rs +223 -30
- data/lib/crawlberg/native.rb +48 -97
- data/lib/crawlberg/version.rb +3 -3
- data/lib/crawlberg.rb +2 -2
- data/sig/types.rbs +456 -449
- metadata +2 -3
- data/lib/crawlberg_rb.so +0 -0
|
@@ -46,12 +46,6 @@ dependencies = [
|
|
|
46
46
|
"alloc-no-stdlib",
|
|
47
47
|
]
|
|
48
48
|
|
|
49
|
-
[[package]]
|
|
50
|
-
name = "allocator-api2"
|
|
51
|
-
version = "0.2.21"
|
|
52
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
-
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
54
|
-
|
|
55
49
|
[[package]]
|
|
56
50
|
name = "android_system_properties"
|
|
57
51
|
version = "0.1.6"
|
|
@@ -70,12 +64,6 @@ dependencies = [
|
|
|
70
64
|
"rustversion",
|
|
71
65
|
]
|
|
72
66
|
|
|
73
|
-
[[package]]
|
|
74
|
-
name = "arrayref"
|
|
75
|
-
version = "0.3.9"
|
|
76
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
-
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
78
|
-
|
|
79
67
|
[[package]]
|
|
80
68
|
name = "arrayvec"
|
|
81
69
|
version = "0.7.8"
|
|
@@ -204,11 +192,10 @@ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
|
204
192
|
|
|
205
193
|
[[package]]
|
|
206
194
|
name = "blake3"
|
|
207
|
-
version = "1.8.
|
|
195
|
+
version = "1.8.7"
|
|
208
196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
-
checksum = "
|
|
197
|
+
checksum = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae"
|
|
210
198
|
dependencies = [
|
|
211
|
-
"arrayref",
|
|
212
199
|
"arrayvec",
|
|
213
200
|
"cc",
|
|
214
201
|
"cfg-if",
|
|
@@ -227,9 +214,9 @@ dependencies = [
|
|
|
227
214
|
|
|
228
215
|
[[package]]
|
|
229
216
|
name = "block-buffer"
|
|
230
|
-
version = "0.12.
|
|
217
|
+
version = "0.12.1"
|
|
231
218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
-
checksum = "
|
|
219
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
233
220
|
dependencies = [
|
|
234
221
|
"hybrid-array",
|
|
235
222
|
]
|
|
@@ -281,9 +268,9 @@ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
|
281
268
|
|
|
282
269
|
[[package]]
|
|
283
270
|
name = "cc"
|
|
284
|
-
version = "1.4.
|
|
271
|
+
version = "1.4.4"
|
|
285
272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
-
checksum = "
|
|
273
|
+
checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
|
|
287
274
|
dependencies = [
|
|
288
275
|
"find-msvc-tools",
|
|
289
276
|
"jobserver",
|
|
@@ -562,9 +549,9 @@ dependencies = [
|
|
|
562
549
|
|
|
563
550
|
[[package]]
|
|
564
551
|
name = "crawlberg"
|
|
565
|
-
version = "1.
|
|
552
|
+
version = "1.3.3"
|
|
566
553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
-
checksum = "
|
|
554
|
+
checksum = "af1a2a5cc2327d1e047277c081c53922bfa76cabd2d80a0181de708ed6bf5d8d"
|
|
568
555
|
dependencies = [
|
|
569
556
|
"ahash",
|
|
570
557
|
"aho-corasick",
|
|
@@ -601,11 +588,12 @@ dependencies = [
|
|
|
601
588
|
"tower",
|
|
602
589
|
"tracing",
|
|
603
590
|
"url",
|
|
591
|
+
"web-time",
|
|
604
592
|
]
|
|
605
593
|
|
|
606
594
|
[[package]]
|
|
607
595
|
name = "crawlberg-rb"
|
|
608
|
-
version = "1.
|
|
596
|
+
version = "1.3.3"
|
|
609
597
|
dependencies = [
|
|
610
598
|
"crawlberg",
|
|
611
599
|
"futures",
|
|
@@ -649,9 +637,9 @@ dependencies = [
|
|
|
649
637
|
|
|
650
638
|
[[package]]
|
|
651
639
|
name = "crypto-common"
|
|
652
|
-
version = "0.2.
|
|
640
|
+
version = "0.2.2"
|
|
653
641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
-
checksum = "
|
|
642
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
655
643
|
dependencies = [
|
|
656
644
|
"hybrid-array",
|
|
657
645
|
]
|
|
@@ -694,13 +682,13 @@ dependencies = [
|
|
|
694
682
|
|
|
695
683
|
[[package]]
|
|
696
684
|
name = "digest"
|
|
697
|
-
version = "0.11.
|
|
685
|
+
version = "0.11.3"
|
|
698
686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
-
checksum = "
|
|
687
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
700
688
|
dependencies = [
|
|
701
|
-
"block-buffer 0.12.
|
|
689
|
+
"block-buffer 0.12.1",
|
|
702
690
|
"const-oid",
|
|
703
|
-
"crypto-common 0.2.
|
|
691
|
+
"crypto-common 0.2.2",
|
|
704
692
|
]
|
|
705
693
|
|
|
706
694
|
[[package]]
|
|
@@ -752,9 +740,9 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
|
752
740
|
|
|
753
741
|
[[package]]
|
|
754
742
|
name = "either"
|
|
755
|
-
version = "1.
|
|
743
|
+
version = "1.18.0"
|
|
756
744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
-
checksum = "
|
|
745
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
758
746
|
|
|
759
747
|
[[package]]
|
|
760
748
|
name = "encoding_rs"
|
|
@@ -798,9 +786,9 @@ dependencies = [
|
|
|
798
786
|
|
|
799
787
|
[[package]]
|
|
800
788
|
name = "find-msvc-tools"
|
|
801
|
-
version = "0.1.
|
|
789
|
+
version = "0.1.11"
|
|
802
790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
-
checksum = "
|
|
791
|
+
checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
|
|
804
792
|
|
|
805
793
|
[[package]]
|
|
806
794
|
name = "flate2"
|
|
@@ -818,12 +806,6 @@ version = "1.0.7"
|
|
|
818
806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
807
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
820
808
|
|
|
821
|
-
[[package]]
|
|
822
|
-
name = "foldhash"
|
|
823
|
-
version = "0.2.0"
|
|
824
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
-
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
826
|
-
|
|
827
809
|
[[package]]
|
|
828
810
|
name = "form_urlencoded"
|
|
829
811
|
version = "1.2.2"
|
|
@@ -850,9 +832,9 @@ dependencies = [
|
|
|
850
832
|
|
|
851
833
|
[[package]]
|
|
852
834
|
name = "futures"
|
|
853
|
-
version = "0.3.
|
|
835
|
+
version = "0.3.34"
|
|
854
836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
-
checksum = "
|
|
837
|
+
checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
|
|
856
838
|
dependencies = [
|
|
857
839
|
"futures-channel",
|
|
858
840
|
"futures-core",
|
|
@@ -865,9 +847,9 @@ dependencies = [
|
|
|
865
847
|
|
|
866
848
|
[[package]]
|
|
867
849
|
name = "futures-channel"
|
|
868
|
-
version = "0.3.
|
|
850
|
+
version = "0.3.34"
|
|
869
851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
-
checksum = "
|
|
852
|
+
checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
|
|
871
853
|
dependencies = [
|
|
872
854
|
"futures-core",
|
|
873
855
|
"futures-sink",
|
|
@@ -875,15 +857,15 @@ dependencies = [
|
|
|
875
857
|
|
|
876
858
|
[[package]]
|
|
877
859
|
name = "futures-core"
|
|
878
|
-
version = "0.3.
|
|
860
|
+
version = "0.3.34"
|
|
879
861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
-
checksum = "
|
|
862
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
881
863
|
|
|
882
864
|
[[package]]
|
|
883
865
|
name = "futures-executor"
|
|
884
|
-
version = "0.3.
|
|
866
|
+
version = "0.3.34"
|
|
885
867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
-
checksum = "
|
|
868
|
+
checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
|
|
887
869
|
dependencies = [
|
|
888
870
|
"futures-core",
|
|
889
871
|
"futures-task",
|
|
@@ -892,44 +874,44 @@ dependencies = [
|
|
|
892
874
|
|
|
893
875
|
[[package]]
|
|
894
876
|
name = "futures-io"
|
|
895
|
-
version = "0.3.
|
|
877
|
+
version = "0.3.34"
|
|
896
878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
-
checksum = "
|
|
879
|
+
checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
|
|
898
880
|
|
|
899
881
|
[[package]]
|
|
900
882
|
name = "futures-macro"
|
|
901
|
-
version = "0.3.
|
|
883
|
+
version = "0.3.34"
|
|
902
884
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
-
checksum = "
|
|
885
|
+
checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
|
|
904
886
|
dependencies = [
|
|
905
887
|
"proc-macro2",
|
|
906
888
|
"quote",
|
|
907
|
-
"syn
|
|
889
|
+
"syn 3.0.3",
|
|
908
890
|
]
|
|
909
891
|
|
|
910
892
|
[[package]]
|
|
911
893
|
name = "futures-sink"
|
|
912
|
-
version = "0.3.
|
|
894
|
+
version = "0.3.34"
|
|
913
895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
-
checksum = "
|
|
896
|
+
checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
|
|
915
897
|
|
|
916
898
|
[[package]]
|
|
917
899
|
name = "futures-task"
|
|
918
|
-
version = "0.3.
|
|
900
|
+
version = "0.3.34"
|
|
919
901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
-
checksum = "
|
|
902
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
921
903
|
|
|
922
904
|
[[package]]
|
|
923
905
|
name = "futures-timer"
|
|
924
|
-
version = "3.0.
|
|
906
|
+
version = "3.0.4"
|
|
925
907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
-
checksum = "
|
|
908
|
+
checksum = "af43fadb8a98512d547e37b4e92e0ced13e205c061b87b4623eff01d918d6968"
|
|
927
909
|
|
|
928
910
|
[[package]]
|
|
929
911
|
name = "futures-util"
|
|
930
|
-
version = "0.3.
|
|
912
|
+
version = "0.3.34"
|
|
931
913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
-
checksum = "
|
|
914
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
933
915
|
dependencies = [
|
|
934
916
|
"futures-channel",
|
|
935
917
|
"futures-core",
|
|
@@ -1011,9 +993,9 @@ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
|
1011
993
|
|
|
1012
994
|
[[package]]
|
|
1013
995
|
name = "h2"
|
|
1014
|
-
version = "0.4.
|
|
996
|
+
version = "0.4.18"
|
|
1015
997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
-
checksum = "
|
|
998
|
+
checksum = "839c0e8a181239723652be9062bb56ca5bf5f64011f73b623f6f4fc59086a228"
|
|
1017
999
|
dependencies = [
|
|
1018
1000
|
"atomic-waker",
|
|
1019
1001
|
"bytes",
|
|
@@ -1039,11 +1021,6 @@ name = "hashbrown"
|
|
|
1039
1021
|
version = "0.17.1"
|
|
1040
1022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
1023
|
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1042
|
-
dependencies = [
|
|
1043
|
-
"allocator-api2",
|
|
1044
|
-
"equivalent",
|
|
1045
|
-
"foldhash",
|
|
1046
|
-
]
|
|
1047
1024
|
|
|
1048
1025
|
[[package]]
|
|
1049
1026
|
name = "heck"
|
|
@@ -1053,15 +1030,15 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
1053
1030
|
|
|
1054
1031
|
[[package]]
|
|
1055
1032
|
name = "html-escape"
|
|
1056
|
-
version = "0.2.
|
|
1033
|
+
version = "0.2.15"
|
|
1057
1034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
-
checksum = "
|
|
1035
|
+
checksum = "c9356095b4b41197bba32173600e1582792cda618f65d12f68e2e77d273413c5"
|
|
1059
1036
|
|
|
1060
1037
|
[[package]]
|
|
1061
1038
|
name = "html-to-markdown-rs"
|
|
1062
|
-
version = "3.
|
|
1039
|
+
version = "3.11.2"
|
|
1063
1040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
-
checksum = "
|
|
1041
|
+
checksum = "718ba0514ab76ad0caccf199863df9fb94ed0b7196ae39505900826d4f7441ab"
|
|
1065
1042
|
dependencies = [
|
|
1066
1043
|
"ahash",
|
|
1067
1044
|
"astral-tl",
|
|
@@ -1070,7 +1047,6 @@ dependencies = [
|
|
|
1070
1047
|
"html-escape",
|
|
1071
1048
|
"html5ever",
|
|
1072
1049
|
"image",
|
|
1073
|
-
"lru",
|
|
1074
1050
|
"memchr",
|
|
1075
1051
|
"once_cell",
|
|
1076
1052
|
"phf 0.14.0",
|
|
@@ -1078,6 +1054,7 @@ dependencies = [
|
|
|
1078
1054
|
"serde",
|
|
1079
1055
|
"serde_json",
|
|
1080
1056
|
"thiserror",
|
|
1057
|
+
"tracing",
|
|
1081
1058
|
]
|
|
1082
1059
|
|
|
1083
1060
|
[[package]]
|
|
@@ -1112,9 +1089,9 @@ dependencies = [
|
|
|
1112
1089
|
|
|
1113
1090
|
[[package]]
|
|
1114
1091
|
name = "http-body-util"
|
|
1115
|
-
version = "0.1.
|
|
1092
|
+
version = "0.1.5"
|
|
1116
1093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
-
checksum = "
|
|
1094
|
+
checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
|
|
1118
1095
|
dependencies = [
|
|
1119
1096
|
"bytes",
|
|
1120
1097
|
"futures-core",
|
|
@@ -1131,9 +1108,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
1131
1108
|
|
|
1132
1109
|
[[package]]
|
|
1133
1110
|
name = "hybrid-array"
|
|
1134
|
-
version = "0.4.
|
|
1111
|
+
version = "0.4.14"
|
|
1135
1112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
-
checksum = "
|
|
1113
|
+
checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
|
|
1137
1114
|
dependencies = [
|
|
1138
1115
|
"typenum",
|
|
1139
1116
|
]
|
|
@@ -1225,9 +1202,9 @@ dependencies = [
|
|
|
1225
1202
|
|
|
1226
1203
|
[[package]]
|
|
1227
1204
|
name = "icu_collections"
|
|
1228
|
-
version = "2.
|
|
1205
|
+
version = "2.3.0"
|
|
1229
1206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
-
checksum = "
|
|
1207
|
+
checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
|
|
1231
1208
|
dependencies = [
|
|
1232
1209
|
"displaydoc",
|
|
1233
1210
|
"potential_utf",
|
|
@@ -1239,9 +1216,9 @@ dependencies = [
|
|
|
1239
1216
|
|
|
1240
1217
|
[[package]]
|
|
1241
1218
|
name = "icu_locale_core"
|
|
1242
|
-
version = "2.
|
|
1219
|
+
version = "2.3.0"
|
|
1243
1220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
-
checksum = "
|
|
1221
|
+
checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
|
|
1245
1222
|
dependencies = [
|
|
1246
1223
|
"displaydoc",
|
|
1247
1224
|
"litemap",
|
|
@@ -1252,9 +1229,9 @@ dependencies = [
|
|
|
1252
1229
|
|
|
1253
1230
|
[[package]]
|
|
1254
1231
|
name = "icu_normalizer"
|
|
1255
|
-
version = "2.
|
|
1232
|
+
version = "2.3.0"
|
|
1256
1233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
-
checksum = "
|
|
1234
|
+
checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
|
|
1258
1235
|
dependencies = [
|
|
1259
1236
|
"icu_collections",
|
|
1260
1237
|
"icu_normalizer_data",
|
|
@@ -1266,16 +1243,17 @@ dependencies = [
|
|
|
1266
1243
|
|
|
1267
1244
|
[[package]]
|
|
1268
1245
|
name = "icu_normalizer_data"
|
|
1269
|
-
version = "2.
|
|
1246
|
+
version = "2.3.0"
|
|
1270
1247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
-
checksum = "
|
|
1248
|
+
checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
|
|
1272
1249
|
|
|
1273
1250
|
[[package]]
|
|
1274
1251
|
name = "icu_properties"
|
|
1275
|
-
version = "2.
|
|
1252
|
+
version = "2.3.0"
|
|
1276
1253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
-
checksum = "
|
|
1254
|
+
checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
|
|
1278
1255
|
dependencies = [
|
|
1256
|
+
"displaydoc",
|
|
1279
1257
|
"icu_collections",
|
|
1280
1258
|
"icu_locale_core",
|
|
1281
1259
|
"icu_properties_data",
|
|
@@ -1286,15 +1264,15 @@ dependencies = [
|
|
|
1286
1264
|
|
|
1287
1265
|
[[package]]
|
|
1288
1266
|
name = "icu_properties_data"
|
|
1289
|
-
version = "2.
|
|
1267
|
+
version = "2.3.0"
|
|
1290
1268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
-
checksum = "
|
|
1269
|
+
checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
|
|
1292
1270
|
|
|
1293
1271
|
[[package]]
|
|
1294
1272
|
name = "icu_provider"
|
|
1295
|
-
version = "2.
|
|
1273
|
+
version = "2.3.1"
|
|
1296
1274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
-
checksum = "
|
|
1275
|
+
checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
|
|
1298
1276
|
dependencies = [
|
|
1299
1277
|
"displaydoc",
|
|
1300
1278
|
"icu_locale_core",
|
|
@@ -1366,9 +1344,9 @@ dependencies = [
|
|
|
1366
1344
|
|
|
1367
1345
|
[[package]]
|
|
1368
1346
|
name = "inotify"
|
|
1369
|
-
version = "0.11.
|
|
1347
|
+
version = "0.11.5"
|
|
1370
1348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
-
checksum = "
|
|
1349
|
+
checksum = "4cc00ea907cab49550b7da656f80ebb97be1b997d931fbcd28d39734e17ce592"
|
|
1372
1350
|
dependencies = [
|
|
1373
1351
|
"bitflags",
|
|
1374
1352
|
"inotify-sys",
|
|
@@ -1377,9 +1355,9 @@ dependencies = [
|
|
|
1377
1355
|
|
|
1378
1356
|
[[package]]
|
|
1379
1357
|
name = "inotify-sys"
|
|
1380
|
-
version = "0.1.
|
|
1358
|
+
version = "0.1.8"
|
|
1381
1359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
-
checksum = "
|
|
1360
|
+
checksum = "c033f80b2c113cdf91ab7a33faa9cbc014726dcad99880c8609af2a370edf37d"
|
|
1383
1361
|
dependencies = [
|
|
1384
1362
|
"libc",
|
|
1385
1363
|
]
|
|
@@ -1477,9 +1455,9 @@ dependencies = [
|
|
|
1477
1455
|
|
|
1478
1456
|
[[package]]
|
|
1479
1457
|
name = "kqueue"
|
|
1480
|
-
version = "1.
|
|
1458
|
+
version = "1.2.1"
|
|
1481
1459
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
-
checksum = "
|
|
1460
|
+
checksum = "8d763e5b24120b4ddf50de6c92308156765aabfbbccebf401da7cff2d70a41ea"
|
|
1483
1461
|
dependencies = [
|
|
1484
1462
|
"kqueue-sys",
|
|
1485
1463
|
"libc",
|
|
@@ -1519,18 +1497,18 @@ dependencies = [
|
|
|
1519
1497
|
|
|
1520
1498
|
[[package]]
|
|
1521
1499
|
name = "libredox"
|
|
1522
|
-
version = "0.1.
|
|
1500
|
+
version = "0.1.20"
|
|
1523
1501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
-
checksum = "
|
|
1502
|
+
checksum = "28d0a00925a9f930d679b6789b721e3a7f9ed110f41b86d2497caa780c3a070a"
|
|
1525
1503
|
dependencies = [
|
|
1526
1504
|
"libc",
|
|
1527
1505
|
]
|
|
1528
1506
|
|
|
1529
1507
|
[[package]]
|
|
1530
1508
|
name = "litemap"
|
|
1531
|
-
version = "0.8.
|
|
1509
|
+
version = "0.8.3"
|
|
1532
1510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
-
checksum = "
|
|
1511
|
+
checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
|
|
1534
1512
|
|
|
1535
1513
|
[[package]]
|
|
1536
1514
|
name = "litrs"
|
|
@@ -1553,15 +1531,6 @@ version = "0.4.33"
|
|
|
1553
1531
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
1532
|
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
1555
1533
|
|
|
1556
|
-
[[package]]
|
|
1557
|
-
name = "lru"
|
|
1558
|
-
version = "0.18.1"
|
|
1559
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
-
checksum = "0b6180140927ee907000b0aa540091f6ea512ead4447c92b8fc35bc72788a5a6"
|
|
1561
|
-
dependencies = [
|
|
1562
|
-
"hashbrown 0.17.1",
|
|
1563
|
-
]
|
|
1564
|
-
|
|
1565
1534
|
[[package]]
|
|
1566
1535
|
name = "lru-slab"
|
|
1567
1536
|
version = "0.1.2"
|
|
@@ -1738,9 +1707,9 @@ dependencies = [
|
|
|
1738
1707
|
|
|
1739
1708
|
[[package]]
|
|
1740
1709
|
name = "opentelemetry-semantic-conventions"
|
|
1741
|
-
version = "0.32.
|
|
1710
|
+
version = "0.32.1"
|
|
1742
1711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
-
checksum = "
|
|
1712
|
+
checksum = "c913ac17a6c451661ee255f4625d143e51647ae78ebd969b75e41c4442f4fe47"
|
|
1744
1713
|
|
|
1745
1714
|
[[package]]
|
|
1746
1715
|
name = "option-ext"
|
|
@@ -1867,9 +1836,9 @@ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
|
1867
1836
|
|
|
1868
1837
|
[[package]]
|
|
1869
1838
|
name = "pkg-config"
|
|
1870
|
-
version = "0.3.
|
|
1839
|
+
version = "0.3.34"
|
|
1871
1840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1872
|
-
checksum = "
|
|
1841
|
+
checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
|
|
1873
1842
|
|
|
1874
1843
|
[[package]]
|
|
1875
1844
|
name = "png"
|
|
@@ -1886,9 +1855,9 @@ dependencies = [
|
|
|
1886
1855
|
|
|
1887
1856
|
[[package]]
|
|
1888
1857
|
name = "potential_utf"
|
|
1889
|
-
version = "0.1.
|
|
1858
|
+
version = "0.1.6"
|
|
1890
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
|
-
checksum = "
|
|
1860
|
+
checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
|
|
1892
1861
|
dependencies = [
|
|
1893
1862
|
"zerovec",
|
|
1894
1863
|
]
|
|
@@ -1982,9 +1951,9 @@ dependencies = [
|
|
|
1982
1951
|
|
|
1983
1952
|
[[package]]
|
|
1984
1953
|
name = "quinn-proto"
|
|
1985
|
-
version = "0.11.
|
|
1954
|
+
version = "0.11.17"
|
|
1986
1955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
|
-
checksum = "
|
|
1956
|
+
checksum = "04759210543be93709136e28212294a659ef5001836ff4eab4d663e4529bba83"
|
|
1988
1957
|
dependencies = [
|
|
1989
1958
|
"aws-lc-rs",
|
|
1990
1959
|
"bytes",
|
|
@@ -2104,9 +2073,9 @@ dependencies = [
|
|
|
2104
2073
|
|
|
2105
2074
|
[[package]]
|
|
2106
2075
|
name = "rb-sys-build"
|
|
2107
|
-
version = "0.9.
|
|
2076
|
+
version = "0.9.130"
|
|
2108
2077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2109
|
-
checksum = "
|
|
2078
|
+
checksum = "05be6f9c86fe5482808162826f6c047d093b3670582296c770de1d94f8066694"
|
|
2110
2079
|
dependencies = [
|
|
2111
2080
|
"bindgen",
|
|
2112
2081
|
"lazy_static",
|
|
@@ -2306,9 +2275,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
|
2306
2275
|
|
|
2307
2276
|
[[package]]
|
|
2308
2277
|
name = "rustls-webpki"
|
|
2309
|
-
version = "0.103.
|
|
2278
|
+
version = "0.103.14"
|
|
2310
2279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2311
|
-
checksum = "
|
|
2280
|
+
checksum = "0527518605e68109d875e248ea259b6758801cf165e4b2c2733ae3b51f12535a"
|
|
2312
2281
|
dependencies = [
|
|
2313
2282
|
"aws-lc-rs",
|
|
2314
2283
|
"ring",
|
|
@@ -2435,9 +2404,9 @@ dependencies = [
|
|
|
2435
2404
|
|
|
2436
2405
|
[[package]]
|
|
2437
2406
|
name = "sha1"
|
|
2438
|
-
version = "0.10.
|
|
2407
|
+
version = "0.10.7"
|
|
2439
2408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2440
|
-
checksum = "
|
|
2409
|
+
checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
|
|
2441
2410
|
dependencies = [
|
|
2442
2411
|
"cfg-if",
|
|
2443
2412
|
"cpufeatures 0.2.17",
|
|
@@ -2452,7 +2421,7 @@ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
|
2452
2421
|
dependencies = [
|
|
2453
2422
|
"cfg-if",
|
|
2454
2423
|
"cpufeatures 0.3.0",
|
|
2455
|
-
"digest 0.11.
|
|
2424
|
+
"digest 0.11.3",
|
|
2456
2425
|
]
|
|
2457
2426
|
|
|
2458
2427
|
[[package]]
|
|
@@ -2702,9 +2671,9 @@ dependencies = [
|
|
|
2702
2671
|
|
|
2703
2672
|
[[package]]
|
|
2704
2673
|
name = "tinystr"
|
|
2705
|
-
version = "0.8.
|
|
2674
|
+
version = "0.8.4"
|
|
2706
2675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
-
checksum = "
|
|
2676
|
+
checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
|
|
2708
2677
|
dependencies = [
|
|
2709
2678
|
"displaydoc",
|
|
2710
2679
|
"zerovec",
|
|
@@ -2934,9 +2903,9 @@ dependencies = [
|
|
|
2934
2903
|
|
|
2935
2904
|
[[package]]
|
|
2936
2905
|
name = "typenum"
|
|
2937
|
-
version = "1.20.
|
|
2906
|
+
version = "1.20.1"
|
|
2938
2907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2939
|
-
checksum = "
|
|
2908
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
2940
2909
|
|
|
2941
2910
|
[[package]]
|
|
2942
2911
|
name = "unicode-ident"
|
|
@@ -3091,9 +3060,9 @@ dependencies = [
|
|
|
3091
3060
|
|
|
3092
3061
|
[[package]]
|
|
3093
3062
|
name = "web_atoms"
|
|
3094
|
-
version = "0.2.
|
|
3063
|
+
version = "0.2.6"
|
|
3095
3064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3096
|
-
checksum = "
|
|
3065
|
+
checksum = "ba8b815c1b593dc0baf78dd0f4fc8fdb2de53198fb1163738093e9a311c33fb3"
|
|
3097
3066
|
dependencies = [
|
|
3098
3067
|
"phf 0.13.1",
|
|
3099
3068
|
"phf_codegen",
|
|
@@ -3118,9 +3087,9 @@ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
|
3118
3087
|
|
|
3119
3088
|
[[package]]
|
|
3120
3089
|
name = "which"
|
|
3121
|
-
version = "8.0.
|
|
3090
|
+
version = "8.0.5"
|
|
3122
3091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3123
|
-
checksum = "
|
|
3092
|
+
checksum = "8f3ef584124b911bcc3875c2f1472e80f24361ceb789bd1c62b3e9a3df9ff43c"
|
|
3124
3093
|
dependencies = [
|
|
3125
3094
|
"libc",
|
|
3126
3095
|
]
|
|
@@ -3374,9 +3343,9 @@ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
|
3374
3343
|
|
|
3375
3344
|
[[package]]
|
|
3376
3345
|
name = "writeable"
|
|
3377
|
-
version = "0.6.
|
|
3346
|
+
version = "0.6.4"
|
|
3378
3347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3379
|
-
checksum = "
|
|
3348
|
+
checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
|
|
3380
3349
|
|
|
3381
3350
|
[[package]]
|
|
3382
3351
|
name = "yoke"
|
|
@@ -3450,9 +3419,9 @@ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
|
3450
3419
|
|
|
3451
3420
|
[[package]]
|
|
3452
3421
|
name = "zerotrie"
|
|
3453
|
-
version = "0.2.
|
|
3422
|
+
version = "0.2.5"
|
|
3454
3423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3455
|
-
checksum = "
|
|
3424
|
+
checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
|
|
3456
3425
|
dependencies = [
|
|
3457
3426
|
"displaydoc",
|
|
3458
3427
|
"yoke",
|
|
@@ -3461,9 +3430,9 @@ dependencies = [
|
|
|
3461
3430
|
|
|
3462
3431
|
[[package]]
|
|
3463
3432
|
name = "zerovec"
|
|
3464
|
-
version = "0.11.
|
|
3433
|
+
version = "0.11.8"
|
|
3465
3434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3466
|
-
checksum = "
|
|
3435
|
+
checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
|
|
3467
3436
|
dependencies = [
|
|
3468
3437
|
"yoke",
|
|
3469
3438
|
"zerofrom",
|
|
@@ -3472,13 +3441,13 @@ dependencies = [
|
|
|
3472
3441
|
|
|
3473
3442
|
[[package]]
|
|
3474
3443
|
name = "zerovec-derive"
|
|
3475
|
-
version = "0.11.
|
|
3444
|
+
version = "0.11.6"
|
|
3476
3445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3477
|
-
checksum = "
|
|
3446
|
+
checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
|
|
3478
3447
|
dependencies = [
|
|
3479
3448
|
"proc-macro2",
|
|
3480
3449
|
"quote",
|
|
3481
|
-
"syn
|
|
3450
|
+
"syn 3.0.3",
|
|
3482
3451
|
]
|
|
3483
3452
|
|
|
3484
3453
|
[[package]]
|
|
@@ -3489,9 +3458,9 @@ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
|
3489
3458
|
|
|
3490
3459
|
[[package]]
|
|
3491
3460
|
name = "zune-core"
|
|
3492
|
-
version = "0.5.
|
|
3461
|
+
version = "0.5.3"
|
|
3493
3462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3494
|
-
checksum = "
|
|
3463
|
+
checksum = "d56377fd46368984a170bc5aac5567e52ca5da874caa60bea39fcbca78fb658b"
|
|
3495
3464
|
|
|
3496
3465
|
[[package]]
|
|
3497
3466
|
name = "zune-jpeg"
|