-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeature-flipper-postgres.cabal
More file actions
77 lines (72 loc) · 2.11 KB
/
Copy pathfeature-flipper-postgres.cabal
File metadata and controls
77 lines (72 loc) · 2.11 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
-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack
name: feature-flipper-postgres
version: 0.1.1.1
synopsis: A minimally obtrusive feature flag library
description: A minimally obtrusive feature flag library
homepage: https://github.com/toddmohney/flipper-postgres#readme
bug-reports: https://github.com/toddmohney/flipper-postgres/issues
license: MIT
license-file: LICENSE
author: Todd Mohney
maintainer: toddmohney@gmail.com
copyright: 2017 Todd Mohney
category: Web
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/toddmohney/flipper-postgres
library
hs-source-dirs:
src
default-extensions: OverloadedStrings
ghc-options: -Wall -fwarn-unused-matches -fwarn-unused-binds -fwarn-unused-imports
exposed-modules:
Control.Flipper.Adapters.Postgres
Control.Flipper.Adapters.Postgres.DBAccess
Control.Flipper.Adapters.Postgres.Internal.Query
Control.Flipper.Adapters.Postgres.Models
Control.Flipper.Adapters.Postgres.Query
other-modules:
Paths_feature_flipper_postgres
build-depends:
base >=4.8 && <5
, bytestring
, containers
, feature-flipper
, monad-logger
, mtl
, persistent
, persistent-postgresql
, persistent-template
, text
, time
default-language: Haskell2010
test-suite feature-flipper-postgres-test
type: exitcode-stdio-1.0
hs-source-dirs:
test
default-extensions: OverloadedStrings RecordWildCards
main-is: Spec.hs
build-depends:
base
, bytestring
, containers
, hspec
, monad-logger
, mtl
, persistent
, persistent-postgresql
, feature-flipper
, feature-flipper-postgres
other-modules:
Control.Flipper.Postgres.QuerySpec
Control.Flipper.PostgresSpec
Helpers.Config
Helpers.Database
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010