-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeiko-config.cabal
48 lines (45 loc) · 1.7 KB
/
deiko-config.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
name: deiko-config
version: 0.5.0.1
synopsis: Small and typesafe configuration library.
description: Small and typesafe configuration library. The library provides good error messages and comes with a bottom-up typechecker in order to catch more configuration errors.
license: BSD3
license-file: LICENSE
author: Yorick Laupa
maintainer: [email protected]
homepage: https://github.com/YoEight/deiko-config
bug-reports: https://github.com/YoEight/deiko-config/issues
copyright: Copyright (C) 2017 Yorick Laupa
stability: experimental
category: Data
build-type: Simple
cabal-version: >=1.18
extra-source-files:
.gitignore
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/YoEight/deiko-config.git
library
default-language: Haskell2010
exposed-modules: Data.Config
other-modules: Data.Config.Internal.AST
Data.Config.Internal.DkM
Data.Config.Internal.Parser
Data.Config.Internal.Pos
Data.Config.Internal.Reg
Data.Config.Internal.Register
Data.Config.Internal.Rename
Data.Config.Internal.Scoped
Data.Config.Internal.Typed
Data.Config.Internal.Typecheck
build-depends:
base >= 4.7 && < 5,
array >= 0.5 && < 0.6,
mtl >= 2.0 && < 3.0,
parsec >= 3.1.2,
text >= 1.0 && < 1.3,
transformers >= 0.3 && < 0.6,
containers,
exceptions
ghc-options: -Wall