|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
name: attoparsec
|
|
|
|
|
version: 0.13.2.4
|
|
|
|
|
version: 0.13.2.5
|
|
|
|
|
x-revision: 1
|
|
|
|
|
license: BSD3
|
|
|
|
|
license-file: LICENSE
|
|
|
|
@ -7,11 +7,11 @@ category: Text, Parsing
|
|
|
|
|
author: Bryan O'Sullivan <bos@serpentine.com>
|
|
|
|
|
maintainer: Bryan O'Sullivan <bos@serpentine.com>, Ben Gamari <ben@smart-cactus.org>
|
|
|
|
|
stability: experimental
|
|
|
|
|
tested-with: GHC == 7.0.4, GHC == 7.2.2, GHC == 7.4.2, GHC ==7.6.3, GHC ==7.8.4, GHC ==7.10.3, GHC ==8.0.2, GHC ==8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.1, GHC==8.10.1
|
|
|
|
|
tested-with: GHC == 7.4.2, GHC ==7.6.3, GHC ==7.8.4, GHC ==7.10.3, GHC ==8.0.2, GHC ==8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.1, GHC==8.10.1
|
|
|
|
|
synopsis: Fast combinator parsing for bytestrings and text
|
|
|
|
|
cabal-version: >= 1.8
|
|
|
|
|
homepage: https://github.com/bos/attoparsec
|
|
|
|
|
bug-reports: https://github.com/bos/attoparsec/issues
|
|
|
|
|
cabal-version: 2.0
|
|
|
|
|
homepage: https://github.com/bgamari/attoparsec
|
|
|
|
|
bug-reports: https://github.com/bgamari/attoparsec/issues
|
|
|
|
|
build-type: Simple
|
|
|
|
|
description:
|
|
|
|
|
A fast parser combinator library, aimed particularly at dealing
|
|
|
|
@ -39,16 +39,15 @@ Flag developer
|
|
|
|
|
Manual: True
|
|
|
|
|
|
|
|
|
|
library
|
|
|
|
|
build-depends: bytestring <0.11
|
|
|
|
|
|
|
|
|
|
build-depends: array,
|
|
|
|
|
base >= 4.3 && < 5,
|
|
|
|
|
bytestring <0.11,
|
|
|
|
|
bytestring <0.12,
|
|
|
|
|
containers,
|
|
|
|
|
deepseq,
|
|
|
|
|
scientific >= 0.3.1 && < 0.4,
|
|
|
|
|
transformers >= 0.2 && (< 0.4 || >= 0.4.1.0) && < 0.6,
|
|
|
|
|
text >= 1.1.1.3
|
|
|
|
|
text >= 1.1.1.3,
|
|
|
|
|
ghc-prim <0.8
|
|
|
|
|
if impl(ghc < 7.4)
|
|
|
|
|
build-depends:
|
|
|
|
|
bytestring < 0.10.4.0
|
|
|
|
@ -75,12 +74,15 @@ library
|
|
|
|
|
other-modules: Data.Attoparsec.ByteString.Buffer
|
|
|
|
|
Data.Attoparsec.ByteString.FastSet
|
|
|
|
|
Data.Attoparsec.ByteString.Internal
|
|
|
|
|
Data.Attoparsec.Internal.Compat
|
|
|
|
|
Data.Attoparsec.Internal.Fhthagn
|
|
|
|
|
Data.Attoparsec.Text.Buffer
|
|
|
|
|
Data.Attoparsec.Text.FastSet
|
|
|
|
|
Data.Attoparsec.Text.Internal
|
|
|
|
|
ghc-options: -O2 -Wall
|
|
|
|
|
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
|
|
if flag(developer)
|
|
|
|
|
ghc-prof-options: -auto-all
|
|
|
|
|
ghc-options: -Werror
|
|
|
|
@ -109,6 +111,7 @@ test-suite tests
|
|
|
|
|
Data.Attoparsec.ByteString.Lazy
|
|
|
|
|
Data.Attoparsec.Combinator
|
|
|
|
|
Data.Attoparsec.Internal
|
|
|
|
|
Data.Attoparsec.Internal.Compat
|
|
|
|
|
Data.Attoparsec.Internal.Fhthagn
|
|
|
|
|
Data.Attoparsec.Internal.Types
|
|
|
|
|
Data.Attoparsec.Number
|
|
|
|
@ -128,9 +131,9 @@ test-suite tests
|
|
|
|
|
build-depends:
|
|
|
|
|
array,
|
|
|
|
|
base,
|
|
|
|
|
bytestring <0.11,
|
|
|
|
|
bytestring,
|
|
|
|
|
deepseq >= 1.1,
|
|
|
|
|
QuickCheck >= 2.13.2 && < 2.14,
|
|
|
|
|
QuickCheck >= 2.13.2 && < 2.15,
|
|
|
|
|
quickcheck-unicode,
|
|
|
|
|
scientific,
|
|
|
|
|
tasty >= 0.11,
|
|
|
|
@ -139,6 +142,8 @@ test-suite tests
|
|
|
|
|
transformers,
|
|
|
|
|
vector
|
|
|
|
|
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
|
|
if !impl(ghc >= 8.0)
|
|
|
|
|
-- Data.Semigroup && Control.Monad.Fail are available in base-4.9+
|
|
|
|
|
build-depends: fail == 4.9.*,
|
|
|
|
@ -185,6 +190,8 @@ benchmark benchmarks
|
|
|
|
|
unordered-containers,
|
|
|
|
|
vector
|
|
|
|
|
|
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
|
|
if !impl(ghc >= 8.0)
|
|
|
|
|
-- Data.Semigroup && Control.Monad.Fail are available in base-4.9+
|
|
|
|
|
build-depends: fail == 4.9.*,
|
|
|
|
@ -192,5 +199,5 @@ benchmark benchmarks
|
|
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
|
type: git
|
|
|
|
|
location: https://github.com/bos/attoparsec
|
|
|
|
|
location: https://github.com/bgamari/attoparsec
|
|
|
|
|
|