-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbag-of-holding.cabal
87 lines (79 loc) · 2.32 KB
/
bag-of-holding.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
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
cabal-version: 2.2
name: bag-of-holding
version: 1.4.1
synopsis: A terminal-based wallet for Chainweb.
description: A terminal-based wallet for Chainweb.
homepage: https://github.com/kadena-community/bag-of-holding
author: Colin Woodbury
maintainer: [email protected]
copyright: 2019 - 2020 Colin Woodbury
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
README.org
ChangeLog.md
common commons
default-language: Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
ghc-options:
-Wall -Wcompat -Wpartial-fields -Wincomplete-record-updates
-Wincomplete-uni-patterns -Widentities -funclutter-valid-hole-fits
-fmax-relevant-binds=0
build-depends:
, aeson ^>=1.4
, aeson-pretty ^>=0.8
, base >=4.12 && <5
, errors ^>=2.3
, generic-lens >=1.1 && <1.3
, microlens ^>=0.4
, pact >=3.3 && <3.6
, rio ^>=0.1
, servant-client ^>=0.16
library
import: commons
hs-source-dirs: lib
exposed-modules:
Holding
Holding.Chainweb
build-depends:
, Decimal ^>=0.5
, prettyprinter >=1.2 && < 1.7
, servant ^>=0.16
, time >=1.8 && < 1.10
, yaml ^>=0.11
executable boh
import: commons
ghc-options: -threaded -with-rtsopts=-N
hs-source-dirs: exec
main-is: BOH.hs
other-modules:
BOH.CLI
BOH.Poll
BOH.Signing
BOH.UI
build-depends:
, bag-of-holding
, brick >=0.47 && <0.53
, http-client ^>=0.6
, http-client-tls ^>=0.3
, kadena-signing-api ^>=0.1
, optparse-applicative >=0.14 && < 0.16
, pretty-simple >=2.2 && < 3.3
, servant-server ^>=0.16
, transformers ^>=0.5
, vty >=5.25
, wai-cors >=0.2
, warp >=3.2
-- test-suite boh-tests
-- import: commons
-- type: exitcode-stdio-1.0
-- hs-source-dirs: test
-- main-is: Test.hs
-- ghc-options: -threaded -with-rtsopts=-N
-- build-depends:
-- , bag-of-holding
-- , tasty ^>=1.2
-- , tasty-hunit ^>=0.10