[dependencies]
[[example]]
name = "alphanum"
path = "examples/alphanum.rs"
[[example]]
name = "calc"
path = "examples/calc.rs"
[lib]
name = "mipl"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parsing"]
description = "Minimal Imperative Parsing Library"
edition = "2024"
keywords = ["parser", "parsing", "tokens", "tokenizer"]
license = "MIT"
name = "mipl"
readme = "README.md"
repository = "https://codeberg.org/ecsolticia/mipl"
version = "0.2.1"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "test_first_emphasized_in_line"
path = "tests/test_first_emphasized_in_line.rs"
[[test]]
name = "test_parsers"
path = "tests/test_parsers.rs"
[[test]]
name = "test_subparser"
path = "tests/test_subparser.rs"