name: xeno version: 0.3.5.1 x-revision: 1 synopsis: A fast event-based XML parser in pure Haskell description: A fast, low-memory use, event-based XML parser in pure Haskell. build-type: Simple category: XML, Parser cabal-version: >=1.10 homepage: https://github.com/ocramz/xeno license: BSD3 license-file: LICENSE author: Christopher Done maintainer: Marco Zocca (ocramz fripost org) tested-with: GHC == 8.0.1, GHC == 8.2.2, GHC == 8.4.2, GHC == 8.4.4 extra-source-files: README.md CHANGELOG.markdown CONTRIBUTORS.md source-repository head type: git location: https://github.com/ocramz/xeno flag libxml2 description: Include libxml2 in the benchmarks default: False library other-extensions: DeriveAnyClass, Strict hs-source-dirs: src ghc-options: -Wall -O2 exposed-modules: Xeno.SAX, Xeno.DOM, Xeno.Types, Xeno.Errors other-modules: Control.Spork build-depends: base >= 4.7 && < 5 , bytestring , vector , deepseq , array , mutable-containers , mtl -- , exceptions -- | DEBUG , hspec default-language: Haskell2010 test-suite xeno-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Main.hs build-depends: base, xeno, hexml, hspec, bytestring -- | DEBUG , hspec ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 benchmark xeno-speed-bench type: exitcode-stdio-1.0 hs-source-dirs: bench main-is: Speed.hs build-depends: base, xeno, hexml, criterion, bytestring, deepseq, ghc-prim, xml, hexpat if flag(libxml2) build-depends: libxml ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -O2 if flag(libxml2) cpp-options: -DLIBXML2 -- ghc-options: -DLIBXML2 -- Hackage started complaining about this default-language: Haskell2010 benchmark xeno-memory-bench type: exitcode-stdio-1.0 hs-source-dirs: bench main-is: Memory.hs build-depends: base, xeno, weigh, bytestring, deepseq, hexml ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -O2 default-language: Haskell2010