|
|
@ -47,9 +47,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "clang-sys" |
|
|
|
version = "1.4.0" |
|
|
|
version = "1.6.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" |
|
|
|
checksum = "77ed9a53e5d4d9c573ae844bfac6872b159cb1d1585a83b29e7a64b7eef7332a" |
|
|
|
dependencies = [ |
|
|
|
"glob", |
|
|
|
"libc", |
|
|
@ -62,6 +62,18 @@ version = "1.8.1" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "fuchsia-cprng" |
|
|
|
version = "0.1.1" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "gcc" |
|
|
|
version = "0.3.55" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "glob" |
|
|
|
version = "0.3.1" |
|
|
@ -81,6 +93,7 @@ version = "0.1.0" |
|
|
|
dependencies = [ |
|
|
|
"bindgen", |
|
|
|
"lazy_static", |
|
|
|
"rust-crypto", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
@ -144,9 +157,9 @@ dependencies = [ |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "once_cell" |
|
|
|
version = "1.17.0" |
|
|
|
version = "1.17.1" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" |
|
|
|
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "peeking_take_while" |
|
|
@ -156,9 +169,9 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "proc-macro2" |
|
|
|
version = "1.0.50" |
|
|
|
version = "1.0.51" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2" |
|
|
|
checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" |
|
|
|
dependencies = [ |
|
|
|
"unicode-ident", |
|
|
|
] |
|
|
@ -172,6 +185,53 @@ dependencies = [ |
|
|
|
"proc-macro2", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "rand" |
|
|
|
version = "0.3.23" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" |
|
|
|
dependencies = [ |
|
|
|
"libc", |
|
|
|
"rand 0.4.6", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "rand" |
|
|
|
version = "0.4.6" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" |
|
|
|
dependencies = [ |
|
|
|
"fuchsia-cprng", |
|
|
|
"libc", |
|
|
|
"rand_core 0.3.1", |
|
|
|
"rdrand", |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "rand_core" |
|
|
|
version = "0.3.1" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" |
|
|
|
dependencies = [ |
|
|
|
"rand_core 0.4.2", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "rand_core" |
|
|
|
version = "0.4.2" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "rdrand" |
|
|
|
version = "0.4.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" |
|
|
|
dependencies = [ |
|
|
|
"rand_core 0.3.1", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "regex" |
|
|
|
version = "1.7.1" |
|
|
@ -187,12 +247,31 @@ version = "0.6.28" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "rust-crypto" |
|
|
|
version = "0.2.36" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "f76d05d3993fd5f4af9434e8e436db163a12a9d40e1a58a726f27a01dfd12a2a" |
|
|
|
dependencies = [ |
|
|
|
"gcc", |
|
|
|
"libc", |
|
|
|
"rand 0.3.23", |
|
|
|
"rustc-serialize", |
|
|
|
"time", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "rustc-hash" |
|
|
|
version = "1.1.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "rustc-serialize" |
|
|
|
version = "0.3.24" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "shlex" |
|
|
|
version = "1.1.0" |
|
|
@ -201,21 +280,38 @@ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "syn" |
|
|
|
version = "1.0.107" |
|
|
|
version = "1.0.109" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" |
|
|
|
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" |
|
|
|
dependencies = [ |
|
|
|
"proc-macro2", |
|
|
|
"quote", |
|
|
|
"unicode-ident", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "time" |
|
|
|
version = "0.1.45" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" |
|
|
|
dependencies = [ |
|
|
|
"libc", |
|
|
|
"wasi", |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "unicode-ident" |
|
|
|
version = "1.0.6" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "wasi" |
|
|
|
version = "0.10.0+wasi-snapshot-preview1" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "which" |
|
|
|
version = "4.4.0" |
|
|
|