-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapi-builder.cabal
95 lines (91 loc) · 2.27 KB
/
api-builder.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
name: api-builder
version: 0.17.0.0
synopsis: Library for easily building REST API wrappers in Haskell
category: Network
homepage: https://github.com/intolerable/api-builder
author: Fraser Murray
maintainer: [email protected]
copyright: (c) Fraser Murray 2014
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: git://github.com/intolerable/api-builder.git
library
hs-source-dirs: src/
default-extensions:
OverloadedStrings
FlexibleInstances
ghc-options: -Wall
build-depends:
HTTP >=4000,
aeson >=0.9,
base >=4.6,
bifunctors >=4.0,
bytestring >=0.10,
http-client >=0.4.30,
http-client-tls >=0.2,
http-types >=0.8,
text >=1.0,
tls >=1.3,
transformers >=0.4
exposed-modules:
Network.API.Builder
Network.API.Builder.API
Network.API.Builder.Builder
Network.API.Builder.Error
Network.API.Builder.Examples.StackOverflow
Network.API.Builder.Query
Network.API.Builder.Receive
Network.API.Builder.Routes
Network.API.Builder.Send
Network.API.Builder.Send.Multipart
other-modules:
Paths_api_builder
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test/
default-extensions: OverloadedStrings FlexibleInstances ScopedTypeVariables
ghc-options: -Wall
build-depends:
Cabal >=1.16.0,
aeson,
api-builder,
base ==4.*,
bytestring,
hspec,
http-client,
QuickCheck,
text,
transformers
other-modules:
Network.API.Builder.ErrorSpec
Network.API.Builder.QuerySpec
Network.API.Builder.RoutesSpec
Network.API.Builder.SendSpec
Paths_api_builder
default-language: Haskell2010
test-suite test-io
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test-io/
default-extensions: OverloadedStrings FlexibleInstances LambdaCase
ghc-options: -Wall
build-depends:
Cabal >=1.16.0
, aeson
, api-builder
, base ==4.*
, bytestring
, containers
, hspec
, text
, transformers
other-modules:
Network.API.Builder.Examples.StackOverflowSpec
Paths_api_builder
default-language: Haskell2010