verbex 0.1.0

Vebex is a Rust library that provides procedural macros for creating regular expressions in a verbose and readable way.
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 2.49 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 991.73 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 24s Average build duration of successful builds.
  • all releases: 24s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • chinifabio

Verbex

Verbex is a Rust library that provides procedural macros for creating regular expressions in a verbose and readable way.

Features

  • Create regular expressions using a more readable syntax.
  • Compile-time validation of regular expressions.
  • Integration with Rust's standard regex crate.

Installation

Add the following to your Cargo.toml:

[dependencies]
verbex = "0.1.0"

Usage

use verbex::regex;

let re = regex! {
    start_of_line
    "hello"
    one_or_more_whitespace
    "world"
    end_of_line
};

assert!(re.is_match("hello world"));

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for details.