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

#9 in #iri

Download history 2429/week @ 2024-11-17 1959/week @ 2024-11-24 2932/week @ 2024-12-01 2053/week @ 2024-12-08 2322/week @ 2024-12-15 345/week @ 2024-12-22 313/week @ 2024-12-29 1653/week @ 2025-01-05 3387/week @ 2025-01-12 3053/week @ 2025-01-19 2937/week @ 2025-01-26 3124/week @ 2025-02-02 2858/week @ 2025-02-09 2019/week @ 2025-02-16 2365/week @ 2025-02-23 2002/week @ 2025-03-02

9,412 downloads per month
Used in 100 crates (33 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–4MB
~88K SLoC