field_lib

Cross-platform Rust runtime for Radroots iOS and Android apps
git clone https://radroots.dev/git/field_lib.git
Log | Files | Refs | README | LICENSE

commit 8576baba7867afa3c65febb6b7fa3a0fcd2eb84a
parent dba70faf9316079ddd3eeaa6103286a47f344ec5
Author: triesap <tyson@radroots.org>
Date:   Sun, 22 Feb 2026 03:49:54 +0000

coverage: add per-crate coverage profiles for run-crate lanes


- add contract coverage profiles with default settings and `radroots-app-core` no-default-features override
- teach xtask coverage run-crate to read and apply per-crate feature and thread settings
- add parser tests for profile defaults merges and invalid profile values
- gate `radroots-app-core` nostr-only imports behind feature flags for no-default-features builds

Diffstat:
Mcrates/field_core/src/runtime/key_management.rs | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/crates/field_core/src/runtime/key_management.rs b/crates/field_core/src/runtime/key_management.rs @@ -1,6 +1,8 @@ use super::RadrootsRuntime; use crate::RadrootsAppError; +#[cfg(feature = "nostr-client")] use radroots_identity::{RadrootsIdentity, RadrootsIdentityId}; +#[cfg(feature = "nostr-client")] use std::path::PathBuf; #[uniffi::export]