-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
50 lines (42 loc) · 1020 Bytes
/
package.yaml
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
name: typeable-mock
version: 0.1.0.1
github: "lykahb/typeable-mock"
license: BSD3
author: "Boris Lykah"
maintainer: "[email protected]"
copyright: "2021 Boris Lykah"
extra-source-files:
- README.md
- ChangeLog.md
synopsis: Mock functions and expressions anywhere.
category: Testing
description: Please see the README on GitHub at <https://github.com/lykahb/typeable-mock#readme>
dependencies:
- base >= 4.7 && < 5
- containers
- call-stack >= 0.2.0
- variadic-function >= 0.1.0.0 && < 0.2
default-extensions:
- FlexibleContexts
- GADTs
- LambdaCase
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- TypeApplications
- TypeOperators
ghc-options:
- -Wall
library:
source-dirs: src
tests:
typeable-mock-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- typeable-mock
- hspec