-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathfaucet.cabal
90 lines (83 loc) · 2.18 KB
/
faucet.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
cabal-version: 3.0
name: faucet
version: 2024.9.3
synopsis: Faucet for the local Cardano cluster.
homepage: https://github.com/cardano-foundation/cardano-wallet
license: Apache-2.0
license-file: LICENSE
author: Cardano Foundation (High Assurance Lab)
maintainer: [email protected]
copyright: 2023 Cardano Foundation
category: API
build-type: Simple
common language
default-language: Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
flag release
description: Enable optimization and `-Werror`
default: False
manual: True
library
import: language
ghc-options:
-Wall -Wcompat -Wredundant-constraints -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wmissing-deriving-strategies
-Wunused-foralls -Wunused-foralls -fprint-explicit-foralls
-fprint-explicit-kinds -Wcompat -Widentities
-Werror=incomplete-patterns -Wredundant-constraints
-Wpartial-fields -Wtabs -Wmissing-local-signatures -fhelpful-errors
-fprint-expanded-synonyms -fwarn-unused-do-bind
-fwarn-incomplete-uni-patterns -freverse-errors
if flag(release)
ghc-options: -O2 -Werror
exposed-modules:
Cardano.Faucet
Cardano.Faucet.Addresses
Cardano.Faucet.FaucetM
Cardano.Faucet.Http.Api.OpenApi
Cardano.Faucet.Http.Api.OrphanInstances
Cardano.Faucet.Http.Api.Servant
Cardano.Faucet.Http.Api.Utils
Cardano.Faucet.Http.Client
Cardano.Faucet.Http.Server
Cardano.Faucet.Mnemonics
Cardano.Faucet.Types
Cardano.Faucet.Writer
Cardano.Mnemonic.Extended
hs-source-dirs: lib
build-depends:
, aeson
, aeson-pretty
, base
, bytestring
, cardano-addresses
, containers
, directory
, extra
, filepath
, http-media
, insert-ordered-containers
, lens
, memory
, mtl
, openapi3
, servant
, servant-client
, servant-openapi3
, servant-server
, stm
, text
, wai
, wai-extra
, warp
executable faucet
import: language
main-is: Faucet.hs
hs-source-dirs: exe
ghc-options: -threaded -rtsopts
build-depends:
, base
, faucet
, with-utf8