xml-parser-0.1.1: xml-parser.cabal
cabal-version: 3.0
name: xml-parser
version: 0.1.1
synopsis: XML parser with informative error-reporting and simple API
homepage: https://github.com/nikita-volkov/xml-parser
bug-reports: https://github.com/nikita-volkov/xml-parser/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
copyright: (c) 2021 Nikita Volkov
license: MIT
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: git://github.com/nikita-volkov/xml-parser.git
library
hs-source-dirs: library
default-extensions: BangPatterns, BinaryLiterals, BlockArguments, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, DerivingVia, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, InstanceSigs, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, StrictData, TemplateHaskell, TupleSections, TypeApplications, TypeFamilies, TypeOperators, UnboxedSums, UnboxedTuples, ViewPatterns
default-language: Haskell2010
exposed-modules:
XmlParser
other-modules:
XmlParser.AstParser
XmlParser.Attoparsec
XmlParser.ElementDestructionState
XmlParser.NameMap
XmlParser.NamespaceRegistry
XmlParser.NodeConsumerState
XmlParser.TupleHashMap
XmlParser.Prelude
XmlParser.XmlConduitWrapper
build-depends:
attoparsec >=0.13 && <0.15,
base >=4.11 && <5,
bytestring >=0.10 && <0.12,
containers ^>=0.6,
hashable >=1.2 && <2,
text >=1.2.4 && <2,
text-builder >=0.6.6.2 && <0.7,
transformers ^>=0.5,
unordered-containers ^>=0.2.14,
xml-conduit ^>=1.9.1.1,
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
default-extensions: BangPatterns, BinaryLiterals, BlockArguments, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, DerivingVia, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, InstanceSigs, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, StrictData, TemplateHaskell, TupleSections, TypeApplications, TypeFamilies, TypeOperators, UnboxedSums, UnboxedTuples, ViewPatterns
default-language: Haskell2010
main-is: Main.hs
other-modules:
build-depends:
attoparsec >=0.13 && <0.15,
QuickCheck >=2.8.1 && <3,
quickcheck-instances >=0.3.11 && <0.4,
rerebase >=1.6.1 && <2,
tasty >=0.12 && <2,
tasty-hunit >=0.9 && <0.11,
tasty-quickcheck >=0.9 && <0.11,
xml-conduit,
xml-parser,