-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassert-plugin.cabal
46 lines (42 loc) · 1.06 KB
/
assert-plugin.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
cabal-version: 1.12
name: assert-plugin
version: 0.1.0
description: Rich switchable assertions
homepage: https://github.com/aspiwack/assert-plugin#readme
bug-reports: https://github.com/aspiwack/assert-plugin/issues
author: Arnaud Spiwack
maintainer: [email protected]
copyright: 2019 Arnaud Spiwack
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/aspiwack/assert-plugin
library
exposed-modules:
Test.Assert
With.Assertions
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, ghc
, syb
, uniplate
, validity
default-language: Haskell2010
test-suite assert-plugin-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
assert-plugin
, base >=4.7 && <5
, hspec
, validity
default-language: Haskell2010