runmunch 1.1.0

A Rust implementation of hunspell's unmunch tool for expanding dictionary words using affix files
Documentation
[[bin]]
name = "runmunch"
path = "src/bin/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive"]
version = "4.4"

[dependencies.regex]
version = "1.10"

[dependencies.thiserror]
version = "1.0"

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

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

[package]
authors = ["VLatko Kosturjak"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A Rust implementation of hunspell's unmunch tool for expanding dictionary words using affix files"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "runmunch"
readme = "README.md"
version = "1.1.0"

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