-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChinesePodAPI.cabal
113 lines (111 loc) · 4.32 KB
/
ChinesePodAPI.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
103
104
105
106
107
108
109
110
111
112
113
name: ChinesePodAPI
version: 0.2.0.0
synopsis: Bindings to the ChinesePod API
-- description:
license: BSD3
license-file: LICENSE
author: Edsko de Vries
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
extra-source-files: HSK/2012/HSK1.txt
HSK/2012/HSK2.txt
HSK/2012/HSK3.txt
HSK/2012/HSK4.txt
HSK/2012/HSK5.txt
HSK/2012/HSK6.txt
cabal-version: >=1.10
library
exposed-modules: Servant.ChinesePod.API
Servant.ChinesePod.Analysis
Servant.ChinesePod.Analysis.State.V1
Servant.ChinesePod.Analysis.State.V2
Servant.ChinesePod.Client
Servant.ChinesePod.HSK
Servant.ChinesePod.HSK.Aux
Servant.ChinesePod.HSK.HSK2012
Servant.ChinesePod.Vocab.V1
Servant.ChinesePod.Vocab.V2
Servant.ChinesePod.Vocab.Word
Servant.ChinesePod.Util.Migrate
Servant.ChinesePod.Util.Orphans.PrettyVal
Servant.ChinesePod.Util.String
build-depends: base >=4.9 && <4.11
-- Aeson changed behaviour a few times recently
, aeson >= 0.2
, aeson-pretty
, binary
, binary-orphans
, bytestring
, containers
, contravariant
, cryptohash
, directory
, either
, filepath
-- servant moved some defs to http-api-data 0.3
, http-api-data >= 0.3
, network-uri
-- 1.6.9 introduces some new PrettyVal instances
, pretty-show >= 1.6.9
, process
, servant >= 0.9
, servant-client
, template-haskell
, text
, time
, transformers
, unordered-containers
, utf8-string
, vector
hs-source-dirs: src
default-language: Haskell2010
default-extensions: DataKinds
DeriveDataTypeable
DeriveGeneric
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
NoMonomorphismRestriction
RankNTypes
RecordWildCards
ScopedTypeVariables
TupleSections
TypeFamilies
TypeOperators
other-extensions: OverloadedStrings
TemplateHaskell
ghc-options: -Wall
executable cpod-query
main-is: Main.hs
other-modules: Options
build-depends: base
, ChinesePodAPI
, binary
, bytestring
, containers
, directory
, exceptions
, http-api-data
, http-client
, http-client-tls
, network-uri
, optparse-applicative
, pretty-show
, servant
-- 0.12 introduces ClientM as an explicit type arg as
-- well as some other backwards incompatible changes
, servant-client
, text
hs-source-dirs: src-main
default-language: Haskell2010
default-extensions: RecordWildCards
ScopedTypeVariables
MultiParamTypeClasses
other-extensions: OverloadedStrings
ghc-options: -Wall