-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.yaml
More file actions
110 lines (99 loc) · 2.35 KB
/
package.yaml
File metadata and controls
110 lines (99 loc) · 2.35 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: fb
version: '2.1.1.2'
synopsis: Bindings to Facebook's API.
description: ! 'This package exports bindings to Facebook''s APIs (see
<http://developers.facebook.com/>). Does not have any external
dependencies and tries to use as little resources (such as
memory, sockets and CPU) as possible by using packages such as
@aeson@, @attoparsec@, @bytestring@, @conduit@, @http-conduit@,
@text@ and others.
While we would like to have a complete binding to Facebook''s
API, this package is being developed on demand. If you need
something that has not been implemented yet, please send a pull
request or file an issue on GitHub
(<https://github.com/psibi/fb/issues>).'
category: Web
author: Felipe Lessa, Sibi Prabakaran
maintainer: Sibi <sibi@psibi.in>
copyright: Felipe Lessa and Sibi Prabakaran
license: BSD3
homepage: https://github.com/psibi/fb
git: git@github.com:psibi/fb.git
bug-reports: https://github.com/psibi/fb/issues
extra-source-files:
- tests/Main.hs
- tests/tryIt.hs
- example.hs
- README.md
- CHANGELOG.md
library:
source-dirs: src
ghc-options: -Wall
exposed-modules:
- Facebook
dependencies:
- base >=4 && <5
- bytestring >=0.9
- text >=0.11
- transformers >=0.2
- transformers-base
- http-types
- http-conduit >=2.3.0
- http-client >=0.4.30
- attoparsec >=0.10.4
- unordered-containers
- data-default
- time >=1.4
- cryptonite
- memory
- monad-logger
- conduit-extra
- unliftio
- unliftio-core
- resourcet
- conduit >= 1.3.0
when:
- condition: flag(debug)
cpp-options: -DDEBUG
- condition: flag(pre-aeson-2-2-compat)
then:
build-depends:
- aeson >=0.8.0.2
else:
build-depends:
- attoparsec-aeson >=2.1.0.0
- aeson >=2.2.0.0
tests:
runtests:
main: Main.hs
source-dirs: tests
ghc-options:
- -Wall
- -fno-warn-orphans
dependencies:
- base
- transformers
- bytestring
- http-conduit
- text
- time
- aeson
- containers
- HUnit
- QuickCheck
- hspec >= 2.5.0
- conduit
- resourcet
- data-default
- unliftio
- fb
flags:
debug:
description: Print debugging info.
manual: false
default: false
pre-aeson-2-2-compat:
description: Build with aeson < 2.2 where the attoparsec-aeson package didn't exist.
manual: false
default: false
stability: Experimental