-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloudflare-ddns.cabal
74 lines (65 loc) · 2.28 KB
/
cloudflare-ddns.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
cabal-version: 3.4
name: cloudflare-ddns
version: 0.2.0.0
-- A short (one-line) description of the package.
synopsis: Yet another `ddclient` clone to work with Cloudflare Dynamic DNS.
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
license: Apache-2.0
author: Tung Dao
maintainer: me@tungdao.com
-- A copyright notice.
copyright: Tung Dao <me@tungdao.com>
-- category:
extra-source-files: CHANGELOG.md
library
hs-source-dirs: src
exposed-modules: Lib
default-extensions: NoImplicitPrelude
, OverloadedStrings
, TypeApplications
, TypeFamilies
, TypeOperators
, MultiParamTypeClasses
, FlexibleContexts
, FlexibleInstances
, GeneralizedNewtypeDeriving
, DeriveGeneric
, DeriveAnyClass
, DataKinds
, ScopedTypeVariables
, LambdaCase
ghc-options: -Wall
build-depends: base ^>=4.14.1.0
, rio
, aeson
, yaml
, servant
, servant-client
, servant-client-core
, network-info
, http-client
, http-client-tls
, dns
, record-dot-preprocessor
, record-hasfield
executable cloudflare-ddns
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
default-extensions: NoImplicitPrelude
, OverloadedStrings
, TypeApplications
ghc-options: -Wall -O2 -threaded -with-rtsopts=-N
build-depends: base ^>=4.14.1.0
, rio
, yaml
, servant-client
, http-client-tls
, cloudflare-ddns
hs-source-dirs: app
default-language: Haskell2010