-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenstack-api.cabal
55 lines (53 loc) · 1.8 KB
/
openstack-api.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
name: openstack-api
version: 0.1.0.0
homepage: https://github.com/anchor/openstack-api
license: BSD3
license-file: LICENSE
author: Anchor Engineering <[email protected]>
maintainer: Anchor Engineering <[email protected]>
build-type: Simple
cabal-version: >=1.10
category: OpenStack
synopsis: OpenStack APIs
description: OpenStack APIs
source-repository head
type: git
location: https://github.com/anchor/openstack-api
library
exposed-modules: OpenStack.Common
, OpenStack.Keystone
, OpenStack.Nova
build-depends: base >=4.7 && <4.9
, aeson
, bytestring
, containers
, either
, lens
, http-client
, http-types
, mtl
, old-locale
, servant
, servant-client
, text
, time
, transformers
, transformers-compat >= 0.4
, unordered-containers
, vector
hs-source-dirs: lib
default-language: Haskell2010
test-suite unit-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
default-language: Haskell2010
build-depends: base >=4.7 && <5
, openstack-api
, hspec
, HUnit
, old-locale
, text
, time
, transformers
, transformers-compat >= 0.4