-
Notifications
You must be signed in to change notification settings - Fork 0
/
hschain.cabal
67 lines (62 loc) · 2 KB
/
hschain.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
cabal-version: 1.12
name: hschain
version: 0.1.0.0
homepage: https://github.com/initprism/hschain#readme
author: initprism
maintainer: [email protected]
copyright: 2022 initprism
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/initprism/hschain
library
hs-source-dirs: src
exposed-modules: Lib
, Server
, Control.Distributed.P2P
default-language: Haskell2010
build-depends:
GenericPretty
, Spock
, base >=4.7 && <5
, async
, hslogger
, distributed-process
, bytestring
, cryptohash
, text
, aeson
, binary
, time
, mtl
, containers
, network
, network-transport
, network-transport-tcp
executable hschain
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
build-depends:
base >=4.7 && <5
, hslogger
, hschain
test-suite hschain-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
default-language: Haskell2010
build-depends:
base >=4.7 && <5
, Spock
, HTTP
, tasty
, tasty-hunit
, async
, bytestring
, aeson
, text
, hschain