transient-universe/transient-universe.cabal

116 lines
2.9 KiB
Text
Raw Normal View History

2016-07-04 01:42:13 +00:00
name: transient-universe
2017-03-30 06:55:28 +00:00
version: 0.4.3
2016-07-04 01:42:13 +00:00
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE
maintainer: agocorona@gmail.com
homepage: http://www.fpcomplete.com/user/agocorona
2016-07-06 07:49:46 +00:00
bug-reports: https://github.com/agocorona/transient-universe/issues
2016-07-04 01:42:13 +00:00
synopsis: Remote execution and map-reduce: distributed computing for Transient
2016-08-25 10:32:11 +00:00
description:
See <http://github.com/agocorona/transient>.
2016-07-04 01:42:13 +00:00
category: Control
author: Alberto G. Corona
2017-03-03 11:04:19 +00:00
extra-source-files:
2017-03-04 10:12:21 +00:00
ChangeLog.md README.md
2017-03-03 11:04:19 +00:00
app/client/Transient/Move/Services/MonitorService.hs
app/server/Transient/Move/Services/MonitorService.hs
2016-07-04 01:42:13 +00:00
source-repository head
type: git
location: https://github.com/agocorona/transient-universe
library
2017-03-03 11:04:19 +00:00
2016-09-14 13:34:18 +00:00
if !impl(ghcjs >=0.1)
exposed-modules:
Transient.Move.Services
if impl(ghcjs >=0.1)
2017-03-03 11:04:19 +00:00
build-depends:
ghcjs-base -any,
ghcjs-prim -any
2016-09-14 13:34:18 +00:00
else
2017-03-03 11:04:19 +00:00
build-depends:
HTTP -any,
2017-03-04 14:14:41 +00:00
TCache >= 0.12,
2017-03-03 11:04:19 +00:00
case-insensitive -any,
directory -any,
filepath -any,
hashable -any,
iproute -any,
network -any,
network-info -any,
network-uri -any,
vector -any,
websockets -any
exposed-modules:
Transient.Move
Transient.MapReduce
Transient.Move.Internals
Transient.Move.Utils
build-depends:
base >4 && <5,
bytestring -any,
containers -any,
mtl -any,
process -any,
random -any,
stm -any,
text -any,
time -any,
transformers -any,
2017-03-30 06:55:28 +00:00
transient >= 0.5.4
2016-07-04 01:42:13 +00:00
default-language: Haskell2010
hs-source-dirs: src .
2016-08-25 10:32:11 +00:00
2016-09-14 13:34:18 +00:00
executable monitorService
2016-09-28 15:23:17 +00:00
2017-02-06 19:11:12 +00:00
if !impl(ghcjs >=0.1)
2017-03-03 11:04:19 +00:00
build-depends:
transformers -any,
transient >=0.4.4,
transient-universe -any
hs-source-dirs: app/server/Transient/Move/Services
else
hs-source-dirs: app/client/Transient/Move/Services
main-is: MonitorService.hs
build-depends:
base >4 && <5
default-language: Haskell2010
ghc-options: -threaded -rtsopts
2017-02-06 19:11:12 +00:00
2017-03-03 11:04:19 +00:00
test-suite test-transient
2016-10-22 12:28:38 +00:00
2017-03-03 11:04:19 +00:00
if !impl(ghcjs >=0.1)
build-depends:
mtl -any,
transient -any,
random -any,
text -any,
containers -any,
directory -any,
filepath -any,
stm -any,
HTTP -any,
network -any,
transformers -any,
process -any,
network -any,
network-info -any,
bytestring -any,
time -any,
vector -any,
2017-03-03 12:45:54 +00:00
TCache >= 0.12,
2017-03-03 11:04:19 +00:00
websockets -any,
network-uri -any,
case-insensitive -any,
hashable -any
2016-09-28 15:23:17 +00:00
type: exitcode-stdio-1.0
main-is: TestSuite.hs
2017-03-03 11:04:19 +00:00
build-depends:
base >4
2016-09-28 15:23:17 +00:00
default-language: Haskell2010
hs-source-dirs: tests src .