aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-07-29 18:49:10 +0100
committerAleksey Kladov <[email protected]>2020-07-29 18:49:10 +0100
commitba585309ec9ba6102038cd16c3fff107dfc1f56c (patch)
treec66048657b776dd63e21e2caef7f5ebed0a45810 /Cargo.lock
parent76202a2c7371a6930db7b83af75c0f5a8ae1d061 (diff)
Replace rand with oorandom
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock90
1 files changed, 11 insertions, 79 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b7a9516e3..c656f846d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -401,17 +401,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
401checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 401checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
402 402
403[[package]] 403[[package]]
404name = "getrandom"
405version = "0.1.14"
406source = "registry+https://github.com/rust-lang/crates.io-index"
407checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
408dependencies = [
409 "cfg-if",
410 "libc",
411 "wasi",
412]
413
414[[package]]
415name = "gimli" 404name = "gimli"
416version = "0.22.0" 405version = "0.22.0"
417source = "registry+https://github.com/rust-lang/crates.io-index" 406source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -811,6 +800,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
811checksum = "0b631f7e854af39a1739f401cf34a8a013dfe09eac4fa4dba91e9768bd28168d" 800checksum = "0b631f7e854af39a1739f401cf34a8a013dfe09eac4fa4dba91e9768bd28168d"
812 801
813[[package]] 802[[package]]
803name = "oorandom"
804version = "11.1.2"
805source = "registry+https://github.com/rust-lang/crates.io-index"
806checksum = "a170cebd8021a008ea92e4db85a72f80b35df514ec664b296fdcbb654eac0b2c"
807
808[[package]]
814name = "parking_lot" 809name = "parking_lot"
815version = "0.11.0" 810version = "0.11.0"
816source = "registry+https://github.com/rust-lang/crates.io-index" 811source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -869,12 +864,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
869checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 864checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
870 865
871[[package]] 866[[package]]
872name = "ppv-lite86"
873version = "0.2.8"
874source = "registry+https://github.com/rust-lang/crates.io-index"
875checksum = "237a5ed80e274dbc66f86bd59c1e25edc039660be53194b5fe0a482e0f2612ea"
876
877[[package]]
878name = "proc-macro2" 867name = "proc-macro2"
879version = "1.0.19" 868version = "1.0.19"
880source = "registry+https://github.com/rust-lang/crates.io-index" 869source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1046,6 +1035,7 @@ dependencies = [
1046 "indexmap", 1035 "indexmap",
1047 "itertools", 1036 "itertools",
1048 "log", 1037 "log",
1038 "oorandom",
1049 "ra_assists", 1039 "ra_assists",
1050 "ra_cfg", 1040 "ra_cfg",
1051 "ra_db", 1041 "ra_db",
@@ -1056,7 +1046,6 @@ dependencies = [
1056 "ra_ssr", 1046 "ra_ssr",
1057 "ra_syntax", 1047 "ra_syntax",
1058 "ra_text_edit", 1048 "ra_text_edit",
1059 "rand",
1060 "rustc-hash", 1049 "rustc-hash",
1061 "stdx", 1050 "stdx",
1062 "test_utils", 1051 "test_utils",
@@ -1218,57 +1207,6 @@ dependencies = [
1218] 1207]
1219 1208
1220[[package]] 1209[[package]]
1221name = "rand"
1222version = "0.7.3"
1223source = "registry+https://github.com/rust-lang/crates.io-index"
1224checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
1225dependencies = [
1226 "getrandom",
1227 "libc",
1228 "rand_chacha",
1229 "rand_core",
1230 "rand_hc",
1231 "rand_pcg",
1232]
1233
1234[[package]]
1235name = "rand_chacha"
1236version = "0.2.2"
1237source = "registry+https://github.com/rust-lang/crates.io-index"
1238checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
1239dependencies = [
1240 "ppv-lite86",
1241 "rand_core",
1242]
1243
1244[[package]]
1245name = "rand_core"
1246version = "0.5.1"
1247source = "registry+https://github.com/rust-lang/crates.io-index"
1248checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
1249dependencies = [
1250 "getrandom",
1251]
1252
1253[[package]]
1254name = "rand_hc"
1255version = "0.2.0"
1256source = "registry+https://github.com/rust-lang/crates.io-index"
1257checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
1258dependencies = [
1259 "rand_core",
1260]
1261
1262[[package]]
1263name = "rand_pcg"
1264version = "0.2.1"
1265source = "registry+https://github.com/rust-lang/crates.io-index"
1266checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
1267dependencies = [
1268 "rand_core",
1269]
1270
1271[[package]]
1272name = "rayon" 1210name = "rayon"
1273version = "1.3.1" 1211version = "1.3.1"
1274source = "registry+https://github.com/rust-lang/crates.io-index" 1212source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1354,6 +1292,7 @@ dependencies = [
1354 "lsp-server", 1292 "lsp-server",
1355 "lsp-types", 1293 "lsp-types",
1356 "mimalloc", 1294 "mimalloc",
1295 "oorandom",
1357 "parking_lot", 1296 "parking_lot",
1358 "pico-args", 1297 "pico-args",
1359 "ra_cfg", 1298 "ra_cfg",
@@ -1372,7 +1311,6 @@ dependencies = [
1372 "ra_text_edit", 1311 "ra_text_edit",
1373 "ra_toolchain", 1312 "ra_toolchain",
1374 "ra_tt", 1313 "ra_tt",
1375 "rand",
1376 "rayon", 1314 "rayon",
1377 "rustc-hash", 1315 "rustc-hash",
1378 "serde", 1316 "serde",
@@ -1414,16 +1352,16 @@ checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
1414 1352
1415[[package]] 1353[[package]]
1416name = "salsa" 1354name = "salsa"
1417version = "0.15.0" 1355version = "0.15.1"
1418source = "registry+https://github.com/rust-lang/crates.io-index" 1356source = "registry+https://github.com/rust-lang/crates.io-index"
1419checksum = "885b4b99dde959decc84e85dd943bd140b4aabd62db2f8206ef5270f77ec20b9" 1357checksum = "d4cdc109fcc9e9450c7ef47fb7474e99bffd51799da03ed0a6c7f0e2cb3848a6"
1420dependencies = [ 1358dependencies = [
1421 "crossbeam-utils", 1359 "crossbeam-utils",
1422 "indexmap", 1360 "indexmap",
1423 "lock_api", 1361 "lock_api",
1424 "log", 1362 "log",
1363 "oorandom",
1425 "parking_lot", 1364 "parking_lot",
1426 "rand",
1427 "rustc-hash", 1365 "rustc-hash",
1428 "salsa-macros", 1366 "salsa-macros",
1429 "smallvec", 1367 "smallvec",
@@ -1832,12 +1770,6 @@ dependencies = [
1832] 1770]
1833 1771
1834[[package]] 1772[[package]]
1835name = "wasi"
1836version = "0.9.0+wasi-snapshot-preview1"
1837source = "registry+https://github.com/rust-lang/crates.io-index"
1838checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
1839
1840[[package]]
1841name = "winapi" 1773name = "winapi"
1842version = "0.2.8" 1774version = "0.2.8"
1843source = "registry+https://github.com/rust-lang/crates.io-index" 1775source = "registry+https://github.com/rust-lang/crates.io-index"