rfc2396 1.1.0

A library for validating strings as RFC2396-compliant URIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use anyhow::Context;

test_cases! {
    char::mark: {
        case_apostrophe: "'",
        case_asterisk: "*",
        case_dash: "-",
        case_exclamation: "!",
        case_parenthesis_left: "(",
        case_parenthesis_right: ")",
        case_period: ".",
        case_tilde: "~",
        case_underscore: "_"
    }
}