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.5
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-2024
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
|