increparse 0.1.0

A combinator-agnostic, multi-pass fixpoint parsing engine: run schedules of parser passes over a growing parse tree.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "increparse"
version = "0.1.0"
edition = "2021"
description = "A combinator-agnostic, multi-pass fixpoint parsing engine: run schedules of parser passes over a growing parse tree."
license = "MIT OR Apache-2.0"
repository = "https://github.com/thyrgle/increparse"
readme = "../../README.md"
keywords = ["parser", "incremental", "lsp", "combinators", "fixpoint"]
categories = ["parsing", "development-tools"]

[dependencies]
rayon = { version = "1.10", optional = true }

[features]
default = []
parallel = ["dep:rayon"]