This repository has been archived by the owner on Mar 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHaskellTasks2020.cabal
49 lines (46 loc) · 1.71 KB
/
HaskellTasks2020.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
47
48
49
cabal-version: 3.0
name: HaskellTasks2020
version: 0.1.0.0
synopsis: A set of problems for FP course 2020 in KFU
description: A set of problems with tests to assess
students' knowledge of FP and Haskell.
Contains hidden tests to avoid tampering
tests
-- bug-reports:
license: GPL-3.0-or-later
license-file: LICENSE
author: Mansur Ziiatdinov
maintainer: [email protected]
copyright: Mansur Ziiatdinov, 2020
category: Education
build-type: Simple
library
exposed-modules: Lib
, Part1
, Part2, Part2.Types
, Part3
, Part4, Part4.Types
-- other-modules:
-- other-extensions:
build-depends: base >=4.13 && <4.14
, containers >=0.6
hs-source-dirs: src
default-language: Haskell2010
test-suite HaskellTasks2020-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MainTest.hs
other-modules: Test1, Test2, Test3, Test4
, Hidden1, Hidden2, Hidden3, Hidden4
build-depends: base >=4.13 && <4.14
, containers >= 0.6
, HaskellTasks2020
, tasty >= 1.2
, tasty-hunit >= 0.10
, tasty-hedgehog >= 1.0
, tasty-smallcheck >= 0.8
, tasty-quickcheck >= 0.10
, smallcheck >= 1.1
, hedgehog >= 1.0
, quickcheck-classes >= 0.6