-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudflare.cabal
71 lines (65 loc) · 2.16 KB
/
cloudflare.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
name: cloudflare
version: 0.0.0.0
category: Cloud, Networking, Web, DNS
license: BSD3
synopsis: Haskell bindings and utilities for CloudFlare
homepage: https://github.com/thoughtpolice/hs-cloudflare/
bug-reports: http://github.com/thoughtpolice/hs-cloudflare/issues
license-file: LICENSE.txt
copyright:
Copyright (c) 2014 Austin Seipp
Copyright (c) 2014 Ricky Elrod
author: Austin Seipp, Ricky Elrod
maintainer: Haskell Infrastructure <[email protected]>
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 7.8.3
description:
extra-source-files:
.travis.yml
AUTHORS.txt
README.md
CONTRIBUTING.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/thoughtpolice/hs-cloudflare.git
-------------------------------------------------------------------------------
-- Build pt 1: main project
library
ghc-options: -Wall -fwarn-tabs
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
CloudFlare
build-depends:
aeson >= 0.8 && < 0.9,
base >= 4 && < 5,
bytestring >= 0.9 && < 0.11,
containers >= 0.5 && < 0.7,
errors >= 1.4 && < 1.5,
lens >= 4.4 && < 4.7,
lens-aeson >= 1.0 && < 1.1,
wreq >= 0.3 && < 0.4,
text >= 1.0 && < 1.3,
vector >= 0.10 && < 0.11
executable cloudflare
ghc-options: -Wall -fwarn-tabs
default-language: Haskell2010
hs-source-dirs: util
main-is: Main.hs
build-depends:
cloudflare,
aeson >= 0.8 && < 0.9,
base >= 4 && < 5,
bytestring >= 0.9 && < 0.11,
containers >= 0.5 && < 0.7,
directory >= 1 && < 2,
errors >= 1.4 && < 1.5,
filepath >= 1 && < 2,
lens >= 4.4 && < 4.7,
lens-aeson >= 1.0 && < 1.1,
wreq >= 0.3 && < 0.4,
text >= 1.0 && < 1.3,
vector >= 0.10 && < 0.11,
xdg-basedir >= 0.2 && < 0.3