[package]
edition = "2018"
name = "smbios-lib"
version = "0.9.4"
authors = [
"Jeffrey R. Gerber <jeffreygerber@gmail.com>",
"Ante Čulo <dante2711@gmail.com>",
"Juan Zuluaga <juzuluag@hotmail.com>",
]
build = false
exclude = [
".devcontainer",
".github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SMBIOS Library"
homepage = "https://github.com/jrgerber/smbios-lib"
readme = "README.md"
keywords = [
"bios",
"smbios",
"dmtf",
]
categories = ["hardware-support"]
license = "MIT"
repository = "https://github.com/jrgerber/smbios-lib"
[lib]
name = "smbioslib"
path = "src/lib.rs"
[[bin]]
name = "smbiosdump"
path = "src/main.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.getopts]
version = "0.2.21"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.core-foundation]
version = "~0.10"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.core-foundation-sys]
version = "~0.8"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.io-kit-sys]
version = "~0.5"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.libc]
version = "~0.2"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.mach2]
version = "~0.6"
[target."cfg(windows)".dependencies.libc]
version = "0.2"