forked from ndmitchell/hexml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hexml.cabal
55 lines (48 loc) · 1.47 KB
/
hexml.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
cabal-version: >= 1.18
build-type: Simple
name: hexml
version: 0.3.4
license: BSD3
x-license: BSD-3-Clause OR Apache-2.0
license-file: LICENSE
category: XML
author: Neil Mitchell <ndmitchell@gmail.com>
maintainer: Neil Mitchell <ndmitchell@gmail.com>
copyright: Neil Mitchell 2016-2023
synopsis: XML subset DOM parser
description:
An XML DOM-style parser, that only parses a subset of XML, but is designed to be fast.
homepage: https://github.com/ndmitchell/hexml#readme
bug-reports: https://github.com/ndmitchell/hexml/issues
tested-with: GHC==9.6, GHC==9.4, GHC==9.2, GHC==9.0, GHC==8.10, GHC==8.8
extra-doc-files:
README.md
CHANGES.txt
extra-source-files:
cbits/*.h
cbits/*.c
source-repository head
type: git
location: https://github.com/ndmitchell/hexml.git
library
hs-source-dirs: src
default-language: Haskell2010
build-depends:
base >= 4.5 && < 5,
bytestring,
extra >= 0.3
c-sources: cbits/hexml.c
include-dirs: cbits
includes: hexml.h
install-includes: hexml.h
cc-options: -std=c99
exposed-modules:
Text.XML.Hexml
test-suite hexml-test
type: exitcode-stdio-1.0
main-is: src/Main.hs
default-language: Haskell2010
build-depends:
base,
bytestring,
hexml