-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhorizontal-rule.cabal
More file actions
95 lines (88 loc) · 2.32 KB
/
horizontal-rule.cabal
File metadata and controls
95 lines (88 loc) · 2.32 KB
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
91
92
93
94
95
cabal-version: 3.0
name: horizontal-rule
version: 0.7.1.0
synopsis: horizontal rule for the terminal
description:
This package provides a utility for displaying a horizontal rule in a
terminal. Please see the README on GitHub at
<https://github.com/ExtremaIS/hr-haskell#readme>.
homepage: https://github.com/ExtremaIS/hr-haskell#readme
bug-reports: https://github.com/ExtremaIS/hr-haskell/issues
license: MIT
license-file: LICENSE
author: Travis Cardwell <travis.cardwell@extrema.is>
maintainer: Travis Cardwell <travis.cardwell@extrema.is>
copyright: Copyright (c) 2019-2026 Travis Cardwell
category: Utils
build-type: Simple
extra-doc-files:
CHANGELOG.md
README.md
tested-with:
GHC ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.8
|| ==9.4.8
|| ==9.6.7
|| ==9.8.4
|| ==9.10.3
|| ==9.12.2
|| ==9.14.1
source-repository head
type: git
location: https://github.com/ExtremaIS/hr-haskell.git
flag optparse-applicative_ge_0_18
description: Use optparse-applicative 0.18 or newer
default: True
manual: False
library
hs-source-dirs: src
exposed-modules:
HR
, HR.Monad.Terminal
other-modules:
Paths_horizontal_rule
autogen-modules:
Paths_horizontal_rule
build-depends:
base >=4.13 && <4.23
, terminal-size >=0.3.2.1 && <0.4
, text >=1.2.4 && <2.2
default-language: Haskell2010
default-extensions:
OverloadedStrings
ghc-options: -Wall
executable hr
hs-source-dirs: app
main-is: Main.hs
other-modules:
LibOA
build-depends:
base
, horizontal-rule
, text
, time >=1.9.3 && <1.16
if flag(optparse-applicative_ge_0_18)
build-depends:
optparse-applicative >=0.18 && <0.20
, prettyprinter >=1.7.1 && <1.8
else
build-depends:
ansi-wl-pprint >=0.6.9 && <1.1
, optparse-applicative >=0.15.1 && <0.18
default-language: Haskell2010
ghc-options: -Wall
test-suite horizontal-rule-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules:
HR.Test
build-depends:
base
, horizontal-rule
, tasty >=1.2.3 && <1.6
, tasty-hunit >=0.10.0.3 && <0.11
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N