#url #utilities #compile-time #validation #error #macro #valid

macro url-macro

A compile-time URL validation macro. Parses and checks URLs at compile-time, converting valid URLs into url::Url objects. Provides early error detection for malformed URLs.

10 releases

new 0.1.9 Sep 4, 2024
0.1.8 Aug 5, 2024
0.1.7 Jul 31, 2024

#510 in Procedural macros

Download history 397/week @ 2024-07-15 83/week @ 2024-07-22 129/week @ 2024-07-29 124/week @ 2024-08-05 131/week @ 2024-08-19 61/week @ 2024-08-26

320 downloads per month

Apache-2.0 OR MIT

13KB
201 lines

Compile-time URL validation

Build Documentation

This crate provides a url! macro for compile-time URL validation.

Examples

// This compiles correctly
let valid = url!("https://www.rust-lang.org/");
// This triggers a compiler error
let invalid = url!("foo");

Installation

cargo add url-macro url

Important: add the url crate too.

Gratitude

Like the project? ⭐ Star this repo on GitHub!

License

Apache License 2.0 or MIT License at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.5MB
~48K SLoC