-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.yaml
95 lines (88 loc) · 1.62 KB
/
package.yaml
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
name: order-graph
version: 0.1.0.0
homepage: https://github.com/runeksvendsen/order-graph#readme
license: BSD3
author: Rune K. Svendsen
maintainer: [email protected]
copyright: CC0
category: value
default-extensions:
- FlexibleContexts
- DeriveGeneric
- DataKinds
- PolyKinds
dependencies:
- base >= 4.7 && < 5
ghc-options:
- -O2
- -fno-ignore-asserts
- -Wall
library:
source-dirs: src
dependencies:
- protolude
- orderbook
- primitive
- deepseq
- hashable
- pretty-show
- text
- aeson
- bellman-ford
- vector
- thrist
- tagged
- text
- safe-money
executables:
order-graph-exe:
main: Main.hs
source-dirs: app
dependencies:
- protolude
- orderbook
- order-graph
- bellman-ford
- logging
- unliftio
- unordered-containers
- safe-money
- vector
- criterion
- aeson
- directory
- optparse-applicative
- filepath
- cassava
- text-format
- text
tests:
order-graph-test:
main: Spec.hs
source-dirs: test
dependencies:
- order-graph
- vector
- HUnit
- hspec-expectations
- hspec-expectations-pretty-diff
- QuickCheck
- hspec
- tasty
- tasty-smallcheck
- tasty-quickcheck
- smallcheck
- hspec-smallcheck
- random-shuffle
- text
- safe-money
- orderbook
- bellman-ford
benchmarks:
order-graph-bench:
main: Main.hs
source-dirs:
- bench
dependencies:
- order-graph
- gauge