-
Notifications
You must be signed in to change notification settings - Fork 2
/
fungll-combinators.cabal
53 lines (47 loc) · 2.16 KB
/
fungll-combinators.cabal
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
cabal-version: 3.0
-- Initial haskell-gll.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
-- The name of the package.
name: fungll-combinators
version: 0.4.1.1
synopsis: GLL parser with simple combinator interface
license: BSD-3-Clause
license-file: LICENSE
author: L. Thomas van Binsbergen
maintainer: L. Thomas van Binsbergen <[email protected]>
category: Compilers
build-type: Simple
tested-with: GHC == 8.2.1
homepage: https://github.com/ltbinsbe/fungll-combinators
bug-reports: https://github.com/ltbinsbe/fungll-combinators/issues
copyright: Copyright (C) 2015-2023 L. Thomas van Binsbergen
stability: experimental
description:
The package fungll-combinators provides generalised top-down parsing combinators according to the
FUNGLL parsing algorithm [Van Binsbergen et al. 2018].
.
Please email any questions, comments and suggestions to the
maintainer.
extra-source-files: changelog.txt
library
hs-source-dirs : src
build-depends : base >=4.3.1.0 && <= 5
, containers >= 0.4
, array
, pretty
, text
, regex-applicative >= 0.3
, time >= 1.8
, gll >= 0.4.1.1
exposed-modules : GLL.ParserCombinators
, GLL.Types.BSR
, GLL.Types.DataSets
, GLL.Types.Input
other-modules : GLL.Combinators.Visit.FUNGLL
, GLL.Combinators.Visit.Sem
, GLL.Combinators.Visit.Join
, GLL.Combinators.Interface
, GLL.Types.TypeCompose
ghc-options: -fwarn-incomplete-patterns -fwarn-monomorphism-restriction -fwarn-unused-imports
default-language: Haskell2010
default-extensions: TypeOperators, FlexibleInstances, ScopedTypeVariables, TypeSynonymInstances