rable 0.1.7

A Rust implementation of the Parable bash parser — complete GNU Bash 5.3-compatible parsing with Python bindings
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.93"
name = "rable"
version = "0.1.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of the Parable bash parser — complete GNU Bash 5.3-compatible parsing with Python bindings"
readme = "README.md"
keywords = [
    "bash",
    "parser",
    "shell",
    "ast",
    "pyo3",
]
categories = [
    "parsing",
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/mpecan/rable"

[features]
default = []
python = ["pyo3"]

[lib]
name = "rable"
crate-type = [
    "lib",
    "cdylib",
]
path = "src/lib.rs"

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

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

[dependencies.pyo3]
version = "0.24"
features = ["extension-module"]
optional = true

[dependencies.thiserror]
version = "2"

[lints.clippy]
expect_used = "deny"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "deny"
todo = "deny"
unwrap_used = "deny"

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1