commander-cli-0.2.0.1: commander-cli.cabal
cabal-version: 2.4
name: commander-cli
version: 0.2.0.1
synopsis: A command line argument/option parser library built around a monadic metaphor
description: A command line argument/option parser library built around a monadic metaphor.
homepage: https://github.com/SamuelSchlesinger/commander-cli
bug-reports: https://github.com/SamuelSchlesinger/commander-cli/issues
license: MIT
license-file: LICENSE
author: Samuel Schlesinger
maintainer: sgschlesinger@gmail.com
copyright: 2019 Samuel Schlesinger
category: System, CLI, Options, Parsing
extra-source-files: CHANGELOG.md, README.md
library
exposed-modules: Options.Commander
other-extensions: ViewPatterns,
StandaloneDeriving,
GeneralizedNewtypeDeriving,
DerivingStrategies,
OverloadedStrings,
FlexibleInstances,
TypeFamilies,
TypeSynonymInstances,
ScopedTypeVariables,
RecordWildCards,
TypeApplications,
RankNTypes,
DeriveFunctor,
AllowAmbiguousTypes,
PolyKinds,
GADTs,
TypeOperators,
DataKinds
build-depends: base >=4.12 && < 5,
mtl >=2.2 && <2.3,
text >=1.2 && < 1.3,
unordered-containers >=0.2 && < 0.3
hs-source-dirs: src
default-language: Haskell2010
executable task-manager
main-is: Main.hs
other-extensions: TypeFamilies,
ViewPatterns,
ScopedTypeVariables,
NamedFieldPuns,
RecordWildCards,
LambdaCase,
DataKinds,
TypeApplications,
TypeOperators
build-depends: base >=4.12 && < 5,
mtl >=2.2,
text >=1.2.4 && < 1.3,
directory >= 1.3 && < 1.4,
process >= 1.6 && < 1.7,
commander-cli
hs-source-dirs: app
default-language: Haskell2010
test-suite test-commander
type: exitcode-stdio-1.0
main-is: Test.hs
build-depends: base >= 4.12 && < 5,
text >=1.2.4 && < 1.3,
unordered-containers >= 0.2 && < 0.3,
commander-cli
default-language: Haskell2010