-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
106 lines (93 loc) · 1.69 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
96
97
98
99
100
101
102
103
104
105
106
name: vl-haskell
version: 0.1.0
author: Christoph Finkensiep
copyright: 2020 Christoph Finkensiep
license: BSD3
license-file: LICENSE
data-dir: data
dependencies:
- aeson
- aeson-pretty
- base >= 4.7 && < 5
- bytestring
- Chart
- Chart-cairo
- colour
- containers
- data-default
- deepseq
# - diagrams-lib
# - diagrams-svg
- directory
- filepath
- ghc
- hashable
- HCodecs
- lens
- lilypond
- loop
- machines
- math-functions >= 0.3.3.0
- memoize
- mtl
- mwc-random
- palette
# - plots
- prettify
- primitive
- process
- streamly
- temporary
- terminal-progress-bar
- text
- transformers
- vector
library:
source-dirs:
- src
other-modules:
- VoiceLeading.IO.HorizontalBars
ghc-options: [-threaded, -rtsopts, -with-rtsopts=-N]
executables:
vl-haskell-exe:
source-dirs: [app]
main: Main.hs
other-modules: []
dependencies:
- vl-haskell
- clock
- formatting
- optparse-applicative
- yaml
vl-train:
source-dirs: [app/train]
main: train.hs
dependencies:
- vl-haskell
- clock
- formatting
- optparse-applicative
vl-compose:
source-dirs: [app/compose]
main: compose.hs
dependencies:
- vl-haskell
- optparse-applicative
- yaml
vl-view-model:
source-dirs: [app/view-model]
main: view-model.hs
dependencies:
- vl-haskell
- optparse-applicative
vl-rate:
source-dirs: [app/rate]
main: rate.hs
dependencies:
- vl-haskell
- optparse-applicative
tests:
vl-haskell-test:
source-dirs: [test]
main: Spec.hs
ghc-options: [-threaded, -rtsopts, -with-rtsopts=-N]