3 stable releases

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

#490 in Internationalization (i18n)

Download history 2654/week @ 2025-03-12 2818/week @ 2025-03-19 2507/week @ 2025-03-26 2199/week @ 2025-04-02 2307/week @ 2025-04-09 2400/week @ 2025-04-16 5122/week @ 2025-04-23 4703/week @ 2025-04-30 3647/week @ 2025-05-07 24835/week @ 2025-05-14 46459/week @ 2025-05-21 49657/week @ 2025-05-28 47259/week @ 2025-06-04 47427/week @ 2025-06-11 51965/week @ 2025-06-18 57927/week @ 2025-06-25

213,419 downloads per month
Used in 121 crates (40 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