File tree Expand file tree Collapse file tree 2 files changed +54
-0
lines changed
_sources/quickcheck-monoids/0.1.0.1 Expand file tree Collapse file tree 2 files changed +54
-0
lines changed Original file line number Diff line number Diff line change 11timestamp = 2024-08-07T16:54:05Z
22github = { repo = " intersectmbo/ouroboros-network" , rev = " fd1d8bd7725474d15b4722232b6c999b203c0e37" }
33subdir = ' quickcheck-monoids'
4+
5+ [[revisions ]]
6+ number = 1
7+ timestamp = 2025-02-27T05:43:51Z
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments