-
Notifications
You must be signed in to change notification settings - Fork 0
/
bobek.cabal
115 lines (111 loc) · 4.12 KB
/
bobek.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
cabal-version: 2.2
-- Initial bobek.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: bobek
version: 0.1.0.0
license: BSD-2-Clause
license-file: LICENSE
author: Peter Hajdu
maintainer: [email protected]
build-type: Simple
extra-source-files: ChangeLog.md
library
build-depends: base >=4.10
, amqp
, bytestring
, process
, mtl
, transformers
, text
, containers
, optparse-applicative
, relude
mixins: base hiding (Prelude)
, relude (Relude as Prelude)
hs-source-dirs: lib
default-language: Haskell2010
default-extensions: DerivingStrategies, OverloadedStrings
ghc-options: -Weverything
-Wno-missing-exported-signatures
-Wno-implicit-prelude
-Wno-missing-import-lists
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-unsafe
-Wno-safe
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
-Wno-partial-fields
-Werror
exposed-modules: Bobek.ScriptFilter
Bobek.Message
Bobek.ReceiveId
Bobek.Filter
Bobek.RabbitMqEnv
Bobek.FileEnv
Bobek.Source
Bobek.Destination
Bobek.Mover
Bobek.OptParse
Bobek.Env
Bobek.Log
test-suite test
main-is: Test.hs
type: exitcode-stdio-1.0
build-depends: base >=4.10
, bobek
, hspec
, mtl
, process
, safe
, containers
, bytestring
, text
, relude
, amqp
, safe-exceptions
mixins: base hiding (Prelude)
, relude (Relude as Prelude)
other-modules: Bobek.Test.FakeEnvironment
Bobek.Test.MoverTest
Bobek.Test.ScriptFilterTest
Bobek.Test.FileEnvTest
Bobek.Test.RabbitMqEnvTest
hs-source-dirs: test
default-language: Haskell2010
default-extensions: DerivingStrategies, OverloadedStrings
ghc-options: -Weverything
-Wno-missing-exported-signatures
-Wno-implicit-prelude
-Wno-missing-import-lists
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-unsafe
-Wno-safe
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
-Werror
executable bobek
main-is: Main.hs
build-depends: base >=4.10
, bobek
, amqp
, text
, optparse-applicative
, relude
mixins: base hiding (Prelude)
, relude (Relude as Prelude)
hs-source-dirs: src
default-language: Haskell2010
default-extensions: OverloadedStrings
ghc-options: -Weverything
-Wno-missing-exported-signatures
-Wno-implicit-prelude
-Wno-missing-import-lists
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-unsafe
-Wno-safe
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
-Werror