ppad-bolt5-0.0.1: ppad-bolt5.cabal
cabal-version: 3.0
name: ppad-bolt5
version: 0.0.1
synopsis: On-chain transaction handling per BOLT #5
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:
On-chain transaction handling, per
[BOLT #5](https://github.com/lightning/bolts/blob/master/05-onchain.md).
source-repository head
type: git
location: git.ppad.tech/bolt5.git
library
default-language: Haskell2010
hs-source-dirs: lib
ghc-options:
-Wall
exposed-modules:
Lightning.Protocol.BOLT5
Lightning.Protocol.BOLT5.Detect
Lightning.Protocol.BOLT5.Spend
Lightning.Protocol.BOLT5.Types
build-depends:
base >= 4.9 && < 5
, bytestring >= 0.9 && < 0.13
, ppad-bolt3 >= 0.0.1 && < 0.1
, ppad-sha256 >= 0.3.2 && < 0.4
, ppad-tx >= 0.1 && < 0.2
test-suite bolt5-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-bolt3
, ppad-bolt5
, ppad-tx
, tasty
, tasty-hunit
, tasty-quickcheck
, QuickCheck
benchmark bolt5-bench
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: bench
main-is: Main.hs
ghc-options:
-rtsopts -O2 -Wall -fno-warn-orphans
build-depends:
base
, bytestring
, criterion
, deepseq
, ppad-bolt3
, ppad-bolt5
, ppad-tx
benchmark bolt5-weigh
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: bench
main-is: Weight.hs
ghc-options:
-rtsopts -O2 -Wall -fno-warn-orphans
build-depends:
base
, bytestring
, deepseq
, ppad-bolt3
, ppad-bolt5
, ppad-tx
, weigh