-
Notifications
You must be signed in to change notification settings - Fork 0
/
sub-magazines.cabal
68 lines (61 loc) · 1.4 KB
/
sub-magazines.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
cabal-version: 2.4
name: sub-magazines
version: 0.1.2.0
author: xieyuschen
maintainer: xieyuschen@gmail.com
extra-source-files: CHANGELOG.md
common common-depends
build-depends:
base
, mtl
, transformers
-- http request is needed
, http-conduit
, http-client
, http-types
, http-client-tls
-- analysis json
, aeson
, text
, time
, smtp-mail >= 0.3.0.0
, mime-mail >= 0.5.0
, bytestring
, utf8-string
, co-log-core
, unliftio
, co-log
library utility
import: common-depends
exposed-modules:
Auth
, Github
, Email
, Data
, Util
hs-source-dirs: src/lib
default-language: Haskell2010
executable sub-magazines
import: common-depends
main-is: Main.hs
build-depends:
utility
hs-source-dirs: src/app
default-language: Haskell2010
test-suite spec
import: common-depends
type: exitcode-stdio-1.0
hs-source-dirs: test
default-language: Haskell2010
main-is: Spec.hs
ghc-options: -Wall
build-depends:
, hspec
, QuickCheck
, quickcheck-instances
, utility
other-modules:
DataSpec,
UtilSpec,
Common
build-tool-depends: hspec-discover:hspec-discover