-
Notifications
You must be signed in to change notification settings - Fork 2
/
commander-cli.cabal
83 lines (78 loc) · 3.08 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
cabal-version: 2.4
name: commander-cli
version: 0.11.0.0
synopsis: A command line argument/option parser library
description: A command line argument/option parser library.
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: [email protected]
copyright: 2019 Samuel Schlesinger
category: System, CLI, Options, Parsing
extra-source-files: CHANGELOG.md, README.md
source-repository head
type: git
location: https://github.com/samuelschlesinger/commander-cli
library
exposed-modules: Options.Commander
other-extensions: ViewPatterns,
DerivingVia,
StandaloneDeriving,
GeneralizedNewtypeDeriving,
DerivingStrategies,
OverloadedStrings,
FlexibleInstances,
TypeFamilies,
TypeSynonymInstances,
ScopedTypeVariables,
RecordWildCards,
TypeApplications,
RankNTypes,
DeriveFunctor,
AllowAmbiguousTypes,
PolyKinds,
GADTs,
TypeOperators,
DataKinds,
DeriveGeneric
build-depends: base >=4.12 && < 5,
bytestring >=0.8 && <1,
mtl >=2.2 && <3,
text >=1.2 && <3,
unordered-containers >=0.2 && < 1,
commandert >=0.1.1,
containers >=0.1 && <1
hs-source-dirs: src
default-language: Haskell2010
executable task-manager
main-is: Main.hs
other-modules: Task, Task.IO, Task.CLI, Task.Codec
other-extensions: TypeFamilies,
ViewPatterns,
ScopedTypeVariables,
NamedFieldPuns,
RecordWildCards,
LambdaCase,
DataKinds,
TypeApplications,
TypeOperators
build-depends: base >=4.12 && < 5,
mtl >=2.2 && <3,
text >=1.2 && < 3,
directory >= 1.3 && < 2,
process >= 1.6 && < 2,
commandert >=0.1.1,
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 && < 3,
unordered-containers >= 0.2 && < 1,
commandert >=0.1.1,
commander-cli
default-language: Haskell2010