-
Notifications
You must be signed in to change notification settings - Fork 0
/
owm.cabal
61 lines (57 loc) · 1.91 KB
/
owm.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
61
name: owm
version: 0.1.0.0
synopsis: Interface to the openweathermap API.
description: Please see README.md
homepage: https://github.com/githubuser/perf#readme
license: BSD3
license-file: LICENSE
author: Markus Mayer
maintainer: [email protected]
copyright: Mayer Analytics
category: Network, Cloud, OWM
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Network.Owm.Weather, Network.Owm.Forecast, Network.Owm.ForecastDaily, Network.Owm
build-depends: base >= 4.7 && < 5
, aeson
, bytestring
, wreq
, lens
, json-autotype
, json-alt
, HTTP
, text
, http-types
, clock
, time
other-modules: Network.Owm.Internal.Weather
, Network.Owm.Internal.Forecast
, Network.Owm.Internal.ForecastDaily
default-language: Haskell2010
executable test-owm
hs-source-dirs: .
main-is: Main.hs
ghc-options: -O2 -threaded
build-depends: base
, owm
, bytestring
, HTTP
, MissingH
, aeson
, json-autotype
, text
, lens
default-language: Haskell2010
executable get-json-examples
hs-source-dirs: .
main-is: GetJsonExamples.hs
ghc-options: -O2 -threaded
build-depends: base
, bytestring
, wreq
, lens
, mtl
, MissingH
default-language: Haskell2010