-
Notifications
You must be signed in to change notification settings - Fork 1
/
xml-indexed-cursor.cabal
56 lines (52 loc) · 2.09 KB
/
xml-indexed-cursor.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
name: xml-indexed-cursor
version: 0.1.1.0
synopsis: Indexed XML cursors similar to 'Text.XML.Cursor' from xml-conduit
description: Please see <https://github.com/cdepillabout/xml-indexed-cursor#readme README.md>.
homepage: https://github.com/cdepillabout/xml-indexed-cursor
license: BSD3
license-file: LICENSE
author: Dennis Gosnell
maintainer: cdep.illabout@gmail.com
copyright: 2017 Dennis Gosnell
category: Text
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Text.XML.Cursor.Indexed
build-depends: base >= 4.8 && < 5
, bytestring
, containers
, data-default
, text
, xml-conduit
default-language: Haskell2010
ghc-options: -Wall -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -fwarn-monomorphism-restriction
other-extensions: TemplateHaskell
test-suite xml-indexed-cursor-doctest
type: exitcode-stdio-1.0
main-is: DocTest.hs
hs-source-dirs: test
build-depends: base
, doctest
, Glob
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
test-suite xml-indexed-cursor-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
build-depends: base
, bytestring
, data-default
, tasty
, tasty-hunit
, text
, xml-conduit
, xml-indexed-cursor
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -fwarn-monomorphism-restriction
source-repository head
type: git
location: git@github.com:cdepillabout/xml-indexed-cursor.git