packages feed

repl-toolkit-1.0.0.0: repl-toolkit.cabal

-- Initial repl-toolkit.cabal generated by cabal init.  For further
-- documentation, see http://haskell.org/cabal/users-guide/

name:                repl-toolkit
version:             1.0.0.0
synopsis:            Toolkit for quickly whipping up config files and command-line interfaces.
description:         A simple toolkit for quickly whipping up REPLs, input validation and sets of commands included.
homepage:            https://github.com/ombocomp/repl-toolkit
license:             Apache-2.0
license-file:        LICENSE.md
author:              Janos Tapolczai
maintainer:          janos.tapolczai@gmail.com
category:            System, REPL
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  changelog.txt

source-repository head
  type: git
  location: git://github.com/ombocomp/repl-toolkit.git

library
  exposed-modules:     System.REPL,
                       System.REPL.Ask,
                       System.REPL.Command,
                       System.REPL.Config,
                       System.REPL.Prompt,
                       System.REPL.State,
                       System.REPL.Types
  other-extensions:    OverloadedStrings,
                       DeriveDataTypeable,
                       FlexibleContexts,
                       LambdaCase,
                       ScopedTypeVariables,
                       ExistentialQuantification,
                       TupleSections
  build-depends:       base >=4.8 && <5, functor-monadic >=0.1, text >=1.1, ListLike >=4.1, exceptions >=0.8 && <1, parsec >=3.1 && <4, listsafe >= 0.1, monad-loops >= 0.3 && <0.6, mtl >= 2.2 && <3, transformers >= 0.3 && <0.7, directory >= 1.2.1 && <2, filepath >= 1.3 && <2, bytestring >= 0.10 && <0.20, data-default >= 0.5.3, aeson >=0.8.0.2 && <1, semigroupoids >= 4 && <6
  default-language:    Haskell2010