-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
73 lines (71 loc) · 1.21 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
name: personal-finance
version: '0.1.0.0'
synopsis: Some tools to manage my personal finance
category: Finance
author: Alexey Lebedeff
maintainer: [email protected]
license: Apache-2.0
homepage: https://github.com/binarin/personal-finance
extra-source-files:
- README.org
dependencies:
- aeson
- aeson-pretty
- base
- bytestring
- cassava
- clay
- containers
- cryptonite
- data-default
- directory
- exceptions
- extra
- fast-logger
- lens
- lens-aeson
- managed
- monad-logger
- mtl
- parsec
- prettyprinter
- prettyprinter-ansi-terminal
- process
- raw-strings-qq
- regex-posix
- scientific
- sqlite-simple
- stm
- temporary
- terminal-size
- text
- threepenny-gui
- time
- unix
- vector
- wreq
default-extensions:
- OverloadedStrings
- BangPatterns
- RankNTypes
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- MultiParamTypeClasses
- ScopedTypeVariables
- LambdaCase
library:
source-dirs: lib
executables:
personal-finance:
main: Main.hs
dependencies:
- personal-finance
source-dirs: src
tests:
spec:
source-dirs: test
main: Main.hs
dependencies:
- hspec
- personal-finance