#iri #macro #static #iref

macro static-iref

Build static IRI and IRI references at compile time

3 stable releases

3.0.0 Aug 23, 2023
2.0.0 Mar 18, 2022
1.0.0 Mar 31, 2020

#4 in #iri

Download history 955/week @ 2023-07-28 959/week @ 2023-08-04 860/week @ 2023-08-11 837/week @ 2023-08-18 769/week @ 2023-08-25 690/week @ 2023-09-01 851/week @ 2023-09-08 1152/week @ 2023-09-15 1318/week @ 2023-09-22 1092/week @ 2023-09-29 909/week @ 2023-10-06 1365/week @ 2023-10-13 1078/week @ 2023-10-20 1411/week @ 2023-10-27 986/week @ 2023-11-03 553/week @ 2023-11-10

4,370 downloads per month
Used in 36 crates (15 directly)

MIT/Apache

7KB
78 lines

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.5MB
~82K SLoC