pydocstring 0.0.3

A zero-dependency Rust parser for Python docstrings (Google and NumPy styles) with a unified syntax tree and byte-precise source locations
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 = "pydocstring"
version = "0.0.3"
authors = ["Ryuma Asai"]
build = false
exclude = [
    ".devcontainer/",
    ".githooks/",
    ".github/",
    "target/",
    "tests/",
    "bindings/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A zero-dependency Rust parser for Python docstrings (Google and NumPy styles) with a unified syntax tree and byte-precise source locations"
homepage = "https://github.com/qraqras/pydocstring"
documentation = "https://docs.rs/pydocstring"
readme = "README.md"
keywords = [
    "python",
    "docstring",
    "parser",
    "google",
    "numpy",
]
categories = [
    "parser-implementations",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/qraqras/pydocstring"

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

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

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

[dependencies]