-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtext-ascii.cabal
50 lines (45 loc) · 1.44 KB
/
text-ascii.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
cabal-version: 3.0
name: text-ascii
version: 1.2.1
synopsis: ASCII string and character processing.
description:
A total-by-default, tested and documented library for
working with ASCII text. Low on dependencies, high on usability.
homepage: https://github.com/haskell-text/text-ascii
license: Apache-2.0
license-file: LICENSE.md
author: Koz Ross
maintainer: koz.ross@retro-freedom.nz
bug-reports: https://github.com/haskell-text/text-ascii/issues
copyright: (C) Koz Ross 2021-3
category: Text
tested-with: GHC ==9.4.8 || ==9.6.4 || ==9.8.1
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
library
exposed-modules:
Text.Ascii
Text.Ascii.Char
Text.Ascii.Internal
Text.Ascii.QQ
Text.Ascii.Unsafe
build-depends:
, base >=4.17 && <5
, bytestring ^>=0.12
, case-insensitive ^>=1.2
, deepseq >=1.4.8 && <1.6.0
, hashable ^>=1.4
, megaparsec ^>=9.6
, monoid-subclasses ^>=1.2
, optics-core ^>=0.4
, optics-extra ^>=0.4
, template-haskell >=2.19 && <3.0
, text ^>=2.1
ghc-options:
-Wall -Wcompat -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wredundant-constraints
-Wmissing-deriving-strategies
hs-source-dirs: src
default-language: Haskell2010