-
Notifications
You must be signed in to change notification settings - Fork 301
Expand file tree
/
Copy pathpersistent-mysql.cabal
More file actions
89 lines (85 loc) · 2.69 KB
/
persistent-mysql.cabal
File metadata and controls
89 lines (85 loc) · 2.69 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
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
name: persistent-mysql
version: 2.13.1.6
license: MIT
license-file: LICENSE
author: Felipe Lessa <felipe.lessa@gmail.com>, Michael Snoyman
maintainer: Felipe Lessa <felipe.lessa@gmail.com>
synopsis: Backend for the persistent library using MySQL database server.
category: Database, Yesod
stability: Stable
cabal-version: >= 1.10
build-type: Simple
homepage: http://www.yesodweb.com/book/persistent
bug-reports: https://github.com/yesodweb/persistent/issues
description:
This package contains a backend for persistent using the
MySQL database server. Internally it uses the @mysql-simple@
and @mysql@ packages in order to access the database.
.
This package supports only MySQL 5.1 and above. However, it
has been tested only on MySQL 5.5.
Only the InnoDB storage engine is officially supported.
.
Known problems:
.
* This package does not support statements inside other
statements.
extra-source-files: ChangeLog.md
library
build-depends: base >= 4.9 && < 5
, persistent >= 2.15 && < 3
, aeson >= 1.0
, blaze-builder
, bytestring >= 0.10.8
, conduit >= 1.2.12
, containers >= 0.5
, monad-logger
, mysql >= 0.2.1 && < 0.3
, mysql-simple >= 0.4.7 && < 0.5
, resourcet >= 1.1
, resource-pool
, text >= 1.2
, transformers >= 0.5
, unliftio-core
exposed-modules: Database.Persist.MySQL
ghc-options: -Wall
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/yesodweb/persistent.git
test-suite test
type: exitcode-stdio-1.0
main-is: main.hs
hs-source-dirs: test
other-modules:
MyInit
InsertDuplicateUpdate
CustomConstraintTest
ImplicitUuidSpec
JSONTest
ghc-options: -Wall
build-depends:
base >= 4.9 && < 5
, aeson
, bytestring
, containers
, conduit
, fast-logger
, hspec >= 2.4
, http-api-data
, HUnit
, monad-logger
, mysql
, path-pieces
, persistent
, persistent-mysql
, persistent-qq
, persistent-test
, QuickCheck
, quickcheck-instances
, resourcet
, text
, time
, transformers
, unliftio-core
default-language: Haskell2010