-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeworld-tasks.cabal
More file actions
80 lines (75 loc) · 2.12 KB
/
codeworld-tasks.cabal
File metadata and controls
80 lines (75 loc) · 2.12 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.38.1.
--
-- see: https://github.com/sol/hpack
name: codeworld-tasks
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/fmidue/codeworld-tasks#readme>
homepage: https://github.com/fmidue/codeworld-tasks#readme
bug-reports: https://github.com/fmidue/codeworld-tasks/issues
author: Patrick Ritzenfeld
maintainer: patrick.ritzenfeld@uni-due.de
copyright: 2024 Patrick Ritzenfeld
license: BSD-3-Clause
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/fmidue/codeworld-tasks
library
exposed-modules:
CodeWorld
CodeWorld.Test
other-modules:
CodeWorld.Sharing.Feedback
CodeWorld.Sharing.HashCons
CodeWorld.Tasks.API
CodeWorld.Tasks.Color
CodeWorld.Tasks.Picture
CodeWorld.Tasks.Types
CodeWorld.Tasks.VectorSpace
CodeWorld.Test.Abstract
CodeWorld.Test.AbstractHelpers
CodeWorld.Test.AbsTypes
CodeWorld.Test.Animation
CodeWorld.Test.Relative
CodeWorld.Test.Rewrite
CodeWorld.Test.Solution
Paths_codeworld_tasks
autogen-modules:
Paths_codeworld_tasks
hs-source-dirs:
src
ghc-options: -Wall -Werror -Wcompat -Widentities -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
build-depends:
base >=4.11 && <5
, containers
, data-reify
, deepseq
, extra
, mtl
, text
, uniplate
default-language: Haskell2010
test-suite codeworld-tasks-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_codeworld_tasks
autogen-modules:
Paths_codeworld_tasks
hs-source-dirs:
test
ghc-options: -Wall -Werror -Wcompat -Widentities -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.11 && <5
, codeworld-tasks
, containers
, data-reify
, deepseq
, extra
, mtl
, text
, uniplate
default-language: Haskell2010