-
Notifications
You must be signed in to change notification settings - Fork 0
/
dialogue.cabal
62 lines (58 loc) · 1.43 KB
/
dialogue.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
56
57
58
59
60
61
62
cabal-version: 2.4
name: dialogue
version: 0.1.0
category: IO
synopsis: I/O in Haskell Report 1.2
description: Please see the README on GitHub at <https://github.com/AliasQli/dialogue#readme>
homepage: https://github.com/AliasQli/dialogue#readme
bug-reports: https://github.com/AliasQli/dialogue/issues
author: Alias Qli
maintainer: 2576814881@qq.com
copyright: 2022 Alias Qli
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/AliasQli/dialogue
library
exposed-modules:
System.IO.Continuation
System.IO.Dialogue
hs-source-dirs:
src
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wno-name-shadowing
-Wno-orphans
build-depends:
base >= 4.7 && < 5
, bytestring >= 0.10.12 && < 0.11
, directory >= 1.3.6 && < 1.4
default-language: Haskell2010
executable examples
main-is: Main.hs
hs-source-dirs:
examples
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wno-name-shadowing
-Wno-orphans
-threaded
-rtsopts
-with-rtsopts=-N
build-depends:
base >= 4.7 && < 5
, dialogue
default-language: Haskell2010