name: hslogger-reader version: 1.0.0 synopsis: Parsing hslogger-produced logs. description: hslogger-reader provides a function to generate a parser for -produced logs from a hslogger format string (see "System.Log.Formatter"). The accompanying /profiling/ executable demonstrates parsing and computing with a log file in constant memory. Also bundled is the /filter-logs/ executable, a command-line tool to filter a hslogger-syle log file. license: BSD3 license-file: LICENSE author: Alex Bates maintainer: ard.bates@gmail.com build-type: Simple homepage: http://github.com/prophet-on-that/hslogger-reader bug-reports: http://github.com/prophet-on-that/hslogger-reader/issues cabal-version: >=1.10 category: Interfaces, Parsing library exposed-modules: System.Log.Reader hs-source-dirs: src default-language: Haskell2010 build-depends: base >= 4.7 && < 5 , attoparsec == 0.12.* , text == 1.2.* , hslogger == 1.2.* , time == 1.4.* , old-locale ghc-options: -W executable profiling hs-source-dirs: src-exe/profiling main-is: Main.hs default-language: Haskell2010 build-depends: base , hslogger-reader , text , attoparsec ghc-options: -W executable filter-logs hs-source-dirs: src-exe/filter-logs main-is: Main.hs other-modules: Arguments default-language: Haskell2010 build-depends: base , hslogger-reader , text , attoparsec , hslogger , time , text-icu == 0.7.* , optparse-applicative == 0.11.* , old-locale ghc-options: -W