-
Notifications
You must be signed in to change notification settings - Fork 4
/
binary-parser.cabal
85 lines (80 loc) · 1.96 KB
/
binary-parser.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
77
78
79
80
81
82
83
84
85
cabal-version: 3.0
name: binary-parser
version: 0.5.7.6
synopsis:
An efficient but limited parser API specialised to bytestrings
category: Parser, Binary
homepage: https://github.com/nikita-volkov/binary-parser
bug-reports: https://github.com/nikita-volkov/binary-parser/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
copyright: (c) 2015, Nikita Volkov
license: MIT
license-file: LICENSE
source-repository head
type: git
location: git://github.com/nikita-volkov/binary-parser.git
common base
default-language: Haskell2010
default-extensions:
NoImplicitPrelude
NoMonomorphismRestriction
Arrows
BangPatterns
ConstraintKinds
DataKinds
DefaultSignatures
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
DerivingVia
EmptyDataDecls
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
LambdaCase
LiberalTypeSynonyms
MagicHash
MultiParamTypeClasses
MultiWayIf
OverloadedStrings
ParallelListComp
PatternGuards
QuasiQuotes
RankNTypes
RecordWildCards
RoleAnnotations
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TupleSections
TypeFamilies
TypeOperators
UnboxedTuples
library
import: base
hs-source-dirs: library
other-modules: BinaryParser.Prelude
exposed-modules: BinaryParser
build-depends:
, base >=4.12 && <5
, bytestring >=0.10 && <0.13
, mtl >=2 && <3
, text >=1 && <3
, transformers >=0.4 && <0.8
test-suite tests
import: base
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
build-depends:
, base-prelude >=1.6 && <2
, binary-parser
, bytestring >=0.10 && <0.13
, tasty >=1.2.3 && <2
, tasty-hunit ^>=0.10
, tasty-quickcheck ^>=0.10