|
|
@@ -296,7 +296,7 @@ version = "0.2.2"
|
|
296
|
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
297
|
checksum = "1b391911b9a786312a10cb9d2b3d0735adfd5a8113eb3648de26a75e91b0826c"
|
|
298
|
298
|
dependencies = [
|
|
299
|
|
- "rand",
|
|
|
299
|
+ "rand 0.7.3",
|
|
300
|
300
|
]
|
|
301
|
301
|
|
|
302
|
302
|
[[package]]
|
|
|
@@ -482,7 +482,18 @@ checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
|
|
482
|
482
|
dependencies = [
|
|
483
|
483
|
"cfg-if 0.1.10",
|
|
484
|
484
|
"libc",
|
|
485
|
|
- "wasi",
|
|
|
485
|
+ "wasi 0.9.0+wasi-snapshot-preview1",
|
|
|
486
|
+]
|
|
|
487
|
+
|
|
|
488
|
+[[package]]
|
|
|
489
|
+name = "getrandom"
|
|
|
490
|
+version = "0.2.2"
|
|
|
491
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
492
|
+checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8"
|
|
|
493
|
+dependencies = [
|
|
|
494
|
+ "cfg-if 1.0.0",
|
|
|
495
|
+ "libc",
|
|
|
496
|
+ "wasi 0.10.2+wasi-snapshot-preview1",
|
|
486
|
497
|
]
|
|
487
|
498
|
|
|
488
|
499
|
[[package]]
|
|
|
@@ -519,7 +530,7 @@ dependencies = [
|
|
519
|
530
|
"protobuf",
|
|
520
|
531
|
"protobuf-codegen-pure",
|
|
521
|
532
|
"quinn",
|
|
522
|
|
- "rand",
|
|
|
533
|
+ "rand 0.7.3",
|
|
523
|
534
|
"regex",
|
|
524
|
535
|
"serde",
|
|
525
|
536
|
"serde_derive",
|
|
|
@@ -545,6 +556,7 @@ dependencies = [
|
|
545
|
556
|
"mac_address",
|
|
546
|
557
|
"machine-uid",
|
|
547
|
558
|
"minreq",
|
|
|
559
|
+ "rand 0.8.3",
|
|
548
|
560
|
"rocksdb",
|
|
549
|
561
|
"rust-ini",
|
|
550
|
562
|
"serde",
|
|
|
@@ -1014,7 +1026,7 @@ dependencies = [
|
|
1014
|
1026
|
"bytes",
|
|
1015
|
1027
|
"ct-logs",
|
|
1016
|
1028
|
"err-derive",
|
|
1017
|
|
- "rand",
|
|
|
1029
|
+ "rand 0.7.3",
|
|
1018
|
1030
|
"ring",
|
|
1019
|
1031
|
"rustls",
|
|
1020
|
1032
|
"rustls-native-certs",
|
|
|
@@ -1038,11 +1050,23 @@ version = "0.7.3"
|
|
1038
|
1050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
1051
|
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
|
|
1040
|
1052
|
dependencies = [
|
|
1041
|
|
- "getrandom",
|
|
|
1053
|
+ "getrandom 0.1.15",
|
|
|
1054
|
+ "libc",
|
|
|
1055
|
+ "rand_chacha 0.2.2",
|
|
|
1056
|
+ "rand_core 0.5.1",
|
|
|
1057
|
+ "rand_hc 0.2.0",
|
|
|
1058
|
+]
|
|
|
1059
|
+
|
|
|
1060
|
+[[package]]
|
|
|
1061
|
+name = "rand"
|
|
|
1062
|
+version = "0.8.3"
|
|
|
1063
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1064
|
+checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
|
|
|
1065
|
+dependencies = [
|
|
1042
|
1066
|
"libc",
|
|
1043
|
|
- "rand_chacha",
|
|
1044
|
|
- "rand_core",
|
|
1045
|
|
- "rand_hc",
|
|
|
1067
|
+ "rand_chacha 0.3.0",
|
|
|
1068
|
+ "rand_core 0.6.2",
|
|
|
1069
|
+ "rand_hc 0.3.0",
|
|
1046
|
1070
|
]
|
|
1047
|
1071
|
|
|
1048
|
1072
|
[[package]]
|
|
|
@@ -1052,7 +1076,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
1076
|
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
|
|
1053
|
1077
|
dependencies = [
|
|
1054
|
1078
|
"ppv-lite86",
|
|
1055
|
|
- "rand_core",
|
|
|
1079
|
+ "rand_core 0.5.1",
|
|
|
1080
|
+]
|
|
|
1081
|
+
|
|
|
1082
|
+[[package]]
|
|
|
1083
|
+name = "rand_chacha"
|
|
|
1084
|
+version = "0.3.0"
|
|
|
1085
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1086
|
+checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
|
|
|
1087
|
+dependencies = [
|
|
|
1088
|
+ "ppv-lite86",
|
|
|
1089
|
+ "rand_core 0.6.2",
|
|
1056
|
1090
|
]
|
|
1057
|
1091
|
|
|
1058
|
1092
|
[[package]]
|
|
|
@@ -1061,7 +1095,16 @@ version = "0.5.1"
|
|
1061
|
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
1096
|
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
|
|
1063
|
1097
|
dependencies = [
|
|
1064
|
|
- "getrandom",
|
|
|
1098
|
+ "getrandom 0.1.15",
|
|
|
1099
|
+]
|
|
|
1100
|
+
|
|
|
1101
|
+[[package]]
|
|
|
1102
|
+name = "rand_core"
|
|
|
1103
|
+version = "0.6.2"
|
|
|
1104
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1105
|
+checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
|
|
|
1106
|
+dependencies = [
|
|
|
1107
|
+ "getrandom 0.2.2",
|
|
1065
|
1108
|
]
|
|
1066
|
1109
|
|
|
1067
|
1110
|
[[package]]
|
|
|
@@ -1070,7 +1113,16 @@ version = "0.2.0"
|
|
1070
|
1113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
1114
|
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
|
|
1072
|
1115
|
dependencies = [
|
|
1073
|
|
- "rand_core",
|
|
|
1116
|
+ "rand_core 0.5.1",
|
|
|
1117
|
+]
|
|
|
1118
|
+
|
|
|
1119
|
+[[package]]
|
|
|
1120
|
+name = "rand_hc"
|
|
|
1121
|
+version = "0.3.0"
|
|
|
1122
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1123
|
+checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
|
|
|
1124
|
+dependencies = [
|
|
|
1125
|
+ "rand_core 0.6.2",
|
|
1074
|
1126
|
]
|
|
1075
|
1127
|
|
|
1076
|
1128
|
[[package]]
|
|
|
@@ -1085,7 +1137,7 @@ version = "0.3.5"
|
|
1085
|
1137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
1138
|
checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
|
|
1087
|
1139
|
dependencies = [
|
|
1088
|
|
- "getrandom",
|
|
|
1140
|
+ "getrandom 0.1.15",
|
|
1089
|
1141
|
"redox_syscall",
|
|
1090
|
1142
|
"rust-argon2",
|
|
1091
|
1143
|
]
|
|
|
@@ -1502,6 +1554,12 @@ version = "0.9.0+wasi-snapshot-preview1"
|
|
1502
|
1554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
1555
|
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
|
1504
|
1556
|
|
|
|
1557
|
+[[package]]
|
|
|
1558
|
+name = "wasi"
|
|
|
1559
|
+version = "0.10.2+wasi-snapshot-preview1"
|
|
|
1560
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1561
|
+checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
|
|
|
1562
|
+
|
|
1505
|
1563
|
[[package]]
|
|
1506
|
1564
|
name = "wasm-bindgen"
|
|
1507
|
1565
|
version = "0.2.68"
|