-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathballast.cabal
51 lines (48 loc) · 1.9 KB
/
ballast.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
name: ballast
version: 0.2.0.0
synopsis: Shipwire API client
description: Please see README.md
homepage: https://github.com/alexeyzab/ballast#readme
license: BSD3
license-file: LICENSE
author: Alexey Zabelin, Chris Allen
maintainer: [email protected]
copyright: 2016 Chris Allen
category: Web
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Ballast
Ballast.Client
Ballast.Types
build-depends: base >= 4.7 && < 5
, aeson >= 0.11.1 && <1.3
, bytestring >= 0.10.0 && <0.11
, http-client >= 0.5 && <0.6
, http-client-tls >= 0.3 && <0.3.6
, http-types >= 0.8 && <0.10
, text >= 0.11 && <1.3
, time
, vector >= 0.10.9 && <0.13
, unordered-containers
default-language: Haskell2010
ghc-options: -Wall -Werror -fwarn-unused-binds -fwarn-unused-imports
test-suite tests
ghc-options: -Wall -Werror -fwarn-unused-binds -fwarn-unused-imports
type: exitcode-stdio-1.0
main-is: tests.hs
hs-source-dirs: tests
build-depends: base,
ballast,
hspec >= 1.8 && <2.5,
hspec-expectations,
text,
time,
http-client >= 0.5 && <0.6,
http-client-tls >= 0.3 && <0.3.6,
safe >= 0.3 && <0.4
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/alexeyzab/ballast