-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpacked.cabal
102 lines (96 loc) · 2.18 KB
/
packed.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
cabal-version: 2.0
name: packed
version: 0.2.0
description: Please see the README on Github at <https://github.com/andrewthad/packed#readme>
homepage: https://github.com/andrewthad/packed#readme
bug-reports: https://github.com/andrewthad/packed/issues
author: Andrew Martin
maintainer: [email protected]
copyright: 2018 Andrew Martin
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/andrewthad/packed
library
hs-source-dirs: src
build-depends:
base >= 4.11 && < 5.0
, ghc-prim >= 0.5.0 && < 0.6
, primitive >= 0.6.4 && < 0.7
, primitive-maybe >= 0.1.1 && < 0.2
if impl(ghc < 8.4.3)
build-depends: base < 0
exposed-modules:
Data.ByteMap
Data.List.Unlifted
Packed.Bytes
Packed.Bytes.Window
Packed.Bytes.Small
Packed.Bytes.Parser
Packed.Bytes.Table
Packed.Bytes.Stream.Parser
Packed.Bytes.Stream.ST
Packed.Bytes.Stream.IO
Packed.Bytes.Set
Packed.Bytes.Trie
Packed.Bytes.Builder
Packed.Text
Packed.Text.Small
Packed.Text.Window
Packed.Json.Decoding
ghc-options: -O2 -Wall
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
ghc-options: -rtsopts -threaded -O2
other-modules:
Parser
Json
Parser.Http.Request
Data.Trie.Naive
MinimalTrieParser
ByteMap
hs-source-dirs:
test
, common
build-depends:
base >=4.7 && <5
, packed
, hedgehog >= 0.5
, tasty-hedgehog >= 0.1.0.2
, tasty-hunit >= 0.9
, tasty >= 1.0
, containers >= 0.5.11 && < 0.6
, split
, ghc-prim
, primitive >= 0.6.4
, quickcheck-classes >= 0.4.14.2
, tasty-quickcheck
, QuickCheck == 2.11.3
default-language: Haskell2010
benchmark bench
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Parser.Http.Request
hs-source-dirs:
bench
, common
build-depends:
base
, packed
, gauge
, bytestring
, hashable
, containers >= 0.5.11 && < 0.6
, unordered-containers
, primitive >= 0.6.4
, split
ghc-options: -O2 -Wall
default-language: Haskell2010