[package]
edition = "2021"
rust-version = "1.74"
name = "formatparse-core"
version = "0.8.1"
authors = ["Odos Matthews <odosmatthews@gmail.com>"]
build = false
exclude = ["src/types/regex/tests.rs"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core Rust library for parsing strings using Python format() syntax (no Python bindings)"
documentation = "https://docs.rs/formatparse-core"
readme = "README.md"
keywords = [
"parse",
"format",
"string",
"regex",
"datetime",
]
categories = [
"parser-implementations",
"text-processing",
]
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/eddiethedean/formatparse"
[package.metadata.docs.rs]
all-features = false
[lib]
name = "formatparse_core"
path = "src/lib.rs"
[dependencies.fancy-regex]
version = "0.14"
[dependencies.once_cell]
version = "1.21.4"
[dependencies.regex]
version = "1.12.3"
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.rand]
version = "0.9.3"