This repository has been archived by the owner on Dec 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
bittrex.cabal
50 lines (47 loc) · 1.52 KB
/
bittrex.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
name: bittrex
version: 0.6.0.0
synopsis: Bindings for the Bittrex API
description: Haskell bindings to the Bittrex exchange
homepage: https://github.com/dmjio/bittrex
license: BSD3
license-file: LICENSE
author: David Johnson
maintainer: code@dmj.io
copyright: © David Johnson 2017-2025
, © Remy Goldschmidt 2017-2025
category: Web
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >= 1.10
source-repository head
type: git
location: git://github.com/dmjio/bittrex.git
library
exposed-modules: Bittrex
Bittrex.API
Bittrex.Types
Bittrex.Util
other-modules: Bittrex.Internal
hs-source-dirs: src
default-language: Haskell2010
build-depends: base < 5
, aeson
, bytestring
, http-client-tls
, lens
, lens-aeson
, scientific
, SHA
, split
, text
, time
, wreq
, flow
executable example
main-is: Main.hs
hs-source-dirs: example
default-language: Haskell2010
build-depends: bittrex
, base
, text
, turtle