generated from ikoHSE/sc-task-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask.cabal
45 lines (41 loc) · 862 Bytes
/
task.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
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.35.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: ba479ad20ec471b3b53314ad5d901661b888b4664e6cd42d65d0fd6ff6be5b8d
name: task
version: 0.1.0.0
license: Unlicense
license-file: LICENSE
build-type: Simple
library
exposed-modules:
Task
other-modules:
Paths_task
autogen-modules:
Paths_task
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
default-language: Haskell2010
test-suite task-tests
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Tests
Paths_task
autogen-modules:
Paths_task
hs-source-dirs:
test
build-depends:
QuickCheck
, base >=4.7 && <5
, hspec
, task
, tasty
, tasty-hspec
default-language: Haskell2010