Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coq-community/parseque
Total Parser Combinators in Coq [maintainer=@womeier]
https://github.com/coq-community/parseque
coq parser-combinators
Last synced: about 2 months ago
JSON representation
Total Parser Combinators in Coq [maintainer=@womeier]
- Host: GitHub
- URL: https://github.com/coq-community/parseque
- Owner: coq-community
- License: mit
- Created: 2017-11-08T12:37:45.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-01-02T14:59:40.000Z (about 1 year ago)
- Last Synced: 2024-04-22T06:26:30.523Z (9 months ago)
- Topics: coq, parser-combinators
- Language: Coq
- Homepage:
- Size: 62.5 KB
- Stars: 41
- Watchers: 5
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Parseque
[![Docker CI][docker-action-shield]][docker-action-link]
[![Contributing][contributing-shield]][contributing-link]
[![Code of Conduct][conduct-shield]][conduct-link]
[![Zulip][zulip-shield]][zulip-link][docker-action-shield]: https://github.com/coq-community/parseque/actions/workflows/docker-action.yml/badge.svg?branch=master
[docker-action-link]: https://github.com/coq-community/parseque/actions/workflows/docker-action.yml[contributing-shield]: https://img.shields.io/badge/contributions-welcome-%23f7931e.svg
[contributing-link]: https://github.com/coq-community/manifesto/blob/master/CONTRIBUTING.md[conduct-shield]: https://img.shields.io/badge/%E2%9D%A4-code%20of%20conduct-%23f15a24.svg
[conduct-link]: https://github.com/coq-community/manifesto/blob/master/CODE_OF_CONDUCT.md[zulip-shield]: https://img.shields.io/badge/chat-on%20zulip-%23c1272d.svg
[zulip-link]: https://coq.zulipchat.com/#narrow/stream/237663-coq-community-devs.20.26.20usersPort of the agdarsec total parser combinator library to Coq.
## Meta
- Author(s):
- G. Allais (initial)
- Coq-community maintainer(s):
- Wolfgang Meier ([**@womeier**](https://github.com/womeier))
- License: [MIT License](LICENSE)
- Compatible Coq versions: 8.16 or later
- Additional dependencies: none
- Coq namespace: `parseque`
- Related publication(s):
- [agdarsec - Total Parser Combinators](https://gallais.github.io/pdf/agdarsec18.pdf)## Building and installation instructions
The easiest way to install the latest released version of Parseque
is via [OPAM](https://opam.ocaml.org/doc/Install.html):```shell
opam repo add coq-released https://coq.inria.fr/opam/released
opam install coq-parseque
```To instead build and install manually, do:
``` shell
git clone https://github.com/coq-community/parseque.git
cd parseque
make # or make -j
make install
```## Documentation
This Coq library is a port of the [agdarsec](https://github.com/gallais/agdarsec)
library for Agda. The core design of agdarsec is described in
[this paper](https://gallais.github.io/pdf/agdarsec18.pdf), while
[this blog post](https://gallais.github.io/blog/instrumenting-agdarsec)
describes instrumentation.