-
Notifications
You must be signed in to change notification settings - Fork 0
/
confide.cabal
56 lines (51 loc) · 1.54 KB
/
confide.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
-- This file has been generated from package.yaml by hpack version 0.18.1.
--
-- see: https://github.com/sol/hpack
name: confide
version: 0.1.0.3
synopsis: derive typeclass instances for decoding types from HOCON conf
category: Data
homepage: https://github.com/amilkov3/confide
bug-reports: https://github.com/amilkov3/confide/issues
author: Alex Milkov
maintainer: [email protected]
copyright: 2018 Alex Milkov
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/amilkov3/confide
library
hs-source-dirs:
src
default-extensions: DefaultSignatures DeriveGeneric FlexibleInstances FlexibleContexts MultiParamTypeClasses OverloadedStrings PolyKinds ScopedTypeVariables TypeOperators
build-depends:
base >=4.7 && <5
, deiko-config >= 0.5.0.1
, exceptions
, text
exposed-modules:
Data.Confide
Data.Confide.Generic
other-modules:
Paths_confide
default-language: Haskell2010
test-suite confide-test
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs:
test
default-extensions: DefaultSignatures DeriveGeneric FlexibleInstances FlexibleContexts MultiParamTypeClasses OverloadedStrings PolyKinds ScopedTypeVariables TypeOperators
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base
, confide
, deiko-config
, tasty
, tasty-hunit
, text
default-language: Haskell2010