#urbit #planet #formatting #name #patp-patq #ob

urbit-ob

Utilities for formatting and parsing Urbit's @p and @q data types (patp/patq)

2 unstable releases

0.2.0 Nov 4, 2023
0.1.0 Nov 3, 2023

#335 in Value formatting

Download history 117/week @ 2024-11-29 4/week @ 2024-12-06 173/week @ 2024-12-13 14/week @ 2024-12-20 1/week @ 2024-12-27 129/week @ 2025-01-03 80/week @ 2025-01-10 68/week @ 2025-01-17 1/week @ 2025-01-31 6/week @ 2025-02-07 170/week @ 2025-02-14 9/week @ 2025-02-21 8/week @ 2025-02-28 114/week @ 2025-03-07 101/week @ 2025-03-14

304 downloads per month
Used in 2 crates (via axsys-noun)

MIT license

34KB
788 lines

urbit-ob

crate docs

Utilities for formatting and parsing Urbit's @p and @q data types (patp/patq).

Example

Generate all the planet names for a given star:

use urbit_ob::*;

fn all_planets(star: u16) -> Vec<String> {
    let star_val: u32 = star as u32;
    let mut p_names: Vec<String> = Vec::with_capacity(0xffff);
    for value in 0x0001..=0xffff {
        let p_val: u32 = (value << 16) | star_val;
        let p_name = patp(p_val);
        p_names.push(p_name);
    }
    p_names
}

fn main() {
    let star_val: u16 = patp2int("~rondev").unwrap();
    println!("{:?}", all_planets(star_val).first().unwrap())
}

See the Documentation for all features.


lib.rs:

Utilities for formatting and parsing Urbit's @p and @q data types (patp/patq).

Dependencies

~0.8–1.3MB
~29K SLoC