uxn-tal 0.7.2

uxntal:// protocol | a Rust library for assembling TAL (Tal Assembly Language) files into UXN ROM files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Enhanced ProtocolParser that includes git support
use uxn_tal_defined::v1::ProtocolParseResult;

pub struct ProtocolParser;

impl ProtocolParser {
    /// Parse a uxntal protocol URL with automatic git URL enhancement
    /// This shadows the base ProtocolParser::parse to provide git support automatically
    pub fn parse(raw_url: &str) -> ProtocolParseResult {
        crate::parse_uxntal_url(raw_url)
    }
}