[package]
edition = "2024"
rust-version = "1.88.0"
name = "sscanf"
version = "0.5.0"
authors = ["mich101mich <mich101mich@gmail.com>"]
build = false
exclude = [
"/.vscode",
"/.gitignore",
"/.github",
"/*.bat",
"/*.sh",
"/todo.md",
"/submodules",
"/.gitmodules",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A sscanf (inverse of format!()) macro with near unlimited parsing capabilities"
readme = "Readme.md"
keywords = [
"parsing",
"regex",
"text",
"string",
"scanf",
]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mich101mich/sscanf"
[lib]
name = "sscanf"
path = "src/lib.rs"
[[test]]
name = "should_panic"
path = "tests/should_panic.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.regex-automata]
version = "0.4.0"
[dependencies.regex-syntax]
version = "0.8.0"
[dependencies.sscanf_macro]
version = "=0.5.0"
[dev-dependencies.err_span_check]
version = "0.1.1"
[dev-dependencies.rustc_version]
version = "0.4.0"