-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHaXPath.cabal
66 lines (61 loc) · 1.52 KB
/
HaXPath.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
57
58
59
60
61
62
63
64
65
66
cabal-version: 1.18
name: HaXPath
version: 0.3.0.1
synopsis: An XPath-generating embedded domain specific language.
description: An XPath-generating embedded domain specific language, allowing construction and composition of
type-safe XPaths in Haskell.
homepage: https://github.com/hgrano/HaXPath
bug-reports: https://github.com/hgrano/HaXPath/issues
author: Huw Grano
maintainer: huw.grano@gmail.com
category: XML
build-type: Simple
license: BSD3
license-file: LICENSE
extra-doc-files: README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/hgrano/HaXPath
library
exposed-modules:
HaXPath
, HaXPath.Operators
, HaXPath.Schematic
, HaXPath.Schematic.Operators
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >= 4.6 && < 5
, HList >= 0.4.0.0 && < 0.6.0.0
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
HaXPath.Test
, HaXPath.Schematic.Test
hs-source-dirs:
test
ghc-options: -Wall
build-depends:
base
, bytestring >= 0.11.1.0
, HaXPath
, HUnit
, text
default-language: Haskell2010
test-suite examples
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
HaXPath.Examples
, HaXPath.Schematic.Examples
build-depends:
base
, HaXPath
hs-source-dirs:
examples
ghc-options: -Wall
default-language: Haskell2010