-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcoexp.cabal
More file actions
67 lines (63 loc) · 1.57 KB
/
Copy pathcoexp.cabal
File metadata and controls
67 lines (63 loc) · 1.57 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
cabal-version: 3.4
name: coexp
version: 0.1.0.0
license: MIT
license-file: LICENSE
maintainer: git@vikraman.org
author: Vikraman Choudhury
homepage: https://github.com/vikraman/hs-coexp
synopsis: Continuations and Co-exponentials
category: Control
build-type: Simple
extra-doc-files: CHANGELOG.md
common common-deps
default-language: GHC2021
build-depends:
base >=4.16 && <5,
mtl ^>=2.3
ghc-options:
-Wall
-Wextra
-O2
other-modules:
Paths_coexp
library
import: common-deps
exposed-modules:
Control.Arrow.Coapply
Control.Monad.Coexp
Control.Monad.Control
Control.Monad.Free.Control
Data.Coexp
Data.Coexp.Backtrack
Data.Functor.Strong
Data.Profunctor.Coclosed
Examples.Eff.Toss
Examples.SAT.Backtrack
Examples.SAT.Guess
Examples.SAT.Prop
Examples.TS.Backtrack
Examples.TS.Tree
hs-source-dirs: src
build-depends:
bifunctors ^>=5.6,
containers ^>=0.6,
free ^>=5.2,
profunctors ^>=5.6,
tasty-quickcheck ^>=0.10,
executable coexp
import: common-deps
main-is: Main.hs
hs-source-dirs: app
build-depends:
coexp
test-suite coexp-test
import: common-deps
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends:
coexp,
tasty ^>=1.4,
tasty-hunit ^>=0.10,
tasty-quickcheck ^>=0.10,