@@ -37,7 +37,7 @@ version = "0.0.0"
37
37
dependencies = [
38
38
" compiler_builtins" ,
39
39
" core" ,
40
- " rand" ,
40
+ " rand 0.7.3 " ,
41
41
" rand_xorshift" ,
42
42
]
43
43
@@ -325,6 +325,7 @@ dependencies = [
325
325
" openssl" ,
326
326
" percent-encoding 2.1.0" ,
327
327
" pretty_env_logger" ,
328
+ " rand 0.8.3" ,
328
329
" rustc-workspace-hack" ,
329
330
" rustfix" ,
330
331
" same-file" ,
@@ -757,7 +758,7 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
757
758
name = " core"
758
759
version = " 0.0.0"
759
760
dependencies = [
760
- " rand" ,
761
+ " rand 0.7.3 " ,
761
762
]
762
763
763
764
[[package ]]
@@ -1662,7 +1663,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
1663
checksum = " 3ca8957e71f04a205cb162508f9326aea04676c8dfd0711220190d6b83664f3f"
1663
1664
dependencies = [
1664
1665
" bitmaps" ,
1665
- " rand_core" ,
1666
+ " rand_core 0.5.1 " ,
1666
1667
" rand_xoshiro" ,
1667
1668
" sized-chunks" ,
1668
1669
" typenum" ,
@@ -1867,7 +1868,7 @@ dependencies = [
1867
1868
" lazy_static" ,
1868
1869
" log" ,
1869
1870
" parking_lot" ,
1870
- " rand" ,
1871
+ " rand 0.7.3 " ,
1871
1872
" serde" ,
1872
1873
]
1873
1874
@@ -1912,9 +1913,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1912
1913
1913
1914
[[package ]]
1914
1915
name = " libc"
1915
- version = " 0.2.85 "
1916
+ version = " 0.2.88 "
1916
1917
source = " registry+https://github.com/rust-lang/crates.io-index"
1917
- checksum = " 7ccac4b00700875e6a07c6cde370d44d32fa01c5a65cdd2fca6858c479d28bb3 "
1918
+ checksum = " 03b07a082330a35e43f63177cc01689da34fbffa0105e1246cf0311472cac73a "
1918
1919
dependencies = [
1919
1920
" rustc-std-workspace-core" ,
1920
1921
]
@@ -2308,7 +2309,7 @@ dependencies = [
2308
2309
" hex 0.4.2" ,
2309
2310
" libc" ,
2310
2311
" log" ,
2311
- " rand" ,
2312
+ " rand 0.7.3 " ,
2312
2313
" rustc-workspace-hack" ,
2313
2314
" rustc_version" ,
2314
2315
" shell-escape" ,
@@ -2508,7 +2509,7 @@ dependencies = [
2508
2509
" log" ,
2509
2510
" mio-named-pipes" ,
2510
2511
" miow 0.3.6" ,
2511
- " rand" ,
2512
+ " rand 0.7.3 " ,
2512
2513
" tokio" ,
2513
2514
" winapi 0.3.9" ,
2514
2515
]
@@ -2645,7 +2646,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
2646
checksum = " 17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
2646
2647
dependencies = [
2647
2648
" phf_shared" ,
2648
- " rand" ,
2649
+ " rand 0.7.3 " ,
2649
2650
]
2650
2651
2651
2652
[[package ]]
@@ -2892,20 +2893,42 @@ checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2892
2893
dependencies = [
2893
2894
" getrandom 0.1.14" ,
2894
2895
" libc" ,
2895
- " rand_chacha" ,
2896
- " rand_core" ,
2897
- " rand_hc" ,
2896
+ " rand_chacha 0.2.2 " ,
2897
+ " rand_core 0.5.1 " ,
2898
+ " rand_hc 0.2.0 " ,
2898
2899
" rand_pcg" ,
2899
2900
]
2900
2901
2902
+ [[package ]]
2903
+ name = " rand"
2904
+ version = " 0.8.3"
2905
+ source = " registry+https://github.com/rust-lang/crates.io-index"
2906
+ checksum = " 0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
2907
+ dependencies = [
2908
+ " libc" ,
2909
+ " rand_chacha 0.3.0" ,
2910
+ " rand_core 0.6.2" ,
2911
+ " rand_hc 0.3.0" ,
2912
+ ]
2913
+
2901
2914
[[package ]]
2902
2915
name = " rand_chacha"
2903
2916
version = " 0.2.2"
2904
2917
source = " registry+https://github.com/rust-lang/crates.io-index"
2905
2918
checksum = " f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2906
2919
dependencies = [
2907
2920
" ppv-lite86" ,
2908
- " rand_core" ,
2921
+ " rand_core 0.5.1" ,
2922
+ ]
2923
+
2924
+ [[package ]]
2925
+ name = " rand_chacha"
2926
+ version = " 0.3.0"
2927
+ source = " registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = " e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
2929
+ dependencies = [
2930
+ " ppv-lite86" ,
2931
+ " rand_core 0.6.2" ,
2909
2932
]
2910
2933
2911
2934
[[package ]]
@@ -2917,13 +2940,31 @@ dependencies = [
2917
2940
" getrandom 0.1.14" ,
2918
2941
]
2919
2942
2943
+ [[package ]]
2944
+ name = " rand_core"
2945
+ version = " 0.6.2"
2946
+ source = " registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = " 34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
2948
+ dependencies = [
2949
+ " getrandom 0.2.0" ,
2950
+ ]
2951
+
2920
2952
[[package ]]
2921
2953
name = " rand_hc"
2922
2954
version = " 0.2.0"
2923
2955
source = " registry+https://github.com/rust-lang/crates.io-index"
2924
2956
checksum = " ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2925
2957
dependencies = [
2926
- " rand_core" ,
2958
+ " rand_core 0.5.1" ,
2959
+ ]
2960
+
2961
+ [[package ]]
2962
+ name = " rand_hc"
2963
+ version = " 0.3.0"
2964
+ source = " registry+https://github.com/rust-lang/crates.io-index"
2965
+ checksum = " 3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
2966
+ dependencies = [
2967
+ " rand_core 0.6.2" ,
2927
2968
]
2928
2969
2929
2970
[[package ]]
@@ -2932,7 +2973,7 @@ version = "0.2.1"
2932
2973
source = " registry+https://github.com/rust-lang/crates.io-index"
2933
2974
checksum = " 16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
2934
2975
dependencies = [
2935
- " rand_core" ,
2976
+ " rand_core 0.5.1 " ,
2936
2977
]
2937
2978
2938
2979
[[package ]]
@@ -2941,7 +2982,7 @@ version = "0.2.0"
2941
2982
source = " registry+https://github.com/rust-lang/crates.io-index"
2942
2983
checksum = " 77d416b86801d23dde1aa643023b775c3a462efc0ed96443add11546cdf1dca8"
2943
2984
dependencies = [
2944
- " rand_core" ,
2985
+ " rand_core 0.5.1 " ,
2945
2986
]
2946
2987
2947
2988
[[package ]]
@@ -2950,7 +2991,7 @@ version = "0.4.0"
2950
2991
source = " registry+https://github.com/rust-lang/crates.io-index"
2951
2992
checksum = " a9fcdd2e881d02f1d9390ae47ad8e5696a9e4be7b547a1da2afbc61973217004"
2952
2993
dependencies = [
2953
- " rand_core" ,
2994
+ " rand_core 0.5.1 " ,
2954
2995
]
2955
2996
2956
2997
[[package ]]
@@ -3082,7 +3123,7 @@ dependencies = [
3082
3123
" num_cpus" ,
3083
3124
" ordslice" ,
3084
3125
" racer" ,
3085
- " rand" ,
3126
+ " rand 0.7.3 " ,
3086
3127
" rayon" ,
3087
3128
" regex" ,
3088
3129
" rls-analysis" ,
@@ -3153,7 +3194,7 @@ dependencies = [
3153
3194
" env_logger 0.7.1" ,
3154
3195
" futures 0.3.12" ,
3155
3196
" log" ,
3156
- " rand" ,
3197
+ " rand 0.7.3 " ,
3157
3198
" rls-data" ,
3158
3199
" rls-ipc" ,
3159
3200
" serde" ,
@@ -3933,7 +3974,7 @@ dependencies = [
3933
3974
name = " rustc_incremental"
3934
3975
version = " 0.0.0"
3935
3976
dependencies = [
3936
- " rand" ,
3977
+ " rand 0.7.3 " ,
3937
3978
" rustc_ast" ,
3938
3979
" rustc_data_structures" ,
3939
3980
" rustc_fs_util" ,
@@ -4975,7 +5016,7 @@ dependencies = [
4975
5016
" panic_abort" ,
4976
5017
" panic_unwind" ,
4977
5018
" profiler_builtins" ,
4978
- " rand" ,
5019
+ " rand 0.7.3 " ,
4979
5020
" rustc-demangle" ,
4980
5021
" unwind" ,
4981
5022
" wasi" ,
@@ -5106,7 +5147,7 @@ checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
5106
5147
dependencies = [
5107
5148
" cfg-if 0.1.10" ,
5108
5149
" libc" ,
5109
- " rand" ,
5150
+ " rand 0.7.3 " ,
5110
5151
" redox_syscall 0.1.57" ,
5111
5152
" remove_dir_all" ,
5112
5153
" winapi 0.3.9" ,
0 commit comments