forked from brandonchinn178/persistent-mtl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersistent-mtl.cabal
102 lines (97 loc) · 2.88 KB
/
persistent-mtl.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack
name: persistent-mtl
version: 0.4.0.0
synopsis: Monad transformer for the persistent API
description: A monad transformer and mtl-style type class for using the
persistent API directly in your monad transformer stack.
category: Database
homepage: https://github.com/brandonchinn178/persistent-mtl#readme
bug-reports: https://github.com/brandonchinn178/persistent-mtl/issues
maintainer: Brandon Chinn <[email protected]>
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
test/goldens/persistent-2.10/sqlqueryrep_show_representation.golden
test/goldens/persistent-2.11/sqlqueryrep_show_representation.golden
test/goldens/persistent-2.12/sqlqueryrep_show_representation.golden
test/goldens/persistent-2.13/sqlqueryrep_show_representation.golden
test/goldens/persistent-2.8/sqlqueryrep_show_representation.golden
test/goldens/persistent-2.9/sqlqueryrep_show_representation.golden
source-repository head
type: git
location: https://github.com/brandonchinn178/persistent-mtl
library
exposed-modules:
Control.Monad.IO.Rerunnable
Database.Persist.Monad
Database.Persist.Monad.Class
Database.Persist.Monad.Orphan.QueryLift
Database.Persist.Monad.Orphan.TransactionLift
Database.Persist.Monad.Shim
Database.Persist.Monad.SqlQueryRep
Database.Persist.Monad.TestUtils
other-modules:
Paths_persistent_mtl
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >=4.10 && <4.16
, conduit >=1.3.0.3 && <1.4
, containers >=0.5.10.2 && <0.7
, exceptions >=0.8 && <0.11
, monad-logger >=0.3.29 && <0.4
, mtl >=2.2.2 && <2.3
, persistent >=2.8.2 && <2.14
, resource-pool >=0.2.3.2 && <0.5
, resourcet >=1.2.1 && <1.3
, text >=1.2.3.0 && <1.3
, transformers >=0.5.2.0 && <0.6
, unliftio >=0.2.7.0 && <0.3
, unliftio-core >=0.1.2.0 && <0.3
, unliftio-pool >=0.2.0.0 && <0.5
default-language: Haskell2010
test-suite persistent-mtl-test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Basic
Example
Generated
Integration
Mocked
MockSqlQueryT
SqlQueryRepTest
TestUtils.DB
TestUtils.Esqueleto
Paths_persistent_mtl
hs-source-dirs:
test
ghc-options: -Wall
build-depends:
base
, bytestring
, conduit
, containers
, esqueleto
, explainable-predicates
, monad-logger
, persistent
, persistent-mtl
, persistent-postgresql
, persistent-sqlite
, persistent-template
, resource-pool
, resourcet
, tasty
, tasty-golden
, tasty-hunit
, text
, unliftio
default-language: Haskell2010