blob: e043ff7918af39329ae06318f32d4d02524069c7 (
plain)
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
|
name: gravatar
version: 0.8.0
author: Pat Brisbin <pbrisbin@gmail.com>
maintainer: Pat Brisbin <pbrisbin@gmail.com>
license: MIT
license-file: LICENSE
synopsis: Generate Gravatar image URLs
description: Generate Gravatar image URLs
cabal-version: >= 1.10
build-type: Simple
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Network.Gravatar
build-depends: base >= 4 && < 5
, text >= 0.11 && < 2.0
, bytestring >= 0.9.1 && < 0.11
, pureMD5 < 3
, HTTP
, data-default
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
ghc-options: -Wall
main-is: Spec.hs
build-depends: base
, hspec
, gravatar
, text
source-repository head
type: git
location: https://github.com/pbrisbin/gravatar
|