Kawaii-Parser-2.0.0: Kawaii-Parser.cabal
author: Liisi Kerik
build-type: Simple
cabal-version: >= 1.10
category: Monad transformers, Parsing, Tokenisation
description:
This library provides a simple tokeniser and parser. Its main focus is not efficiency but simplicity of implementation and
use. The choice operator for parsers is symmetric, avoiding the need to think about the order in which the alternatives are
listed. The library supports adding locations to the parse tree and aims to provide reasonably detailed information about
parse errors with minimal user involvement. It also contains a module with type synonyms for some compositions of monad
transformers.
homepage: https://github.com/liisikerik/kawaii_parser
license: BSD3
license-file: LICENSE
maintainer: liisikerik@hotmail.com
name: Kawaii-Parser
synopsis: A simple parsing library.
version: 2.0.0
library
build-depends: base < 4.15, containers, mtl
default-language: Haskell2010
exposed-modules: Parser.Errors, Parser.Line_and_char, Parser.Parser, Parser.Tokeniser, Parser.Transf
other-extensions: StandaloneDeriving
source-repository head
location: https://github.com/liisikerik/kawaii_parser.git
type: git