-
Notifications
You must be signed in to change notification settings - Fork 5
/
haskell-binance.cabal
82 lines (70 loc) · 2.33 KB
/
haskell-binance.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
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
name: haskell-binance
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: Lucsanszky
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: ChangeLog.md
README.md
cabal-version: >=1.10
library
exposed-modules: Binance
, Binance.Api
, Binance.Prelude
, Binance.Type
-- other-modules:
-- other-extensions:
build-depends: aeson
, base
, bytestring
, cryptonite
, http-api-data
, http-client
, http-client-tls
, mtl
, network
, servant ==0.11
, servant-client ==0.11
, text
, websockets
, wuss
hs-source-dirs: src
default-language: Haskell2010
default-extensions: DataKinds
DeriveGeneric
GeneralizedNewtypeDeriving
NamedFieldPuns
NoImplicitPrelude
OverloadedLists
OverloadedStrings
RecordWildCards
TypeApplications
TypeOperators
executable examples
hs-source-dirs: example
main-is: Example.hs
build-depends: base
, bytestring
, haskell-binance
, http-client
, http-client-tls
, servant ==0.11
, servant-client ==0.11
, websockets
, wuss
default-language: Haskell2010
default-extensions: DataKinds
DeriveGeneric
GeneralizedNewtypeDeriving
NamedFieldPuns
NoImplicitPrelude
OverloadedLists
OverloadedStrings
RecordWildCards
TypeApplications
TypeOperators