Add dmidecode crate to Cargo.toml

Summary:
As discussed in D30543524 et al, we plan to use a third-party library
for parsing dmidecode data rather than rolling our own.

https://docs.rs/dmidecode/0.7.0/dmidecode/index.html
https://github.com/jcreekmore/dmidecode

Reviewed By: alastor-erinyes

Differential Revision: D30808298

fbshipit-source-id: 74c7ed9b9bb20de76fe7a4ff26e71d2e0c329c0b
This commit is contained in:
Lincoln Bergeson 2021-09-08 09:34:51 -07:00 committed by Facebook GitHub Bot
parent 29e6e4086e
commit 0fc4c158a4

View File

@ -20,6 +20,7 @@ context = { version = "0.1.0", path = "../server/context" }
ephemeral_blobstore = { version = "0.1.0", path = "../blobstore/ephemeral_blobstore" }
filestore = { version = "0.1.0", path = "../filestore" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
futures-util = "0.3.7"
getbundle_response = { version = "0.1.0", path = "../repo_client/getbundle_response" }
hgproto = { version = "0.1.0", path = "../hgproto" }
manifest = { version = "0.1.0", path = "../manifest" }
@ -28,6 +29,7 @@ mercurial_types = { version = "0.1.0", path = "../mercurial/types" }
metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
mononoke_api = { version = "0.1.0", path = "../mononoke_api" }
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
reachabilityindex = { version = "0.1.0", path = "../reachabilityindex" }
remotefilelog = { version = "0.1.0", path = "../repo_client/remotefilelog" }
repo_blobstore = { version = "0.1.0", path = "../blobrepo/repo_blobstore" }
repo_client = { version = "0.1.0", path = "../repo_client" }