-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbitcoin-compact-filters.cabal
68 lines (54 loc) · 1.39 KB
/
bitcoin-compact-filters.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
cabal-version: 2.2
name: bitcoin-compact-filters
version: 0.1.1
synopsis: BIP 158 compact block filters
copyright: 2020 Bitnomial, Inc.
license: BSD-3-Clause
license-file: LICENSE
author: Ian Shipman
maintainer: [email protected]
build-type: Simple
extra-source-files: CHANGELOG.md
data-files:
examples/*.json
tested-with:
GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.7
, GHC == 9.4.4
common core
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.12 && <4.20
, bytestring >=0.10 && <0.13
, cereal ^>=0.5
, haskoin-core >=1.0.1 && <1.2
, text >=1.2 && <2.2
library
import: core
hs-source-dirs: src
exposed-modules:
Bitcoin.CompactFilter
build-depends:
transformers >=0.5 && <0.7
, memory >=0.15 && <0.19
test-suite bitcoin-cf-tests
import: core
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
Test.CompactFilter
Test.Examples.Bip
Test.Examples.Mainnet
Test.Util
Paths_bitcoin_compact_filters
autogen-modules:
Paths_bitcoin_compact_filters
build-depends:
aeson >=1.0 && <2.3
, bitcoin-compact-filters
, tasty >=1.0 && <1.6
, tasty-hunit >=0.9 && <0.11
, tasty-quickcheck >=0.8.1 && <0.12