-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmeta.yml
60 lines (45 loc) · 1.2 KB
/
meta.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
fullname: Parseque
shortname: parseque
organization: coq-community
community: true
action: true
synopsis: Total parser combinators in Coq
description: |-
Port of the agdarsec total parser combinator library to Coq.
publications:
- pub_url: https://gallais.github.io/pdf/agdarsec18.pdf
pub_title: agdarsec - Total Parser Combinators
authors:
- name: G. Allais
initial: true
maintainers:
- name: Wolfgang Meier
nickname: womeier
opam-file-maintainer: palmskog@gmail.com
opam-file-version: dev
license:
fullname: MIT License
identifier: MIT
supported_coq_versions:
text: 8.16 or later
opam: '{>= "8.16"}'
tested_coq_opam_versions:
- version: 'dev'
- version: '8.18'
- version: '8.17'
- version: '8.16'
namespace: parseque
keywords:
- name: parsing
- name: combinators
categories:
- name: Computer Science/Data Types and Data Structures
documentation: |-
## 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.
---