forked from facebookincubator/hsthrift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththrift-haxl.cabal
More file actions
72 lines (66 loc) · 2.02 KB
/
Copy paththrift-haxl.cabal
File metadata and controls
72 lines (66 loc) · 2.02 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
cabal-version: 3.6
-- Copyright (c) Facebook, Inc. and its affiliates.
name: thrift-haxl
version: 0.2.0.0
synopsis: Support for using Haxl with Thrift services
homepage: https://github.com/facebookincubator/hsthrift
bug-reports: https://github.com/facebookincubator/hsthrift/issues
license: BSD-3-Clause
license-file: LICENSE
author: Facebook, Inc.
maintainer: hsthrift-team@fb.com
copyright: (c) Facebook, All Rights Reserved
category: Thrift
build-type: Simple
extra-doc-files: CHANGELOG.md
description:
Support for making Thrift requests using the Haxl concurrency
framework.
.
NOTE: for build instructions and documentation, see
<https://github.com/facebookincubator/hsthrift>
source-repository head
type: git
location: https://github.com/facebookincubator/hsthrift.git
common fb-haskell
default-language: Haskell2010
default-extensions:
BangPatterns
BinaryLiterals
DataKinds
DeriveDataTypeable
DeriveGeneric
EmptyCase
ExistentialQuantification
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
LambdaCase
MultiParamTypeClasses
MultiWayIf
NoMonomorphismRestriction
OverloadedStrings
PatternSynonyms
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeFamilies
TypeSynonymInstances
NondecreasingIndentation
library
import: fb-haskell
exposed-modules:
Haxl.DataSource.Thrift
build-depends:
thrift-lib >= 0.1 && < 0.3,
hashable >=1.2.7.0 && <1.5,
haxl >= 2.1.2.0 && < 2.6,
mtl >= 2.2.2 && < 2.4,
text-show >= 3.10.4 && < 3.11,
text >= 1.2.3.0 && < 2.2,
transformers >= 0.5.6 && < 0.7,
unordered-containers ^>=0.2.9.0,
base >=4.11.1 && <4.20,