-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
61 lines (55 loc) · 1.43 KB
/
package.yaml
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
name: launchdarkly-server-sdk-redis-hedis
version: 1.0.0 # x-release-please-version
github: "launchdarkly/haskell-server-sdk-redis-hedis"
license: Apache-2.0
license-file: "LICENSE"
author: "LaunchDarkly"
maintainer: "dev@launchdarkly.com"
copyright: "2023 Catamorphic, Co"
extra-source-files:
- README.md
- CHANGELOG.md
- LICENSE
synopsis: LaunchDarkly Server-Side SDK - Redis Integration
category: Web
description: Redis integration for the LaunchDarkly SDK using hedis
library:
source-dirs: src
exposed-modules:
- LaunchDarkly.Server.Store.Redis
ghc-options:
- -fwarn-unused-imports
- -Wall
- -Wno-name-shadowing
dependencies:
- aeson >=1.4.7.1 && <1.6 || >= 2.0.1.0 && <2.2
- base >=4.13.0.0 && <5
- bytestring >=0.10.10.1 && <0.12
- exceptions >=0.10.4 && <0.11
- hedis >=0.12.15 && <0.16
- generic-lens >=2.0.0.0 && <2.3
- text >=1.2.4.0 && <2.1
- launchdarkly-server-sdk >=4.0 && <5
tests:
haskell-server-sdk-redis-hedis-test:
main: Spec.hs
source-dirs:
- test
- src
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
- -Wno-name-shadowing
- -fwarn-unused-imports
- -Wall
dependencies:
- HUnit
- launchdarkly-server-sdk
default-extensions:
- DataKinds
- DeriveAnyClass
- LambdaCase
- OverloadedStrings
- ScopedTypeVariables
- TypeApplications