-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeocoderOpenCage.cabal
52 lines (47 loc) · 1.34 KB
/
GeocoderOpenCage.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: GeocoderOpenCage
version: 0.2.0.0
cabal-version: >= 1.12
build-type: Simple
author: Juergen Hahn
maintainer: [email protected]
category: Web
license: GPL
license-file: LICENSE
stability: experimental
homepage: https://github.com/juergenhah/Haskell-Geocoder-OpenCage.git
description: uses the OpenCage REST API to geocode and reverse geocode
synopsis: Geocoder and Reverse Geocoding Service Wrapper
library
build-depends:
base >= 4 && <5,
text >= 1.2.3.1 && <2,
HTTP >=4000.3.12 && <4000.4,
bytestring >=0.10.8.2 && <0.11,
aeson >=1.4.2.0
hs-source-dirs: src
ghc-options: -Wall
exposed-modules:
Geocoder,
RevGeocoder,
Main
other-modules:
HTTPWrapper
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
ghc-options: -Wall
build-depends:
base ==4.*
, hspec ==2.*
, bytestring
, raw-strings-qq
, aeson >=1.4.2.0
, HUnit
, GeocoderOpenCage
, text
other-modules:
default-language: Haskell2010
build-tool-depends: hspec-discover:hspec-discover == 2.*