-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathppad-bolt1.cabal
More file actions
88 lines (77 loc) · 1.96 KB
/
ppad-bolt1.cabal
File metadata and controls
88 lines (77 loc) · 1.96 KB
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
cabal-version: 3.0
name: ppad-bolt1
version: 0.0.1
synopsis: Base protocol per BOLT #1
license: MIT
license-file: LICENSE
author: Jared Tobin
maintainer: jared@ppad.tech
category: Cryptography
build-type: Simple
tested-with: GHC == 9.10.3
extra-doc-files: CHANGELOG
description:
Base protocol, per
[BOLT #1](https://github.com/lightning/bolts/blob/master/01-messaging.md).
source-repository head
type: git
location: git.ppad.tech/bolt1.git
library
default-language: Haskell2010
hs-source-dirs: lib
ghc-options:
-Wall
exposed-modules:
Lightning.Protocol.BOLT1
Lightning.Protocol.BOLT1.Codec
Lightning.Protocol.BOLT1.Internal
Lightning.Protocol.BOLT1.Message
Lightning.Protocol.BOLT1.Prim
Lightning.Protocol.BOLT1.TLV
build-depends:
base >= 4.9 && < 5
, bytestring >= 0.9 && < 0.13
, deepseq >= 1.4 && < 1.6
test-suite bolt1-tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Main.hs
ghc-options:
-rtsopts -Wall -O2
build-depends:
base
, bytestring
, ppad-base16
, ppad-bolt1
, tasty
, tasty-hunit
, tasty-quickcheck
benchmark bolt1-bench
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: bench
main-is: Main.hs
other-modules: Fixtures
ghc-options:
-rtsopts -O2 -Wall -fno-warn-orphans
build-depends:
base
, bytestring
, criterion
, deepseq
, ppad-bolt1
benchmark bolt1-weigh
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: bench
main-is: Weight.hs
other-modules: Fixtures
ghc-options:
-rtsopts -O2 -Wall -fno-warn-orphans
build-depends:
base
, bytestring
, deepseq
, ppad-bolt1
, weigh