-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgeneric-diff-instances.cabal
More file actions
101 lines (94 loc) · 2.35 KB
/
Copy pathgeneric-diff-instances.cabal
File metadata and controls
101 lines (94 loc) · 2.35 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
96
97
98
99
100
101
cabal-version: 3.0
name: generic-diff-instances
version: 0.1.0.0
synopsis: Diff instances for common types
description:
The [generic-diff](https://hackage.haskell.org/package/generic-diff) package
aims to be lightweight and not force any instances which might have more than
one interpretation.
This package provides a more comprehensive set of instances for types from a
range of common packages.
license: BSD-3-Clause
author: Frederick Pringle
maintainer: freddyjepringle@gmail.com
copyright: Copyright(c) Frederick Pringle 2025
homepage: https://github.com/fpringle/generic-diff
category: Generics, Test
build-type: Simple
extra-doc-files: CHANGELOG.md
README.md
tested-with:
GHC == 9.12.2
GHC == 9.10.1
GHC == 9.8.2
GHC == 9.6.5
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.6.5
common warnings
ghc-options: -Wall
common deps
build-depends:
, base >= 4.12 && < 5
, generic-diff >= 0.1 && < 0.2
, sop-core >= 0.4.0.1 && < 0.6
, generics-sop >= 0.4 && < 0.6
, text >= 1.1 && < 2.2
, containers >= 0.5.9.2 && < 0.9
common extensions
default-extensions:
AllowAmbiguousTypes
ConstraintKinds
DataKinds
DefaultSignatures
DeriveGeneric
FlexibleContexts
FlexibleInstances
GADTs
LambdaCase
OverloadedStrings
PolyKinds
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TypeApplications
TypeFamilies
TypeOperators
UndecidableInstances
ViewPatterns
library
import:
warnings
, deps
, extensions
exposed-modules:
Generics.Diff.Special.Seq
Generics.Diff.Special.Map
Generics.Diff.Special.Set
Generics.Diff.Special.Tree
hs-source-dirs: src
default-language: Haskell2010
test-suite generic-diff-instances-test
import:
warnings
, deps
, extensions
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules:
Generics.Diff.UnitTestsSpec
Generics.Diff.PropertyTestsSpec
Util
build-tool-depends:
hspec-discover:hspec-discover
ghc-options: -Wno-orphans
build-depends:
, generic-diff
, generic-diff-instances
, QuickCheck
, hspec