Update sysinfo version to 0.11 (#5216)

This commit is contained in:
Stanislav Tkach
2020-03-12 15:00:07 +02:00
committed by GitHub
parent 2387543ecb
commit 6e1b4cd560
2 changed files with 14 additions and 3 deletions
+13 -2
View File
@@ -3718,6 +3718,15 @@ dependencies = [
"version_check 0.1.5", "version_check 0.1.5",
] ]
[[package]]
name = "ntapi"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26e041cd983acbc087e30fcba770380cfa352d0e392e175b2344ebaf7ea0602"
dependencies = [
"winapi 0.3.8",
]
[[package]] [[package]]
name = "num-bigint" name = "num-bigint"
version = "0.2.6" version = "0.2.6"
@@ -7901,13 +7910,15 @@ dependencies = [
[[package]] [[package]]
name = "sysinfo" name = "sysinfo"
version = "0.9.6" version = "0.11.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f4b2468c629cffba39c0a4425849ab3cdb03d9dfacba69684609aea04d08ff9" checksum = "e15d793f059727ad34a9245503c13b38262bb32e9906d8122ca64d6ca54b0858"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"doc-comment", "doc-comment",
"libc", "libc",
"ntapi",
"once_cell",
"rayon", "rayon",
"winapi 0.3.8", "winapi 0.3.8",
] ]
+1 -1
View File
@@ -31,7 +31,7 @@ wasm-timer = "0.2"
exit-future = "0.2.0" exit-future = "0.2.0"
serde = "1.0.101" serde = "1.0.101"
serde_json = "1.0.41" serde_json = "1.0.41"
sysinfo = "0.9.5" sysinfo = "0.11.7"
target_info = "0.1.0" target_info = "0.1.0"
sc-keystore = { version = "2.0.0-alpha.2", path = "../keystore" } sc-keystore = { version = "2.0.0-alpha.2", path = "../keystore" }
sp-io = { version = "2.0.0-alpha.2", path = "../../primitives/io" } sp-io = { version = "2.0.0-alpha.2", path = "../../primitives/io" }