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

#1344 in Web programming

Download history 924/week @ 2024-01-03 728/week @ 2024-01-10 1101/week @ 2024-01-17 1112/week @ 2024-01-24 1759/week @ 2024-01-31 1485/week @ 2024-02-07 1403/week @ 2024-02-14 1563/week @ 2024-02-21 1598/week @ 2024-02-28 1872/week @ 2024-03-06 1360/week @ 2024-03-13 1494/week @ 2024-03-20 1714/week @ 2024-03-27 1613/week @ 2024-04-03 1695/week @ 2024-04-10 1512/week @ 2024-04-17

6,925 downloads per month
Used in 49 crates (17 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
~82K SLoC