forked from SamuelSchlesinger/commander-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commander-cli.cabal
90 lines (86 loc) · 2.51 KB
/
commander-cli.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack
name: commander-cli
version: 1.0.0.1
synopsis: A command line argument, option, config file parser library
description: Describe the CLI interface with the ProgramT transformer. ProgramT is a framwork for argv parsing and automatic program parameter documentation.
category: CLI, Options, Parsing
homepage: https://github.com/BebeSparkelSparkel/commander-cli
bug-reports: https://github.com/BebeSparkelSparkel/commander-cli/issues
author: William Rusnack,
Samuel Schlesinger
maintainer: [email protected]
license: MIT
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/BebeSparkelSparkel/commander-cli
library
exposed-modules:
Options.Commander
Options.Commander.Annotated
Options.Commander.Argument
Options.Commander.ArgumentNamed
Options.Commander.Arguments
Options.Commander.Arguments.Collections
Options.Commander.Combine
Options.Commander.Conf
Options.Commander.Description
Options.Commander.Environment
Options.Commander.Flag
Options.Commander.Imports
Options.Commander.Internal
Options.Commander.Middleware
Options.Commander.Named
Options.Commander.Option
Options.Commander.Program
Options.Commander.Raw
Options.Commander.Sequence
Options.Commander.Subcommand
Options.Commander.Unrender
other-modules:
Paths_commander_cli
hs-source-dirs:
src
default-extensions:
AllowAmbiguousTypes
ViewPatterns
BlockArguments
ConstraintKinds
DataKinds
DeriveGeneric
DerivingVia
FlexibleInstances
FlexibleContexts
GADTs
GeneralizedNewtypeDeriving
ImportQualifiedPost
LambdaCase
OverloadedStrings
PolyKinds
QuantifiedConstraints
QuasiQuotes
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TupleSections
TypeApplications
TypeFamilies
TypeOperators
UndecidableInstances
ghc-options: -Wall
build-depends:
base >=4.12 && <5
, bytestring >=0.8 && <1
, commandert >=0.1.1.2
, containers >=0.1
, mtl
, template-haskell >=2.14.0.0 && <3.0.0.0
, text >=1.2 && <3
, transformers >=0.5 && <0.7
default-language: Haskell2010