name: json-stream version: 0.3.0.0 x-revision: 1 synopsis: Incremental applicative JSON parser description: Easy to use JSON parser fully supporting incremental parsing. Parsing grammar in applicative form. The parser is compatibile with aeson and its FromJSON class. It is possible to use aeson monadic parsing when appropriate. The parser supports constant-space safe incremental parsing regardless of the input data. In addition to performance-critical parts written in C, a lot of performance is gained by being less memory intensive especially when used for stream parsing. homepage: https://github.com/ondrap/json-stream license: BSD3 license-file: LICENSE author: Ondrej Palkovsky maintainer: palkovsky.ondrej@gmail.com category: Text, JSON build-type: Simple cabal-version: >=1.10 source-repository head type: git location: https://github.com/ondrap/json-stream.git library -- broken release missing files in sdist build-depends: base<0 exposed-modules: Data.JsonStream.Parser other-modules: Data.JsonStream.TokenParser, Data.JsonStream.CLexType, Data.JsonStream.CLexer c-sources: c_lib/lexer.c include-dirs: c_lib build-depends: base >=4.7 && <4.8 , bytestring , text , aeson , vector , unordered-containers , scientific default-language: Haskell2010 test-suite spec main-is: Spec.hs other-modules: Data.JsonStream.CLexType c-sources: c_lib/lexer.c include-dirs: c_lib type: exitcode-stdio-1.0 hs-source-dirs: test, . default-language: Haskell2010 build-depends: base >=4.7 && <4.8 , bytestring , text , aeson , vector , unordered-containers , hspec , scientific -- executable spdtest -- main-is: spdtest.hs -- other-modules: Data.JsonStream.TokenParser, Data.JsonStream.CLexType, Data.JsonStream.CLexer -- ghc-options: -O2 -Wall -fprof-auto -- c-sources: c_lib/lexer.c -- include-dirs: c_lib -- default-language: Haskell2010 -- build-depends: base >=4.7 && <4.8 -- , bytestring -- , text -- , aeson -- , vector -- , unordered-containers -- , scientific