This repository was archived by the owner on Feb 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
105 lines (98 loc) · 1.88 KB
/
Copy pathpackage.yaml
File metadata and controls
105 lines (98 loc) · 1.88 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
name: agent
version: 0.0.0.1
license: MIT
dependencies:
- base
ghc-options:
- -fignore-optim-changes
- -fwrite-ide-info
- -Weverything
- -Wno-all-missed-specialisations
- -Wno-missing-exported-signatures # re-enables missing-signatures
- -Wno-missing-kind-signatures
- -Wno-missing-import-lists
- -Wno-missing-safe-haskell-mode
- -Wno-prepositive-qualified-module
- -Wno-unsafe
default-extensions:
- BangPatterns
- DataKinds
- DeriveAnyClass
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveLift
- DeriveTraversable
- DerivingStrategies
- DuplicateRecordFields
- FlexibleContexts
- FlexibleInstances
- GADTs
- GeneralizedNewtypeDeriving
- LambdaCase
- MultiParamTypeClasses
- NoFieldSelectors
- NoImplicitPrelude
- NoMonomorphismRestriction
- OverloadedRecordDot
- OverloadedStrings
- RankNTypes
- ScopedTypeVariables
- StandaloneDeriving
- TypeApplications
- TypeFamilies
library:
source-dirs: src
dependencies:
- Blammo
- aeson
- amazonka >= 2.0
- amazonka-autoscaling >= 2.0
- amazonka-sqs >= 2.0
- amazonka-mtl
- bytestring
- composition-extra
- conduit
- conduit-extra
- envparse
- exceptions
- github
- hedis
- http-conduit
- http-types
- immortal
- microlens-platform
- monad-logger
- optparse-applicative
- relude
- resourcet
- text
- time
- typed-process
- unliftio
- unliftio-core
# For GitHub extension modules
- jwt
- tagged
# Database.Redis.TLS
- errors
- data-default-class
- tls
executables:
agent:
main: Main.hs
source-dirs: app
dependencies:
- agent
# tests:
# doctest:
# main: Main.hs
# source-dirs: doctest
# dependencies:
# - doctest
# spec:
# main: Spec.hs
# source-dirs: test
# dependencies:
# - hspec
# - agent