sscanf 0.4.2

A sscanf (inverse of format!()) Macro based on Regex
Documentation
[package]
name = "sscanf"
version = "0.4.2"
authors = ["mich101mich <mich101mich@gmail.com>"]
edition = "2018"
rust-version = "1.56.0"
description = "A sscanf (inverse of format!()) Macro based on Regex"
repository = "https://github.com/mich101mich/sscanf"
readme = "Readme.md"
license = "MIT OR Apache-2.0"
keywords = ["parsing", "regex", "text", "string", "scanf"]
categories = ["parsing"]
exclude = ["/.vscode/*", "/.gitignore", "/.github/*", "/*.bat", "/*.sh"]

[dependencies]
sscanf_macro = { path = "sscanf_macro", version = "=0.4.2"}
regex = "1.6.0"
lazy_static = "1.4.0"

[dev-dependencies]
trybuild = "1.0.78"
rustc_version = "0.4.0"
thiserror = "1.0.37"

[target.'cfg(not(msrv_build))'.dependencies]
const_format = "0.2.26"

[target.'cfg(msrv_build)'.dependencies]
const_format = "0.2.26,<0.2.32" # Quote from the Changelog for 0.2.32: "Breaking change: bumped Minimum Supported Rust Version to Rust 1.57"
                                # Writes "breaking change" and procedes to only bump the patch version 😞. Thanks.