Major updates: - Complete Rust rewrite (pilot-v2/) with working MQTT client - Fixed MQTT event loop deadlock (background task pattern) - Battery telemetry for Linux (auto-detected via /sys/class/power_supply) - Home Assistant auto-discovery for all sensors and switches - Comprehensive documentation (AVANCEMENT.md, CLAUDE.md, roadmap) - Docker test environment with Mosquitto broker - Helper scripts for development and testing Features working: ✅ MQTT connectivity with LWT ✅ YAML configuration with validation ✅ Telemetry: CPU, memory, IP, battery (Linux) ✅ Commands: shutdown, reboot, sleep, screen (dry-run tested) ✅ HA discovery and integration ✅ Allowlist and cooldown protection Ready for testing on real hardware. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
24 lines
1.0 KiB
Plaintext
24 lines
1.0 KiB
Plaintext
cargo:rustc-check-cfg=cfg(fuzzing)
|
|
cargo:rustc-check-cfg=cfg(no_is_available)
|
|
cargo:rustc-check-cfg=cfg(no_literal_byte_character)
|
|
cargo:rustc-check-cfg=cfg(no_literal_c_string)
|
|
cargo:rustc-check-cfg=cfg(no_source_text)
|
|
cargo:rustc-check-cfg=cfg(proc_macro_span)
|
|
cargo:rustc-check-cfg=cfg(proc_macro_span_file)
|
|
cargo:rustc-check-cfg=cfg(proc_macro_span_location)
|
|
cargo:rustc-check-cfg=cfg(procmacro2_backtrace)
|
|
cargo:rustc-check-cfg=cfg(procmacro2_build_probe)
|
|
cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing)
|
|
cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt)
|
|
cargo:rustc-check-cfg=cfg(randomize_layout)
|
|
cargo:rustc-check-cfg=cfg(span_locations)
|
|
cargo:rustc-check-cfg=cfg(super_unstable)
|
|
cargo:rustc-check-cfg=cfg(wrap_proc_macro)
|
|
cargo:rerun-if-changed=src/probe/proc_macro_span.rs
|
|
cargo:rustc-cfg=wrap_proc_macro
|
|
cargo:rerun-if-changed=src/probe/proc_macro_span_location.rs
|
|
cargo:rustc-cfg=proc_macro_span_location
|
|
cargo:rerun-if-changed=src/probe/proc_macro_span_file.rs
|
|
cargo:rustc-cfg=proc_macro_span_file
|
|
cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP
|