parse_rust 0.1.0

A Rust implementation of Python's parse library for string parsing and pattern matching
Documentation
[dependencies.chrono]
version = "0.4"

[dependencies.lazy_static]
version = "1.4.0"

[dependencies.regex]
version = "1.10.2"

[dependencies.thiserror]
version = "1.0"

[[example]]
name = "basic_parsing"
path = "examples/basic_parsing.rs"

[[example]]
name = "datetime_parsing"
path = "examples/datetime_parsing.rs"

[[example]]
name = "named_fields"
path = "examples/named_fields.rs"

[[example]]
name = "search_and_findall"
path = "examples/search_and_findall.rs"

[lib]
name = "parse_rust"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A Rust implementation of Python's parse library for string parsing and pattern matching"
documentation = "https://github.com/lucien2k/parse_rust"
edition = "2021"
homepage = "https://github.com/lucien2k/parse_rust"
license = "MIT"
name = "parse_rust"
readme = "README.md"
repository = "https://github.com/lucien2k/parse_rust"
version = "0.1.0"

[[test]]
name = "lib_test"
path = "tests/lib_test.rs"