-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhabs-stdlib.cabal
60 lines (52 loc) · 1.63 KB
/
habs-stdlib.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
59
60
name: habs-stdlib
version: 0.0.1
license: BSD3
license-file: LICENSE
author: Nikolaos Bezirgiannis
maintainer: Nikolaos Bezirgiannis <bezirgia@cwi.nl>
copyright: Copyright (c) 2013-2016, Envisage Consortium
homepage: http://abs-models.org
bug-reports: https://github.com/abstools/habs-stdlib/issues
stability: provisional
tested-with: GHC == 7.10.1, GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1
build-type: Simple
cabal-version: >= 1.8
category: Concurrency, Distributed Computing
synopsis: The ABS stdlib expressed natively in Haskell
description:
The ABS stdlib expressed natively in Haskell
todo
extra-source-files:
README.md
source-repository head
type: git
location: git://github.com/abstools/habs-stdlib.git
branch: master
library
build-depends:
-- base<=4.6 (i.e. GHC<=7.6.3) not supported because of no `tryReadMVar`
-- base<=4.7 (i.e. GHC<=7.8.4) not supported because of generated code relies on PartialTypeSignatures
base >= 4.8 && < 5,
-- containers-0.5.0.0 introduces strict containers, comes bundled with ghc>=7.6.3
containers>=0.5.0.0,
genifunctors>=0.4
exposed-modules:
-- the functions and data of the ABS standard-library, expressed directly in Haskell
ABS.StdLib,
-- TODO: the deployment component interface, where all cloud-provider classes derive from
ABS.DC
ghc-options: -Wall -fno-warn-orphans
hs-source-dirs: src
-- TEST SUITE
-------------
test-suite unit
type: exitcode-stdio-1.0
main-is: unit.hs
build-depends:
base,
habs-stdlib,
tasty,
tasty-hunit,
tasty-html
ghc-options: -fno-ignore-asserts -threaded "-with-rtsopts=-N4"
hs-source-dirs: tests