-
Notifications
You must be signed in to change notification settings - Fork 2
/
sage.cabal
76 lines (72 loc) · 2.51 KB
/
sage.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
cabal-version: 2.4
name: sage
version: 0.2
synopsis: Efficient parser combinators
description:
Efficient parser combinators for modern Haskell.
.
Sage is about 10% faster and twice as memory-efficient as Attoparsec.
.
Inspired by Ed Kmett's <https://github.com/ekmett/codex/tree/master/parsnip parsnip> parser,
which for some reason I thought was called 'parsley'. (I don't care for root vegetable puns)
bug-reports: https://github.com/lightandlight/sage/issues
license: BSD-3-Clause
author: Isaac Elliott
maintainer: isaace71295@gmail.com
copyright: 2020-2022 Isaac Elliott
category: Text
extra-source-files: CHANGELOG.md
library
exposed-modules: Streaming.Chars
, Streaming.Chars.ByteString.Utf8
, Streaming.Chars.Text
, Text.Sage
, Text.Sage.Indentation
build-depends: base >=4.16 && <5
, bytestring
, containers >=0.6
, deepseq >=1.4
, mtl
, parsers
, streaming
, text >=2.0
, transformers
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -Werror
benchmark sage-bench
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: Parsers
build-depends: base
, sage
, attoparsec >=0.14 && <0.15
, bytestring
, criterion
, deepseq
, mmap
, optparse-applicative >=0.18 && <0.19
, parsers
, streaming
, text
, weigh
hs-source-dirs: bench
default-language: Haskell2010
ghc-options: -Wall -Werror
test-suite sage-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Test.Indentation
, Test.Parser
, Test.Span
build-depends: base
, sage
, containers
, hedgehog
, hspec
, hspec-hedgehog
, parsers
, text
default-language: Haskell2010
ghc-options: -Wall -Werror