Introduces crates/core/src/power.rs with the PowerState enum (OnAc / OnBattery / Unknown) and a unit test confirming the three variants are distinct. Registers the module in lib.rs and adds tempfile = "3" to dev-dependencies for use in later tasks. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
17 lines
352 B
TOML
17 lines
352 B
TOML
[package]
|
|
name = "magnotia-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Core types, constants, traits, hardware detection, and model registry for Magnotia"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
sysinfo = "0.35"
|
|
async-trait = "0.1"
|
|
num_cpus = "1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|