-
Notifications
You must be signed in to change notification settings - Fork 0
/
native-continuations.cabal
55 lines (51 loc) · 1.74 KB
/
native-continuations.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
50
51
52
53
54
55
cabal-version: 3.0
name: native-continuations
version: 0.1.0.0
synopsis: native delimited continuations
description: See README.md for more information
license: BSD-3-Clause
license-file: LICENSE
author: Matej Nižník
maintainer: [email protected]
category: Control
build-type: Simple
extra-doc-files: CHANGELOG.md
source-repository head
type: git
location: https://git.sr.ht/~thematten/native-continuations
common common
ghc-options: -Wall
-Wimplicit-prelude
-Wmissing-exported-signatures
-Wmissing-export-lists
-Wmissing-home-modules
-Widentities
-Wredundant-constraints
-Wpartial-fields
-Wcpp-undef
-Wmissing-deriving-strategies
-Wunused-type-patterns
-Wunticked-promoted-constructors
default-language: GHC2021
default-extensions: BlockArguments
DataKinds
DerivingStrategies
NoImplicitPrelude
QualifiedDo
TypeFamilies
build-depends: base ^>=4.18.0
library
import: common
exposed-modules: Control.Monad.Cont.Native
other-modules: Control.Prim
Control.Prim.Lifted
Control.Prim.Unlifted
hs-source-dirs: src
build-depends: primitive ^>=0.8.0,
transformers ^>=0.6.1,
test-suite test
import: common
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: native-continuations