-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
47 lines (47 loc) · 920 Bytes
/
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
name: confide
version: '0.1.0.3'
category: Data
synopsis: derive typeclass instances for decoding types from HOCON conf
author: Alex Milkov
maintainer: [email protected]
copyright: 2018 Alex Milkov
license: BSD3
github: amilkov3/confide
homepage: https://github.com/amilkov3/confide
default-extensions:
- DefaultSignatures
- DeriveGeneric
- FlexibleInstances
- FlexibleContexts
- MultiParamTypeClasses
- OverloadedStrings
- PolyKinds
- ScopedTypeVariables
- TypeOperators
extra-source-files:
- README.md
library:
source-dirs: src
exposed-modules:
- Data.Confide
- Data.Confide.Generic
dependencies:
- base >=4.7 && <5
- deiko-config >= 0.5.0.1
- exceptions
- text
tests:
confide-test:
main: Test.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base
- confide
- deiko-config
- tasty
- tasty-hunit
- text