-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathZ-Example.cabal
41 lines (35 loc) · 1.01 KB
/
Z-Example.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
cabal-version: 2.2
name: Z-Example
version: 0.1.0.0
synopsis: Examples for Z toolkit.
description:
Examples for Z toolkit, a simple and high performance IO toolkit for
Haskell.
license: BSD-3-Clause
license-file: LICENSE
copyright: (c) Z.Haskell Contributors
author: Z.Haskell Contributors
maintainer: [email protected]
category: Data
homepage: https://github.com/ZHaskell/Z-Examples
bug-reports: https://github.com/ZHaskell/Z-Examples/issues
build-type: Simple
source-repository head
type: git
location: git://github.com/ZHaskell/z-example.git
executable z-wc
main-is: wordcount.hs
hs-source-dirs: examples
build-depends:
, base >=4.12.0.0 && <5
, Z-Data >=0.5
, Z-IO >=0.5
default-language: Haskell2010
executable z-guess-std-type
main-is: guess-std-type.hs
hs-source-dirs: examples
build-depends:
, base >=4.12.0.0 && <5
, Z-Data >=0.5
, Z-IO >=0.5
default-language: Haskell2010