-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpostgres-wire.cabal
154 lines (147 loc) · 5.24 KB
/
postgres-wire.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
name: postgres-wire
version: 0.1.0.0
synopsis: A native Haskell driver for PostgreSQL
description: Please see README.md
homepage: https://github.com/postgres-haskell/postgres-wire#readme
license: MIT
license-file: LICENSE
author: Vyacheslav Hashov, Anton Gushcha
maintainer: vyacheslavhashov@gmail.com
copyright: 2017 Vyacheslav Hashov
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
include-dirs: cbits/include
c-sources: cbits/src/pw_utils.c
exposed-modules: Database.PostgreSQL.Driver
, Database.PostgreSQL.Driver.Connection
, Database.PostgreSQL.Driver.RawConnection
, Database.PostgreSQL.Driver.Settings
, Database.PostgreSQL.Driver.StatementStorage
, Database.PostgreSQL.Driver.Error
, Database.PostgreSQL.Driver.Query
, Database.PostgreSQL.Protocol.Types
, Database.PostgreSQL.Protocol.Encoders
, Database.PostgreSQL.Protocol.Decoders
, Database.PostgreSQL.Protocol.Parsers
, Database.PostgreSQL.Protocol.DataRows
, Database.PostgreSQL.Protocol.Store.Encode
, Database.PostgreSQL.Protocol.Store.Decode
, Database.PostgreSQL.Protocol.Codecs.Decoders
, Database.PostgreSQL.Protocol.Codecs.Encoders
, Database.PostgreSQL.Protocol.Codecs.PgTypes
, Database.PostgreSQL.Protocol.Codecs.Time
, Database.PostgreSQL.Protocol.Codecs.Numeric
build-depends: base >= 4.7 && < 5
, bytestring
, socket
, socket-unix
, vector
, time
, hashable
, hashtables
, unordered-containers
, unix
, stm
, tls
, cryptonite
, store-core >= 0.4.1 && < 0.5
, scientific
, uuid
default-language: Haskell2010
default-extensions:
BangPatterns
OverloadedStrings
GeneralizedNewtypeDeriving
LambdaCase
cc-options: -O2 -Wall
test-suite postgres-wire-test-connection
type: exitcode-stdio-1.0
hs-source-dirs: tests_connection
main-is: test.hs
build-depends: base
, postgres-wire
, tasty
, tasty-hunit
, bytestring
, process
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions:
OverloadedStrings
GeneralizedNewtypeDeriving
test-suite postgres-wire-test
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: test.hs
other-modules: Connection
, Driver
, Fault
, Protocol
, Misc
, Codecs.Runner
, Codecs.QuickCheck
build-depends: base
, postgres-wire
, bytestring
, vector
, tasty
, socket
, async
, tasty-hunit
, tasty-quickcheck
, QuickCheck >= 2.9
, scientific
, time
, uuid
, tagged
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions:
OverloadedStrings
GeneralizedNewtypeDeriving
benchmark postgres-wire-bench
type: exitcode-stdio-1.0
hs-source-dirs:
bench
main-is: Bench.hs
build-depends: base
, postgres-wire
, bytestring
, vector
, postgresql-libpq
, clock
, optparse-applicative
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-s
default-language: Haskell2010
default-extensions:
OverloadedStrings
GeneralizedNewtypeDeriving
benchmark postgres-wire-bench-codecs
type: exitcode-stdio-1.0
hs-source-dirs:
bench
main-is: Codecs.hs
build-depends: base
, postgres-wire
, bytestring
, vector
, criterion
, deepseq
, postgresql-libpq
, clock
, optparse-applicative
, time
, uuid
, scientific
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-s
default-language: Haskell2010
default-extensions:
OverloadedStrings
GeneralizedNewtypeDeriving
source-repository head
type: git
location: https://github.com/postgres-haskell/postgres-wire