-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfastparser.cabal
More file actions
46 lines (43 loc) · 1.63 KB
/
fastparser.cabal
File metadata and controls
46 lines (43 loc) · 1.63 KB
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
name: fastparser
version: 0.6.0
synopsis: A fast, but bare bones, bytestring parser combinators library.
description: Please see README.md
homepage: https://github.com/bartavelle/fastparser#readme
license: BSD3
license-file: LICENSE
author: Simon Marechal
maintainer: bartavelle@gmail.com
copyright: Simon Marechal
category: Parsing
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
cabal-version: >=1.10
Tested-With: GHC == 8.8.4, GHC == 8.10.2
library
hs-source-dirs: src
exposed-modules: ByteString.Parser.Fast
build-depends: base >= 4.13 && < 5
, bytestring
, thyme >= 0.4 && < 0.5
, vector-space >= 0.10 && < 1
, microlens == 0.4.*
, bytestring-lexing == 0.5.*
, containers >= 0.5 && < 0.7
, kan-extensions == 5.*
, transformers >= 0.4
ghc-options: -O2 -Wall
default-language: Haskell2010
if !impl(ghc >= 8.0)
build-depends: semigroups == 0.18.*
source-repository head
type: git
location: https://github.com/bartavelle/fastparser
benchmark timestamps
type: exitcode-stdio-1.0
main-is: timestamps.hs
hs-source-dirs: bench
build-depends: base >= 4.13 && < 5
, fastparser
, bytestring
ghc-options: -O2 -Wall
default-language: Haskell2010