-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcli-extras.cabal
65 lines (58 loc) · 2.1 KB
/
cli-extras.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
cabal-version: >=1.10
name: cli-extras
version: 0.2.1.1
license: BSD3
license-file: LICENSE
copyright: Obsidian Systems LLC 2020 - 2024
maintainer: maintainer@obsidian.systems
author: Obsidian Systems LLC
stability: Unstable
bug-reports: https://github.com/obsidiansystems/cli-extras/issues
synopsis:
Miscellaneous utilities for building and working with command line interfaces
description:
Convenience functions for writing command line interfaces, providing facilities for logging, process management, and printing to the terminal.
category: Command Line
build-type: Simple
extra-source-files: CHANGELOG.md
README.md
tested-with:
GHC ==8.6.5 || ==8.8.1 || ==8.10.7 || ==9.0.1 || ==9.2.5 || ==9.4.5 || ==9.6.1 || ==9.8.2 || ==9.10.1
library
exposed-modules:
Bindings.Cli.Coreutils
Cli.Extras
Cli.Extras.SubExcept
Cli.Extras.Logging
Cli.Extras.Process
Cli.Extras.Spinner
Cli.Extras.TerminalString
Cli.Extras.Theme
Cli.Extras.Types
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fobject-code
build-depends:
aeson >=1.4.4.0 && <2.3
, ansi-terminal >=0.9.1 && <1.2
, base >=4.12.0.0 && <4.21
, bytestring >=0.10.8.2 && <0.13
, containers >=0.6.0.1 && <0.8
, exceptions >=0.10.3 && <0.11
, io-streams >=1.5.1.0 && <1.6
, lens >=4.17.1 && <5.4
, logging-effect >=1.3.4 && <1.5
, monad-logger >=0.3.30 && <0.4
, monad-loops >=0.4.3 && <0.5
, mtl >=2.2.2 && <2.4
, process >=1.6.5.0 && <1.7
, terminal-size >=0.3.2.1 && <0.4
, text >=1.2.3.1 && <2.2
, time >=1.8.0.2 && <1.15
, transformers >=0.5.6.2 && <0.7
, which >=0.1 && <0.3
, utf8-string >=1.0.1 && <1.1
, shell-escape >=0.2.0 && <0.3
source-repository head
type: git
location: https://github.com/obsidiansystems/cli-extras