-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.yaml
More file actions
56 lines (52 loc) · 1.08 KB
/
package.yaml
File metadata and controls
56 lines (52 loc) · 1.08 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
name: haxchange
version: 0.0.1
synopsis: Cryptocurrency Exchange E-DSL
description: See README at <https://github.com/McGizzle/haxchange#readme>
maintainer: Sean McGroarty <mcgroas@tcd.ie>
license: BSD3
github: McGizzle/haxchange
category: Web
extra-source-files:
- README.md
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wredundant-constraints -Wincomplete-uni-patterns -fno-warn-orphans
dependencies:
- base >= 4.7 && < 5
- attoparsec
- wreq
- connection
- http-client-tls
- http-client
- lens
- lens-aeson
- aeson
- containers
- text
- time
- split
- bytestring
- base64-bytestring
- base16-bytestring
- cryptohash-sha512
- cryptohash-sha256
- ghc
- unordered-containers
- vector
library:
source-dirs: src
exposed-modules:
- Haxchange
- Haxchange.Types
- Haxchange.Utils
- Haxchange.Bittrex.Api
- Haxchange.Kraken.Api
- Haxchange.Binance.Api
tests:
spec:
main: Spec.hs
source-dirs:
- test
dependencies:
- base >= 4.10 && < 5
- haxchange
- hspec
- hspec-expectations