-
Notifications
You must be signed in to change notification settings - Fork 0
/
extralife.cabal
35 lines (32 loc) · 1.41 KB
/
extralife.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
name: extralife
version: 0.2.0.1
synopsis: API Client for ExtraLife team and user data
description: Provides types and helper functions for fetching data from ExtraLife about donation drives (participants, teams, donations)
homepage: https://github.com/wuest/haskell-extralife-api
license: BSD3
license-file: LICENSE
author: Tina Wuest
maintainer: [email protected]
copyright: 2017-2021 Tina Wuest
category: Web
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/wuest/haskell-extralife-api.git
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -static -Wall -fwarn-implicit-prelude -fwarn-monomorphism-restriction
exposed-modules: Web.ExtraLife.API
, Web.ExtraLife.Donation
, Web.ExtraLife.Team
, Web.ExtraLife.TeamMember
, Web.ExtraLife.User
build-depends: base >= 4.8 && < 5.0
, http-client >= 0.5 && < 0.8
, http-client-tls >= 0.3 && < 0.4
, aeson >= 2.0 && < 2.2
, bytestring >= 0.10 && < 0.12
, time >= 1.6 && < 1.14
, text >= 1.2 && < 2.1