-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathstreamly-docs.cabal
30 lines (27 loc) · 1009 Bytes
/
streamly-docs.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
cabal-version: 2.2
-- Reasons for having a separate package for docs:
-- * Leaner main package and better modularity
-- * This package can be forked out as an independent package
-- * We can have code examples in haddock with more dependencies
-- * Documentation can be released independent of the library
-- * We do not want too many doc modules in the main library
name: streamly-docs
version: 0.0.0
synopsis: Documentation for Streamly
description: Documentation for Streamly
build-type: Simple
-------------------------------------------------------------------------------
-- Library
-------------------------------------------------------------------------------
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: .
exposed-modules:
Tutorial
ConcurrentStreams
ReactiveProgramming
build-depends:
base >= 4.9 && < 5
, transformers >= 0.4 && < 0.6
, streamly