tibetan-utils-0.1.2.1: tibetan-utils.cabal
cabal-version: >=1.10
name: tibetan-utils
version: 0.1.2.1
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2016-2019 Vanessa McHale
maintainer: vamchale@gmail.com
author: Vanessa McHale
synopsis: Parse and display tibetan numerals
description:
This package provides a [megaparsec](http://hackage.haskell.org/package/megaparsec) parser for Tibetan numerals, as well as efficient means to display numbers using Tibetan numerals.
category: Web
build-type: Simple
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/vmchale/tibetan-utils
library
exposed-modules:
Text.Megaparsec.Lexer.Tibetan
Text.Megaparsec.Char.Tibetan
TextShow.Data.Integral.Tibetan
hs-source-dirs: src
default-language: Haskell2010
other-extensions:
OverloadedStrings FlexibleContexts TypeFamilies TypeOperators
build-depends:
base >=4.8 && <5,
megaparsec >=7.0,
text,
composition-prelude
test-suite tibetan-utils-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -threaded -rtsopts "-with-rtsopts=-N -K1K"
build-depends:
base,
tibetan-utils,
hspec,
hspec-megaparsec,
text,
megaparsec