-
Notifications
You must be signed in to change notification settings - Fork 0
/
haskmon.cabal
49 lines (46 loc) · 1.26 KB
/
haskmon.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
name: haskmon
version: 0.2.2.0
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE
maintainer: [email protected]
synopsis: A haskell wrapper for PokeAPI.co (www.pokeapi.co)
description:
This is a haskell wrapper for the RESTful api www.pokeapi.co.
It defines most of the types and functions in the API.
category: Web, Game
author: Pedro Rodriguez
source-repository head
type: git
location: https://github.com/pjrt/Haskmon.git
library
exposed-modules:
Haskmon
Haskmon.Client
Haskmon.Resource
Haskmon.Types
Haskmon.Types.Internals
build-depends:
base >=4.8 && <4.9,
http-streams ==0.8.*,
bytestring >=0.10.0.2 && <0.11,
io-streams ==1.3.*,
aeson >=0.8 && <0.10,
time ==1.5.*,
vector >=0.10 && <0.12,
containers >=0.5.5.1 && <0.6
default-language: Haskell2010
hs-source-dirs: src
other-modules:
Haskmon.Types.Game
Haskmon.Types.Move
Haskmon.Types.Type
Haskmon.Types.Sprite
Haskmon.Types.Ability
Haskmon.Types.Pokemon
Haskmon.Types.MetaData
Haskmon.Types.EggGroup
Haskmon.Types.Description
Haskmon.Types.Evolutions
ghc-options: -Wall