packages feed

smith-0.2.0.0: smith.cabal

cabal-version: 2.2
name: smith
version: 0.2.0.0
synopsis: Parse arrays of tokens
description:
  This library is similar in spirit to `bytesmith`. While `bytesmith`
  parses byte sequences, `smith` parses token sequences. The most
  common way to use them together is to lex with `bytesmith` and
  then parse the token sequence with `smith`.
homepage: https://github.com/andrewthad/smith
bug-reports: https://github.com/andrewthad/smith/issues
license: BSD-3-Clause
license-file: LICENSE
author: Andrew Martin
maintainer: andrew.thaddeus@gmail.com
copyright: 2019 Andrew Martin
category: Data
extra-source-files: CHANGELOG.md

library
  exposed-modules:
    Data.Parser
    Data.Parser.Unsafe
  build-depends:
    , base >=4.12.0.0 && <5
    , bytesmith >=0.3 && <0.4
    , primitive >=0.6.4 && <0.10
    , contiguous >=0.6 && <0.7
  hs-source-dirs: src
  default-language: Haskell2010
  ghc-options: -Wall -O2