-
Notifications
You must be signed in to change notification settings - Fork 0
/
dp-system-process.cabal
58 lines (53 loc) · 1.51 KB
/
dp-system-process.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
-- Initial dp-system-process.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: dp-system-process
version: 0.0.0.0
synopsis: Handle system processes in Cloud Haskell
-- description:
homepage: https://github.com/BirdseyeSoftware/dp-system-process
license: MIT
license-file: LICENSE
author: Birdseye Software
maintainer: [email protected]
-- copyright:
category: CloudHaskell, Network, System
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules:
Control.Distributed.Process.SystemProcess
-- other-modules:
-- other-extensions:
build-depends:
base >=4.6 && <4.7,
async >=2.0 && <2.1,
binary,
bytestring,
mtl >=2.1 && <2.2,
process >=1.1 && <1.2,
conduit >=1.0 && <1.1,
distributed-process,
distributed-process-platform
ghc-options: -threaded -Wall
hs-source-dirs: src
default-language: Haskell2010
test-suite dp-system-process-test
type: exitcode-stdio-1.0
main-is: TestSuite.hs
build-depends:
base >=4.6 && <4.7,
async >=2.0 && <2.1,
bytestring,
mtl,
distributed-process,
distributed-process-platform,
network-transport,
network-transport-inmemory,
network-transport-tcp,
dp-system-process,
hspec,
HUnit
ghc-options: -threaded -Wall
hs-source-dirs: test
default-language: Haskell2010