re-parser 0.1.0

A regex pattern parser that builds a typed AST from regex syntax
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "re-parser"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A regex pattern parser that builds a typed AST from regex syntax"
documentation = "https://docs.rs/re-parser"
readme = "README.md"
keywords = [
    "regex",
    "parser",
    "ast",
    "parsing",
]
categories = [
    "parser-implementations",
    "parsing",
]
license = "MIT"
repository = "https://github.com/jmishra01/swiftlet"

[features]
default = []

[lib]
name = "re_parser"
crate-type = ["lib"]
path = "src/lib.rs"

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

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

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

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

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

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

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

[dependencies.thiserror]
version = "2.0.18"