Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vstroebel/de-regex

Regular expression based deserialization for serde
https://github.com/vstroebel/de-regex

regular-expression rust serde

Last synced: 4 days ago
JSON representation

Regular expression based deserialization for serde

Awesome Lists containing this project

README

        

# De-Regex

[![docs.rs badge](https://docs.rs/de-regex/badge.svg)](https://docs.rs/de-regex/)
[![crates.io badge](https://img.shields.io/crates/v/de-regex.svg)](https://crates.io/crates/de-regex/)
[![Rust](https://github.com/vstroebel/de-regex/actions/workflows/rust.yml/badge.svg)](https://github.com/vstroebel/de-regex/actions/workflows/rust.yml)

This crate contains a library that deserializes a string into a struct based on a regular expression and serde.

## Example

```rust
use serde::Deserialize;

#[derive(Deserialize)]
struct Dimensions {
width: u32,
height: u32
}

let pattern = r"^(?P\d+)x(?P\d+)$";
let input = "800x600";

let dim: Dimensions = de_regex::from_str(input, pattern).unwrap();

assert_eq!(dim.width, 800);
assert_eq!(dim.height, 600);
```

## License

This project is licensed under either of

* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT)

## Contribution

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