-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonoidmap-quickcheck.cabal
More file actions
66 lines (61 loc) · 1.99 KB
/
monoidmap-quickcheck.cabal
File metadata and controls
66 lines (61 loc) · 1.99 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
cabal-version: 3.0
name: monoidmap-quickcheck
version: 0.0.0.4
bug-reports: https://github.com/jonathanknowles/monoidmap-quickcheck/issues
license: Apache-2.0
license-file: LICENSE
author: Jonathan Knowles
maintainer: mail@jonathanknowles.net
copyright: 2025–2026 Jonathan Knowles
category: Data Structures
synopsis: QuickCheck support for monoidmap.
description: QuickCheck support for the monoidmap package.
extra-doc-files:
CHANGELOG.md
README.md
common dependency-base
build-depends:base >= 4.14.3.0 && < 4.23
common dependency-containers
build-depends:containers >= 0.6.5.1 && < 0.9
common dependency-monoid-subclasses
build-depends:monoid-subclasses >= 1.2.3 && < 1.3
common dependency-monoidmap
build-depends:monoidmap >= 0.0.4.4 && < 0.1
common dependency-QuickCheck
build-depends:QuickCheck >= 2.14.2 && < 2.19
common extensions
default-extensions:
BangPatterns
DerivingStrategies
DerivingVia
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
LambdaCase
NoImplicitPrelude
NumericUnderscores
ScopedTypeVariables
TupleSections
TypeApplications
TypeFamilies
TypeOperators
source-repository head
type: git
location: https://github.com/jonathanknowles/monoidmap-quickcheck
library
import:
, dependency-base
, dependency-containers
, dependency-monoid-subclasses
, dependency-monoidmap
, dependency-QuickCheck
, extensions
hs-source-dirs:
components/monoidmap-quickcheck
exposed-modules:
Data.MonoidMap.QuickCheck.Instances
Data.MonoidMap.QuickCheck.Instances.Arbitrary
Data.MonoidMap.QuickCheck.Instances.CoArbitrary
Data.MonoidMap.QuickCheck.Instances.Function
default-language:
Haskell2010