-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathisomorphism-class.cabal
121 lines (116 loc) · 4.39 KB
/
isomorphism-class.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
115
116
117
118
119
120
121
cabal-version: 3.0
name: isomorphism-class
version: 0.2.0.1
synopsis: Lawful typeclasses for conversion between types
category: Conversion
homepage: https://github.com/nikita-volkov/isomorphism-class
bug-reports: https://github.com/nikita-volkov/isomorphism-class/issues
author: Nikita Volkov <[email protected]>
maintainer: Nikita Volkov <[email protected]>
copyright: (c) 2022 Nikita Volkov
license: MIT
license-file: LICENSE
extra-source-files:
CHANGELOG.md
source-repository head
type: git
location: git://github.com/nikita-volkov/isomorphism-class.git
common language-settings
default-language: Haskell2010
default-extensions:
BlockArguments
DefaultSignatures
FlexibleContexts
FlexibleInstances
MagicHash
MultiParamTypeClasses
NoImplicitPrelude
ScopedTypeVariables
TypeApplications
UndecidableSuperClasses
library
import: language-settings
hs-source-dirs: library
exposed-modules: IsomorphismClass
other-modules:
IsomorphismClass.Classes
IsomorphismClass.Classes.Is
IsomorphismClass.Classes.IsSome
IsomorphismClass.Laws
IsomorphismClass.Optics
IsomorphismClass.Prelude
IsomorphismClass.Proxies
IsomorphismClass.Proxies.ViaIsSome
IsomorphismClass.Relations
IsomorphismClass.Relations.BoxedVectorAndList
IsomorphismClass.Relations.BoxedVectorAndSeq
IsomorphismClass.Relations.ByteArrayAndByteString
IsomorphismClass.Relations.ByteArrayAndLazyByteString
IsomorphismClass.Relations.ByteArrayAndLazyByteStringBuilder
IsomorphismClass.Relations.ByteArrayAndShortByteString
IsomorphismClass.Relations.ByteArrayAndTextArray
IsomorphismClass.Relations.ByteArrayAndWord8List
IsomorphismClass.Relations.ByteStringAndLazyByteString
IsomorphismClass.Relations.ByteStringAndLazyByteStringBuilder
IsomorphismClass.Relations.ByteStringAndShortByteString
IsomorphismClass.Relations.ByteStringAndText
IsomorphismClass.Relations.ByteStringAndTextArray
IsomorphismClass.Relations.ByteStringAndWord8List
IsomorphismClass.Relations.Int16AndWord16
IsomorphismClass.Relations.Int32AndWord32
IsomorphismClass.Relations.Int64AndWord64
IsomorphismClass.Relations.Int8AndWord8
IsomorphismClass.Relations.IntAndWord
IsomorphismClass.Relations.IntMapAndMapOfInt
IsomorphismClass.Relations.IntSetAndSetOfInts
IsomorphismClass.Relations.LazyByteStringAndLazyByteStringBuilder
IsomorphismClass.Relations.LazyByteStringAndLazyText
IsomorphismClass.Relations.LazyByteStringAndShortByteString
IsomorphismClass.Relations.LazyByteStringAndTextArray
IsomorphismClass.Relations.LazyByteStringAndWord8List
IsomorphismClass.Relations.LazyByteStringBuilderAndShortByteString
IsomorphismClass.Relations.LazyByteStringBuilderAndTextArray
IsomorphismClass.Relations.LazyByteStringBuilderAndWord8List
IsomorphismClass.Relations.LazyTextAndLazyTextBuilder
IsomorphismClass.Relations.LazyTextAndStrictTextBuilder
IsomorphismClass.Relations.LazyTextAndString
IsomorphismClass.Relations.LazyTextAndText
IsomorphismClass.Relations.LazyTextBuilderAndStrictTextBuilder
IsomorphismClass.Relations.LazyTextBuilderAndString
IsomorphismClass.Relations.LazyTextBuilderAndText
IsomorphismClass.Relations.ListAndSeq
IsomorphismClass.Relations.ShortByteStringAndTextArray
IsomorphismClass.Relations.ShortByteStringAndWord8List
IsomorphismClass.Relations.StrictTextBuilderAndString
IsomorphismClass.Relations.StrictTextBuilderAndText
IsomorphismClass.Relations.StringAndText
IsomorphismClass.Relations.TextArrayAndWord8List
IsomorphismClass.TextCompat.Array
build-tool-depends: autoexporter:autoexporter >=1.1.19 && <3
build-depends:
QuickCheck >=2.13 && <3,
base >=4.12 && <5,
bytestring >=0.10 && <0.13,
containers >=0.6 && <0.8,
hashable >=1 && <2,
primitive >=0.7 && <0.10,
profunctors >=5 && <6,
text >=1.2 && <2.2,
unordered-containers >=0.2 && <0.3,
vector >=0.12 && <0.14,
test-suite test
import: language-settings
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Test.ExtraInstances
build-depends:
QuickCheck >=2.13 && <3,
bytestring >=0.11.1.0 && <0.13,
isomorphism-class,
primitive >=0.7 && <0.10,
quickcheck-instances >=0.3.32 && <0.4,
rebase >=1.15 && <2,
tasty >=1.2.3 && <2,
tasty-quickcheck >=0.10.1 && <0.11,
text >=1.2 && <3,