Skip to content

Commit fcaf0e1

Browse files
committed
quickcheck-monoids-0.1.0.1: Bump base dependency
1 parent 673d4e5 commit fcaf0e1

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
timestamp = 2024-08-07T16:54:05Z
22
github = { repo = "intersectmbo/ouroboros-network", rev = "fd1d8bd7725474d15b4722232b6c999b203c0e37" }
33
subdir = 'quickcheck-monoids'
4+
5+
[[revisions]]
6+
number = 1
7+
timestamp = 2025-02-27T05:43:51Z
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
cabal-version: 3.0
2+
name: quickcheck-monoids
3+
version: 0.1.0.1
4+
synopsis: QuickCheck monoids
5+
description: All and Any monoids for `Testable` instances based on `.&&.` and `.||.`.
6+
license: Apache-2.0
7+
license-files: LICENSE
8+
NOTICE
9+
author: Marcin Szamotulski
10+
maintainer: coot@coot.me
11+
category: Testing
12+
copyright: 2024 Input Output Global Inc (IOG)
13+
build-type: Simple
14+
extra-doc-files: CHANGELOG.md
15+
extra-source-files: README.md
16+
17+
common warnings
18+
ghc-options: -Wall
19+
20+
library
21+
import: warnings
22+
exposed-modules: Test.QuickCheck.Monoids
23+
build-depends: base < 4.22,
24+
QuickCheck
25+
hs-source-dirs: src
26+
default-language: Haskell2010
27+
ghc-options: -Wall
28+
-Wno-unticked-promoted-constructors
29+
-Wcompat
30+
-Wincomplete-uni-patterns
31+
-Wincomplete-record-updates
32+
-Wpartial-fields
33+
-Widentities
34+
-Wredundant-constraints
35+
-Wunused-packages
36+
37+
test-suite quickcheck-monoids-test
38+
import: warnings
39+
default-language: Haskell2010
40+
type: exitcode-stdio-1.0
41+
hs-source-dirs: test
42+
main-is: Main.hs
43+
build-depends:
44+
base,
45+
QuickCheck,
46+
quickcheck-monoids,
47+
tasty,
48+
tasty-quickcheck,
49+
ghc-options: -Wall
50+
-rtsopts

0 commit comments

Comments
 (0)