heim 0.0.11

Cross-platform framework for system information
Documentation
[package]
name = "heim"
version = "0.0.11"
authors = ["svartalf <self@svartalf.info>"]
edition = "2018"
description = "Cross-platform framework for system information"
keywords = ["heim", "system", "information", "sysinfo", "psutil"]
categories = ["asynchronous", "os", "api-bindings"]
repository = "https://github.com/heim-rs/heim"
readme = "README.md"
license = "Apache-2.0 OR MIT"

[badges]
maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
heim-common = { version = "0.0.11", path = "../heim-common" }
heim-runtime = { version = "0.0.7", path = "../heim-runtime" }
heim-cpu = {version = "0.0.11", path = "../heim-cpu", optional = true }
heim-disk = {version = "0.0.11", path = "../heim-disk", optional = true }
heim-host = { version = "0.0.11", path = "../heim-host", optional = true }
heim-memory = {version = "0.0.11", path = "../heim-memory", optional = true }
heim-net = {version = "0.0.11", path = "../heim-net", optional = true }
heim-process = { version = "0.0.11", path = "../heim-process", optional = true }
heim-virt = { version = "0.0.11", path = "../heim-virt", optional = true }
heim-sensors = { version = "0.0.6", path = "../heim-sensors", optional = true }

[dev-dependencies]
heim-derive = { version = "0.0.10", path = "../heim-derive" }
version-sync = "0.8"

[features]
default = ["host", "cpu", "memory", "disk", "net", "process", "virt", "sensors", "runtime-polyfill"]

# Modules
host = ["heim-host"]
cpu = ["heim-cpu"]
memory = ["heim-memory"]
disk = ["heim-disk"]
net = ["heim-net"]
process = ["heim-process"]
virt = ["heim-virt"]
sensors = ["heim-sensors"]

# Reactors
runtime-polyfill = [
    "heim-runtime/runtime-polyfill",
    "heim-cpu/runtime-polyfill",
    "heim-cpu/runtime-polyfill",
    "heim-disk/runtime-polyfill",
    "heim-host/runtime-polyfill",
    "heim-memory/runtime-polyfill",
    "heim-net/runtime-polyfill",
    "heim-process/runtime-polyfill",
    "heim-virt/runtime-polyfill",
    "heim-sensors/runtime-polyfill",
]