-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-exporter.cabal
74 lines (68 loc) · 2.77 KB
/
azure-exporter.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: 2.4
name: azure-exporter
version: 0.1.0.0
synopsis: Prometheus metrics exporter for Azure
description: Web service that collects metrics from Azure resources for Prometheus.
homepage: https://github/mujx/azure-exporter
bug-reports: https://github/mujx/azure-exporter/issues
license: Unlicense
license-file: UNLICENSE
author: Konstantinos Sideris <siderisk@auth.gr>
maintainer: Konstantinos Sideris <siderisk@auth.gr>
category: Web
extra-source-files: CHANGELOG.md
Flag dev
Description: Build without optimizations.
Default: False
Manual: True
Flag static
Description: Build statically.
Default: False
Manual: True
executable azure-exporter
main-is: Main.hs
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-fspec-constr-recursive=10
-rtsopts
-threaded
-with-rtsopts=-N
if flag(static)
ghc-options: -threaded -static -O2
cc-options: -static
ld-options: -static -pthread
if flag(dev)
ghc-options: -O0
else
ghc-options: -O2
other-modules: Azure.Exporter
, Azure.Config
, Azure.Client
, Paths_azure_exporter
, Logger
build-depends: base >= 4.11 && < 5
, aeson == 1.4.*
, aeson-casing == 0.2.*
, bytestring == 0.10.*
, containers == 0.6.*
, http-client == 0.6.*
, http-types == 0.12.*
, katip == 0.8.*
, monad-parallel == 0.7.*
, mtl == 2.2.*
, optparse-applicative == 0.14.*
, aeson-pretty == 0.8.*
, req == 2.0.*
, scotty == 0.11.*
, split == 0.2.*
, stm == 2.5.*
, text == 1.2.*
, unordered-containers == 0.2.10.*
, wai == 3.2.*
, wai-extra == 3.0.*
, yaml == 0.11.*
hs-source-dirs: src
default-language: Haskell2010