forked from brendanhay/keiretsu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeiretsu.cabal
56 lines (50 loc) · 1.71 KB
/
keiretsu.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
name: keiretsu
version: 0.4.4
synopsis: Multi-process orchestration for development and integration testing
license: OtherLicense
license-file: LICENSE
author: Brendan Hay
maintainer: Brendan Hay <[email protected]>
copyright: Copyright (c) 2013-2014 Brendan Hay
stability: Experimental
category: Development, Testing
build-type: Simple
cabal-version: >= 1.10
description:
Keiretsu is an orchestration manager primarily designed for local development
and integration testing.
.
It allows you to specify dependencies that should be running/available before
the start of the local application, triggers setup/teardown hooks, and applies
a consistent environment to all child processes ensuring deterministic and
repeatable configuration.
extra-source-files:
README.md
source-repository head
type: git
location: git://github.com/brendanhay/keiretsu.git
executable keiretsu
default-language: Haskell2010
hs-source-dirs: src
main-is: Main.hs
ghc-options: -Wall -funbox-strict-fields -threaded -with-rtsopts=-N
build-depends:
aeson
, async
, ansi-terminal >= 0.6
, base > 4.6 && < 5
, bytestring
, directory
, filepath
, hslogger
, conduit == 1.1.*
, conduit-extra
, io-streams
, options < 1.0
, network
, optparse-applicative == 0.11.*
, process == 1.2.*
, text
, unix
, unordered-containers
, yaml