static-iref

Crates.iostatic-iref
lib.rsstatic-iref
version3.0.0
sourcesrc
created_at2020-03-31 11:49:44.793208
updated_at2023-08-23 14:56:03.585504
descriptionBuild static IRI and IRI references at compile time
homepage
repositoryhttps://github.com/timothee-haudebourg/static-iref
max_upload_size
id224819
size19,005
Timothée Haudebourg (timothee-haudebourg)

documentation

https://docs.rs/static-iref

README

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.

Commit count: 3

cargo fmt