[package]
edition = "2021"
rust-version = "1.77"
name = "macstate-core"
version = "0.0.11"
authors = ["Dave Choi <helloworld4625@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library exposing macOS system signals (network, power) as serde-serializable structs"
homepage = "https://github.com/DaveDev42/macstate"
documentation = "https://docs.rs/macstate-core"
readme = "README.md"
keywords = [
"macos",
"system",
"network",
"power",
"iokit",
]
categories = [
"os::macos-apis",
"api-bindings",
]
license = "BSD-3-Clause"
repository = "https://github.com/DaveDev42/macstate"
[features]
default = []
schema = ["dep:schemars"]
[lib]
name = "macstate_core"
path = "src/lib.rs"
[dependencies.schemars]
version = "1"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[target.'cfg(target_os = "macos")'.dependencies.macstate-sys]
version = "0.0.11"