-
Notifications
You must be signed in to change notification settings - Fork 1
/
io-manager.cabal
34 lines (28 loc) · 1.03 KB
/
io-manager.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
cabal-version: 3.6
name: io-manager
version: 0.1.0.4
synopsis: Skeleton library around the IO monad.
description: A skeleton library to help learners of Haskell
concentrate on the pure-functional aspect and
let the IO be handled by the library.
license: BSD-3-Clause
license-file: LICENSE
author: Mihai Maruseac
maintainer: [email protected]
category: Training
build-type: Simple
source-repository head
type: git
location: https://github.com/mihaimaruseac/io-manager
library
exposed-modules: Training.MM.IOManager
default-language: Haskell2010
build-depends: base < 5,
containers < 1
executable SimpleEchoExample
build-depends: base < 5,
containers < 1,
io-manager
Main-Is: SimpleEchoExample.hs
Hs-Source-Dirs: simple-echo-example
default-language: Haskell2010