-
Notifications
You must be signed in to change notification settings - Fork 5
/
digit.cabal
114 lines (95 loc) · 3.84 KB
/
digit.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: digit
version: 0.15
license: BSD3
license-file: LICENCE
author: System F <nɐ˙ɯoɔ˙ɟɯǝʇsʎs@ǝpoɔ>
maintainer: System F <nɐ˙ɯoɔ˙ɟɯǝʇsʎs@ǝpoɔ>
copyright: Copyright (c) 2010-2016 NICTA Limited
Copyright (c) 2017-2018, Commonwealth Scientific and Industrial Research Organisation (CSIRO) ABN 41 687 119 230.
Copyright (c) System F (System F Aerial Operations) 2019-2020
synopsis: A data-type representing digits 0-9 and other combinations
category: Data
homepage: https://github.com/system-f/digit
bug-reports: https://github.com/system-f/digit/issues
cabal-version: >= 1.10
build-type: Simple
extra-source-files: CONTRIBUTORS, changelog.md
tested-with: GHC == 9.8.1, GHC == 9.6.3, GHC == 9.4.7, GHC == 9.0.2, GHC == 8.6.1, GHC == 8.4.3, GHC == 8.2.2, GHC == 8.0.2, GHC == 7.10.3
description:
<<https://system-f.gitlab.io/logo/systemf-450x450.jpg>>
.
@Digit@ is a data-type that represents the digits 0-9 and other combinations.
source-repository head
type: git
location: [email protected]:system-f/digit.git
library
default-language:
Haskell2010
build-depends:
base >= 4.8 && < 6
, lens >= 4.0 && < 6
, parsers >= 0.12.3 && < 1
, semigroups >= 0.12 && < 1.0
, template-haskell >= 2.8 && < 3
, semigroupoids >= 5 && < 7
, scientific >= 0.3 && < 1
ghc-options:
-Wall
default-extensions:
NoImplicitPrelude
hs-source-dirs:
src
exposed-modules:
Data.Digit
Data.Digit.Binary
Data.Digit.Natural
Data.Digit.Decimal
Data.Digit.Octal
Data.Digit.Hexadecimal.LowerCase
Data.Digit.Hexadecimal.UpperCase
Data.Digit.Hexadecimal.MixedCase
Data.Digit.Class.D0
Data.Digit.Class.D1
Data.Digit.Class.D2
Data.Digit.Class.D3
Data.Digit.Class.D4
Data.Digit.Class.D5
Data.Digit.Class.D6
Data.Digit.Class.D7
Data.Digit.Class.D8
Data.Digit.Class.D9
Data.Digit.Class.LowerCase
Data.Digit.Class.MixedCase
Data.Digit.Class.UpperCase
Data.Digit.Char
Data.Digit.Enum
Data.Digit.Integral
test-suite tests
type:
exitcode-stdio-1.0
main-is:
Main.hs
default-language:
Haskell2010
build-depends:
base >=4.8 && <4.13
, lens >=4.0 && <5.2
, ansi-wl-pprint >=0.6 && <0.7
, hedgehog >=0.5 && <1.1
, tasty >=0.11 && <1.3
, tasty-hspec >=1.1 && <1.2
, parsec >=3.1 && <3.2
, parsers >=0.12.3 && <0.13
, pretty >=1.1 && <1.2
, text >=1.2 && <1.3
, tasty-hedgehog >=0.1 && <1.1
, tasty-hunit >=0.9 && <0.11
, semigroups >= 0.12 && < 1.0
, digit
ghc-options:
-Wall
-threaded
default-extensions:
NoImplicitPrelude
hs-source-dirs:
test