feat: initial meshservice implementation

Generic decentralized service layer for mesh networks.
Includes FAPP (psychotherapy) and Housing as reference services.

- ServiceMessage with Ed25519 signatures
- Wire protocol (64-byte header + CBOR)
- ServiceRouter with pluggable handlers
- Verification framework (3 trust levels)
- 32 tests, 3 examples
This commit is contained in:
2026-04-01 08:23:00 +02:00
commit c757494cbe
1280 changed files with 26040 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
cargo:rerun-if-changed=build.rs
cargo:rerun-if-changed=Cargo.toml
cargo:rustc-check-cfg=cfg(no_zerocopy_simd_x86_avx12_1_89_0)
cargo:rustc-check-cfg=cfg(rust, values("1.89.0"))
cargo:rustc-check-cfg=cfg(no_zerocopy_core_error_1_81_0)
cargo:rustc-check-cfg=cfg(rust, values("1.81.0"))
cargo:rustc-check-cfg=cfg(no_zerocopy_diagnostic_on_unimplemented_1_78_0)
cargo:rustc-check-cfg=cfg(rust, values("1.78.0"))
cargo:rustc-check-cfg=cfg(no_zerocopy_generic_bounds_in_const_fn_1_61_0)
cargo:rustc-check-cfg=cfg(rust, values("1.61.0"))
cargo:rustc-check-cfg=cfg(no_zerocopy_target_has_atomics_1_60_0)
cargo:rustc-check-cfg=cfg(rust, values("1.60.0"))
cargo:rustc-check-cfg=cfg(no_zerocopy_aarch64_simd_1_59_0)
cargo:rustc-check-cfg=cfg(rust, values("1.59.0"))
cargo:rustc-check-cfg=cfg(no_zerocopy_aarch64_simd_be_1_87_0)
cargo:rustc-check-cfg=cfg(rust, values("1.87.0"))
cargo:rustc-check-cfg=cfg(no_zerocopy_panic_in_const_and_vec_try_reserve_1_57_0)
cargo:rustc-check-cfg=cfg(rust, values("1.57.0"))
cargo:rustc-check-cfg=cfg(doc_cfg)
cargo:rustc-check-cfg=cfg(kani)
cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_NIGHTLY_FEATURES_IN_TESTS)
cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_DEV_MODE)
cargo:rustc-check-cfg=cfg(coverage_nightly)
cargo:rustc-check-cfg=cfg(zerocopy_inline_always)