-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstring-class.cabal
More file actions
63 lines (60 loc) · 2 KB
/
string-class.cabal
File metadata and controls
63 lines (60 loc) · 2 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
cabal-version: 1.18
name: string-class
-- Don't forget to bump the tag and CHANGELOG placeholder too.
version: 0.1.7.2
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: Copyright (C) 2010 Byron James Johnson, 2021 Kostiantyn Rybnikov, 2023 Sergey Alirzaev
author: Byron James Johnson
maintainer: Sergey Alirzaev <[email protected]>, [email protected], Kostiantyn Rybnikov <[email protected]>
category: Data, Text
homepage: https://github.com/string-class/string-class
bug-reports: https://github.com/string-class/string-class/issues
tested-with: GHC == 9.8.2
extra-source-files:
-- The extra-doc-files property requires cabal-version >= 1.18.
extra-doc-files:
README.md
,CHANGELOG.md
synopsis: String class library
description:
String class library.
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
default-extensions:
--,GADTs
--,TemplateHaskell
DeriveDataTypeable
other-extensions:
TypeFamilies
,FlexibleContexts
,TypeSynonymInstances
,ExistentialQuantification
,DeriveDataTypeable
,FlexibleInstances
,UndecidableInstances
-- Haven't thoroughly checked version bounds.
-- I added as the minimum version for each non-base package the most recent
-- version as of this repository's initial commit.
build-depends:
base >= 4 && < 5
-- bytestring's toStrict and fromString methods were first introduced in 0.10.0.0.
--,bytestring >= 0.9.1.8 && < 0.11
,bytestring >= 0.10.0.0 && < 0.13
,text >= 0.11.0.1 && < 2.2
,tagged >= 0.1.1 && < 0.9
if !impl(ghc >= 8.0)
build-depends:
semigroups >= 0.11 && < 0.21
exposed-modules:
Data.String.Class
source-repository head
type: git
location: https://github.com/string-class/string-class
source-repository this
type: git
location: https://github.com/string-class/string-class
tag: v0.1.7.2