lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

commit 341c174581f38fd409f6b19e59f639f170ce5eb9
parent 05a5160ebedbc3582d7a7f59f9f7d20e00586d3b
Author: triesap <tyson@radroots.org>
Date:   Fri, 20 Feb 2026 21:12:52 +0000

nostr: gate profile tag helper behind events feature

Diffstat:
Mcrates/nostr/src/identity_profile.rs | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/crates/nostr/src/identity_profile.rs b/crates/nostr/src/identity_profile.rs @@ -80,6 +80,7 @@ pub async fn radroots_nostr_bootstrap_service_presence( Ok(()) } +#[cfg(feature = "events")] fn profile_type_tags(profile_type: Option<RadrootsProfileType>) -> Vec<RadrootsNostrTag> { let mut tag_list: Vec<RadrootsNostrTag> = Vec::new(); for mut tag in profile_build_tags(profile_type) {