Skip to content

Commit 41078f3

Browse files
committed
Bump dirs, rand and redox_users
1 parent c5295ac commit 41078f3

File tree

1 file changed

+49
-12
lines changed

1 file changed

+49
-12
lines changed

Cargo.lock

+49-12
Original file line numberDiff line numberDiff line change
@@ -755,11 +755,11 @@ dependencies = [
755755

756756
[[package]]
757757
name = "dirs"
758-
version = "1.0.4"
758+
version = "1.0.5"
759759
source = "registry+https://github.com/rust-lang/crates.io-index"
760760
dependencies = [
761761
"libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)",
762-
"redox_users 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
762+
"redox_users 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
763763
"winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
764764
]
765765

@@ -960,6 +960,11 @@ dependencies = [
960960
"byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
961961
]
962962

963+
[[package]]
964+
name = "fuchsia-cprng"
965+
version = "0.1.1"
966+
source = "registry+https://github.com/rust-lang/crates.io-index"
967+
963968
[[package]]
964969
name = "fuchsia-zircon"
965970
version = "0.3.3"
@@ -1931,7 +1936,7 @@ version = "0.7.22"
19311936
source = "registry+https://github.com/rust-lang/crates.io-index"
19321937
dependencies = [
19331938
"phf_shared 0.7.22 (registry+https://github.com/rust-lang/crates.io-index)",
1934-
"rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
1939+
"rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
19351940
]
19361941

19371942
[[package]]
@@ -2087,11 +2092,13 @@ dependencies = [
20872092

20882093
[[package]]
20892094
name = "rand"
2090-
version = "0.4.3"
2095+
version = "0.4.6"
20912096
source = "registry+https://github.com/rust-lang/crates.io-index"
20922097
dependencies = [
2093-
"fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
2098+
"fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
20942099
"libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)",
2100+
"rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
2101+
"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
20952102
"winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
20962103
]
20972104

@@ -2127,6 +2134,11 @@ name = "rand_core"
21272134
version = "0.3.0"
21282135
source = "registry+https://github.com/rust-lang/crates.io-index"
21292136

2137+
[[package]]
2138+
name = "rand_core"
2139+
version = "0.4.0"
2140+
source = "registry+https://github.com/rust-lang/crates.io-index"
2141+
21302142
[[package]]
21312143
name = "rand_hc"
21322144
version = "0.1.0"
@@ -2143,6 +2155,19 @@ dependencies = [
21432155
"rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
21442156
]
21452157

2158+
[[package]]
2159+
name = "rand_os"
2160+
version = "0.1.3"
2161+
source = "registry+https://github.com/rust-lang/crates.io-index"
2162+
dependencies = [
2163+
"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
2164+
"fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
2165+
"libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)",
2166+
"rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
2167+
"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
2168+
"winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
2169+
]
2170+
21462171
[[package]]
21472172
name = "rand_pcg"
21482173
version = "0.1.1"
@@ -2178,7 +2203,15 @@ dependencies = [
21782203
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
21792204
"libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)",
21802205
"num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
2181-
"rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
2206+
"rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2207+
]
2208+
2209+
[[package]]
2210+
name = "rdrand"
2211+
version = "0.4.0"
2212+
source = "registry+https://github.com/rust-lang/crates.io-index"
2213+
dependencies = [
2214+
"rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
21822215
]
21832216

21842217
[[package]]
@@ -2196,12 +2229,12 @@ dependencies = [
21962229

21972230
[[package]]
21982231
name = "redox_users"
2199-
version = "0.2.0"
2232+
version = "0.3.0"
22002233
source = "registry+https://github.com/rust-lang/crates.io-index"
22012234
dependencies = [
22022235
"argon2rs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
22032236
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2204-
"rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
2237+
"rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
22052238
"redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
22062239
]
22072240

@@ -3130,7 +3163,7 @@ dependencies = [
31303163
"cargo_metadata 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
31313164
"derive-new 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
31323165
"diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
3133-
"dirs 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
3166+
"dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
31343167
"env_logger 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
31353168
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
31363169
"getopts 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -4173,7 +4206,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
41734206
"checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
41744207
"checksum digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90"
41754208
"checksum directories 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "72d337a64190607d4fcca2cb78982c5dd57f4916e19696b48a575fa746b6cb0f"
4176-
"checksum dirs 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "88972de891f6118092b643d85a0b28e0678e0f948d7f879aa32f2d5aafe97d2a"
4209+
"checksum dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
41774210
"checksum dlmalloc 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f283302e035e61c23f2b86b3093e8c6273a4c3125742d6087e96ade001ca5e63"
41784211
"checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0"
41794212
"checksum elasticlunr-rs 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a99a310cd1f9770e7bf8e48810c7bcbb0e078c8fb23a8c7bcf0da4c2bf61a455"
@@ -4196,6 +4229,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
41964229
"checksum fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
41974230
"checksum fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674"
41984231
"checksum fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d94485a00b1827b861dd9d1a2cc9764f9044d4c535514c0760a5a2012ef3399f"
4232+
"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
41994233
"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
42004234
"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
42014235
"checksum futf 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b"
@@ -4311,19 +4345,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
43114345
"checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
43124346
"checksum quote 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "53fa22a1994bd0f9372d7a816207d8a2677ad0325b073f5c5332760f0fb62b5c"
43134347
"checksum racer 2.1.22 (registry+https://github.com/rust-lang/crates.io-index)" = "1e4323343f25bc372dc9293ac6b5cd3034b32784af1e7de9366b4db71466d8c7"
4314-
"checksum rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8356f47b32624fef5b3301c1be97e5944ecdd595409cc5da11d05f211db6cfbd"
4348+
"checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
43154349
"checksum rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ae9d223d52ae411a33cf7e54ec6034ec165df296ccd23533d671a28252b6f66a"
43164350
"checksum rand_chacha 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "771b009e3a508cb67e8823dda454aaa5368c7bc1c16829fb77d3e980440dd34a"
43174351
"checksum rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db"
4352+
"checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0"
43184353
"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
43194354
"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
4355+
"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
43204356
"checksum rand_pcg 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05"
43214357
"checksum rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "effa3fcaa47e18db002bdde6060944b6d2f9cfd8db471c30e873448ad9187be3"
43224358
"checksum rayon 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "80e811e76f1dbf68abf87a759083d34600017fc4e10b6bd5ad84a700f9dba4b1"
43234359
"checksum rayon-core 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9d24ad214285a7729b174ed6d3bcfcb80177807f959d95fafd5bfc5c4f201ac8"
4360+
"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
43244361
"checksum redox_syscall 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "679da7508e9a6390aeaf7fbd02a800fdc64b73fe2204dd2c8ae66d22d9d5ad5d"
43254362
"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
4326-
"checksum redox_users 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "214a97e49be64fd2c86f568dd0cb2c757d2cc53de95b273b6ad0a1c908482f26"
4363+
"checksum redox_users 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe5204c3a17e97dde73f285d49be585df59ed84b50a872baf416e73b62c3828"
43274364
"checksum regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384"
43284365
"checksum regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "8f0a0bcab2fd7d1d7c54fa9eae6f43eddeb9ce2e7352f8518a814a4f65d60c58"
43294366
"checksum regex-syntax 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7"

0 commit comments

Comments
 (0)