-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathhsini.cabal
More file actions
54 lines (46 loc) · 1.15 KB
/
hsini.cabal
File metadata and controls
54 lines (46 loc) · 1.15 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
cabal-version: 3.0
name: hsini
version: 0.5.2.2
synopsis: ini configuration files
description:
Library for reading and writing configuration files in INI format (see <https://en.wikipedia.org/wiki/INI_file>).
category: Configuration, Data
author: Magnus Therning <magnus@therning.org>
maintainer: Magnus Therning <magnus@therning.org>
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/magthe/hsini.git
library
exposed-modules:
Data.Ini
Data.Ini.Reader
Data.Ini.Reader.Internals
Data.Ini.Types
hs-source-dirs: src
build-depends:
, base <5
, containers
, mtl
, parsec
default-language: Haskell2010
ghc-options: -Wall -Wunused-packages
test-suite hsini-tests
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Ini
ReaderI
hs-source-dirs: tst
build-depends:
, base <5
, hsini
, parsec
, tasty
, tasty-hunit
, tasty-quickcheck
, tasty-th
default-language: Haskell2010
ghc-options: -Wall -Wunused-packages