#iri #static #compile-time #macro #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

#10 in #iri

Download history 1715/week @ 2024-07-21 2121/week @ 2024-07-28 2600/week @ 2024-08-04 2350/week @ 2024-08-11 2058/week @ 2024-08-18 2023/week @ 2024-08-25 2309/week @ 2024-09-01 2609/week @ 2024-09-08 2587/week @ 2024-09-15 2790/week @ 2024-09-22 2191/week @ 2024-09-29 2797/week @ 2024-10-06 2071/week @ 2024-10-13 2459/week @ 2024-10-20 1921/week @ 2024-10-27 2291/week @ 2024-11-03

8,883 downloads per month
Used in 82 crates (30 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

~2.8–4MB
~83K SLoC