forked from winterland1989/mysql-haskell
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmysql-haskell.cabal
87 lines (83 loc) · 3.08 KB
/
mysql-haskell.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
name: mysql-haskell
version: 0.8.4.3
synopsis: pure haskell MySQL driver
description: pure haskell MySQL driver
license: BSD3
license-file: LICENSE
author: winterland1989
maintainer: winterland1989@gmail.com
copyright: (c) 2016 Winterland
category: Database
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
homepage: https://github.com/winterland1989/mysql-haskell
bug-reports: https://github.com/winterland1989/mysql-haskell/issues
source-repository head
type: git
location: git://github.com/winterland1989/mysql-haskell.git
library
exposed-modules: Database.MySQL.Base
, Database.MySQL.TLS
, Database.MySQL.Protocol.Auth
, Database.MySQL.Protocol.Command
, Database.MySQL.Protocol.ColumnDef
, Database.MySQL.Protocol.Packet
, Database.MySQL.Protocol.MySQLValue
, Database.MySQL.Protocol.Escape
, Database.MySQL.BinLog
, Database.MySQL.BinLogProtocol.BinLogEvent
, Database.MySQL.BinLogProtocol.BinLogValue
, Database.MySQL.BinLogProtocol.BinLogMeta
, Database.MySQL.Connection
other-modules: Database.MySQL.Query
build-depends: base < 5
, monad-loops
, network
, io-streams
, tcp-streams
, wire-streams
, binary
, binary-ieee754
, binary-parsers
, bytestring
, text
, cryptonite
, memory
, time
, scientific
, bytestring-lexing
, blaze-textual
, word24
, tls
, vector
default-language: Haskell2010
default-extensions: DeriveDataTypeable
, DeriveGeneric
, MultiWayIf
, OverloadedStrings
ghc-options: -Wall
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: BinaryRow
, BinaryRowNew
, BinLog
, BinLogNew
, TextRow
, TextRowNew
, ExecuteMany
hs-source-dirs: test
build-depends: mysql-haskell
, base
, bytestring
, tasty
, tasty-hunit
, text
, io-streams
, time
, vector
default-extensions: MultiWayIf
, OverloadedStrings
ghc-options: -threaded
default-language: Haskell2010