| Crates.io | iref-macros |
| lib.rs | iref-macros |
| version | 3.2.2 |
| created_at | 2024-07-25 12:49:27.128796+00 |
| updated_at | 2024-07-25 15:01:20.307737+00 |
| description | Macros for the `iref` library |
| homepage | |
| repository | https://github.com/timothee-haudebourg/iref |
| max_upload_size | |
| id | 1314944 |
| size | 6,494 |
This is a companion crate for iref providing macros to build
'static URI/IRIs and URI/IRI references at compile time.
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");
Licensed under either of
at your option.
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.