caracal 0.4.3

Nostr client for Gemini
1
2
3
4
5
6
7
8
9
10
11
12
use bitflags::bitflags;

bitflags! {
    #[repr(transparent)]
    #[derive(Default, Debug, Clone, Copy, PartialEq, Eq, Hash)]
    pub struct NoteRenderOptions: u32 {
        const SHOW_HASHTAGS = 0b00000001;
        const PUBLIC_BOOKMARK = 0b00000010;
        const PRIVATE_BOOKMARK = 0b00000100;
        const DELETE = 0b00001000;
    }
}