-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.yaml
More file actions
114 lines (108 loc) · 2.22 KB
/
Copy pathpackage.yaml
File metadata and controls
114 lines (108 loc) · 2.22 KB
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
name: curator
version: 2.1.0.0
ghc-options:
- -optP-Wno-nonportable-include-path # workaround [Filename case on macOS · Issue #4739 · haskell/cabal](https://github.com/haskell/cabal/issues/4739)
- -Werror
- -Weverything
# These seem genuinely useless.
- -Wno-all-missed-specialisations
- -Wno-missed-specialisations
- -Wno-missing-exported-signatures
- -Wno-missing-import-lists
- -Wno-missing-local-signatures
- -Wno-missing-safe-haskell-mode
- -Wno-monomorphism-restriction
- -Wno-safe
- -Wno-unsafe
- -Wno-missing-deriving-strategies
- -Wno-missing-kind-signatures
# Handled by fourmolu:
- -Wno-prepositive-qualified-module
# Some of these we do eventually want to turn on.
- -Wno-error=unticked-promoted-constructors
- -Wno-error=deprecations
- -Wno-error=identities
- -Wno-error=orphans
- -Wno-error=redundant-constraints
- -Wno-error=type-equality-out-of-scope
- -Wno-error=unused-type-patterns
# Some are too noisy even as warnings.
- -Wno-implicit-prelude
- -Wno-unused-do-bind
- -Wno-missing-signatures
dependencies:
- base >=4.10 && < 5
- rio
default-extensions:
- TypeOperators
library:
source-dirs: src
exposed-modules:
- Curator
- Curator.Process
- Curator.Snapshot
dependencies:
- Cabal
- aeson
- bytestring
- conduit
- http-client
- http-client-tls
- http-conduit
- http-types
- pantry
- path
- path-io
- process
- rio-prettyprint
- tar
- unix
- yaml
executables:
curator:
ghc-options: -threaded
source-dirs: app-curator
main: Main.hs
dependencies:
- curator
- http-client
- http-client-tls
- http-download
- optparse-simple
- pantry
- path
- path-io
- yaml
casa-curator:
ghc-options: -threaded
main: Main.hs
source-dirs: app-casa-curator
dependencies:
- aeson
- bytestring
- casa-client
- conduit
- containers
- http-client
- http-conduit
- lens
- monad-logger
- optparse-applicative
- optparse-simple
- pantry
- persistent
- persistent-sqlite
- resourcet
- rio-orphans
- text
- time
tests:
spec:
source-dirs: test
main: Spec.hs
dependencies:
- Cabal
- curator
- containers
- hspec
- text