3 stable releases

3.2.2 Jul 25, 2024

#9 in #uri-url

Download history 44/week @ 2025-12-30 57/week @ 2026-01-06 55/week @ 2026-01-13 70/week @ 2026-01-20 59/week @ 2026-01-27 110/week @ 2026-02-03 62/week @ 2026-02-10 165/week @ 2026-02-17 88/week @ 2026-02-24 107/week @ 2026-03-03 118/week @ 2026-03-10 84/week @ 2026-03-17 103/week @ 2026-03-24 50/week @ 2026-03-31 57/week @ 2026-04-07 64/week @ 2026-04-14

277 downloads per month

MIT/Apache

235KB
6.5K SLoC

Build IRI and IRI references at compile time

Crate informations License Documentation

This is a companion crate for iref providing macros to build 'static URI/IRIs and URI/IRI references at compile time.

Basic usage

Use the uri! (resp. iri!) macro to build URI (resp. IRI) statically, and the uri_ref! (resp iri_ref!) macro to build URI (resp. IRI) references statically.

use iref::{Iri, IriRef};
use static_iref::{iri, iri_ref};

const IRI: &'static Iri = iri!("https://www.rust-lang.org/foo/bar#frag");
const IRI_REF: &'static IriRef = iri_ref!("/foo/bar#frag");

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~3–4.5MB
~87K SLoC